/
| 34 | } |
| 35 | /************************************************************************/ |
| 36 | void OutputOpcode(FILE *outfile, opcode_type opcode) |
| 37 | { |
| 38 | BYTE datum; |
| 39 | |
| 40 | /* Write out a 1 byte opcode--need to memcpy since opcode is bitfield structure */ |
| 41 | memcpy(&datum, &opcode, 1); |
| 42 | fwrite(&datum, 1, 1, outfile); |
| 43 | } |
| 44 | /************************************************************************/ |
| 45 | void OutputByte(FILE *outfile, BYTE datum) |
| 46 | { |
no outgoing calls
no test coverage detected