--- np2/i286c/i286c.c 2003/10/17 07:17:20 1.2 +++ np2/i286c/i286c.c 2003/10/17 12:49:52 1.4 @@ -47,17 +47,20 @@ const BYTE iflags[256] = { // Z_FLAG // ---- - DWORD EA_FIX; + UINT32 EA_FIX; BYTE *reg8_b53[256]; BYTE *reg8_b20[256]; UINT16 *reg16_b53[256]; UINT16 *reg16_b20[256]; BYTE szpcflag[0x200]; - BYTE szpflag_w[0x10000]; CALCEA c_calc_ea_dst[256]; CALCLEA c_calc_lea[192]; GETLEA c_get_ea[192]; +#if !defined(CPUW2TEST) + BYTE szpflag_w[0x10000]; +#endif + static UINT32 ea_nop(void) { @@ -116,6 +119,8 @@ void i286_initialize(void) { for (; i<0x100; i++) { c_calc_ea_dst[i] = ea_nop; } + +#if !defined(CPUW2TEST) for (i=0; i<0x10000; i++) { f = P_FLAG; for (bit=0x80; bit; bit>>=1) { @@ -131,6 +136,7 @@ void i286_initialize(void) { } szpflag_w[i] = f; } +#endif } void i286_reset(void) { @@ -144,7 +150,7 @@ void i286_reset(void) { void i286_resetprefetch(void) { } -void CPUCALL i286_intnum(DWORD vect, WORD IP) { +void CPUCALL i286_intnum(UINT vect, UINT16 IP) { const BYTE *ptr; @@ -164,7 +170,7 @@ const BYTE *ptr; void CPUCALL i286_interrupt(BYTE vect) { - BYTE op; + UINT op; const BYTE *ptr; op = i286_memoryread(I286_IP + CS_BASE); @@ -181,7 +187,7 @@ const BYTE *ptr; ptr = I286_MEM + (vect * 4); I286_IP = LOADINTELWORD(ptr+0); // real mode! I286_CS = LOADINTELWORD(ptr+2); // real mode! - CS_BASE = (UINT32)I286_CS << 4; + CS_BASE = I286_CS << 4; I286_CLOCK(20) }