| 205 | } |
| 206 | |
| 207 | void newInstructionWithRM(int instruction, int rm, int flags, U8 prefix = 0, U8 prefix2 = 0) { |
| 208 | newInstruction(instruction, flags, prefix, prefix2); |
| 209 | pushCode8(rm); |
| 210 | } |
| 211 | |
| 212 | void useFlags() { |
| 213 | pushCode8(0x83); // add eax, 2 |