| 2260 | } |
| 2261 | |
| 2262 | void EdRegId(int instruction, Reg* e, int ed, struct Data* data) { |
| 2263 | while (data->valid) { |
| 2264 | newInstruction(instruction, 0); |
| 2265 | pushCode32(data->var2); |
| 2266 | e->u32 = data->var1; |
| 2267 | runTestCPU(); |
| 2268 | assertResult(data, cpu, instruction, e->u32, 0, ed, -1, 0, 32); |
| 2269 | data++; |
| 2270 | } |
| 2271 | } |
| 2272 | |
| 2273 | void EdId(int instruction, int which, struct Data* data, bool includeLock = false) { |
| 2274 | while (data->valid) { |
no test coverage detected