|
|
| version 1.25, 2005/02/07 14:46:10 | version 1.26, 2005/02/08 09:57:26 |
|---|---|
| Line 4 | Line 4 |
| #include "v30patch.h" | #include "v30patch.h" |
| #include "pccore.h" | #include "pccore.h" |
| #include "iocore.h" | #include "iocore.h" |
| #include "dmap.h" | #include "dmax86.h" |
| #include "i286c.mcr" | #include "i286c.mcr" |
| Line 268 void i286c(void) { | Line 268 void i286c(void) { |
| if (I286_TRAP) { | if (I286_TRAP) { |
| i286c_interrupt(1); | i286c_interrupt(1); |
| } | } |
| dmap_i286(); | dmax86(); |
| } while(I286_REMCLOCK > 0); | } while(I286_REMCLOCK > 0); |
| } | } |
| else if (dmac.working) { | else if (dmac.working) { |
| do { | do { |
| GET_PCBYTE(opcode); | GET_PCBYTE(opcode); |
| i286op[opcode](); | i286op[opcode](); |
| dmap_i286(); | dmax86(); |
| } while(I286_REMCLOCK > 0); | } while(I286_REMCLOCK > 0); |
| } | } |
| else { | else { |
| Line 300 void i286c_step(void) { | Line 300 void i286c_step(void) { |
| if (I286_OV) { | if (I286_OV) { |
| I286_FLAG |= (O_FLAG); | I286_FLAG |= (O_FLAG); |
| } | } |
| dmap_i286(); | dmax86(); |
| } | } |