| 2170 | } |
| 2171 | |
| 2172 | void gen2a3(struct GenData* data, struct Op* op) { |
| 2173 | char tmp[16]; |
| 2174 | |
| 2175 | out(data, "writed(cpu->thread, cpu->segAddress["); |
| 2176 | out(data, getBase(op->base)); |
| 2177 | out(data, "] + 0x"); |
| 2178 | itoa(op->data1, tmp, 16); |
| 2179 | out(data, tmp); |
| 2180 | out(data, ", EAX); CYCLES(1);"); |
| 2181 | } |
| 2182 | |
| 2183 | void OPCALL movsb16_r_op(struct CPU* cpu, struct Op* op); |
| 2184 | void OPCALL movsb16_op(struct CPU* cpu, struct Op* op); |