| 189 | } |
| 190 | |
| 191 | void EmitWord( word s, uint8_t** outBuff ) |
| 192 | { |
| 193 | **outBuff = ( s >> 0 ) & 255; |
| 194 | *( *outBuff + 1 ) = ( s >> 8 ) & 255; |
| 195 | *outBuff += 2; |
| 196 | } |
| 197 | |
| 198 | void EmitDoubleWord( dword i, uint8_t** outBuff ) |
| 199 | { |
no outgoing calls
no test coverage detected