| 773 | } |
| 774 | |
| 775 | void EbRegIb(int instruction, U8* e, int rm, struct Data* data) { |
| 776 | while (data->valid) { |
| 777 | newInstruction(instruction, 0); |
| 778 | pushCode8(data->var2); |
| 779 | cpu->reg[E8(rm)].u32 = DEFAULT; |
| 780 | *e = data->var1; |
| 781 | runTestCPU(); |
| 782 | assertResult(data, cpu, instruction, *e, 0, E8(rm), -1, 0, 8); |
| 783 | data++; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | void EbGb(int instruction, struct Data* data, bool includeLock = false) { |
| 788 | while (data->valid) { |
no test coverage detected