| 81 | static U32 normalOpsInitialized; |
| 82 | |
| 83 | void OPCALL normal_sidt(CPU* cpu, DecodedOp* op) { |
| 84 | START_OP(cpu, op); |
| 85 | U32 eaa = eaa(cpu, op); |
| 86 | cpu->memory->writew(eaa, 1023); // limit |
| 87 | cpu->memory->writed(eaa, 0); // base |
| 88 | #ifdef _DEBUG |
| 89 | klog("sidt not implemented"); |
| 90 | #endif |
| 91 | NEXT(); |
| 92 | } |
| 93 | |
| 94 | void OPCALL onTestEnd(CPU* cpu, DecodedOp* op) { |
| 95 | cpu->nextOp = op; |