--- np2/i286a/i286a.c 2003/12/22 10:24:50 1.3 +++ np2/i286a/i286a.c 2004/01/05 15:47:18 1.7 @@ -73,14 +73,26 @@ const UINT8 iflags[512] = { // Z_FLA // ---- -void i286a_reset(void) { +static void i286a_initreg(void) { - ZeroMemory(&CPU_STATSAVE, sizeof(CPU_STATSAVE)); - CPU_CS = 0x1fc0; - CS_BASE = 0x1fc00; + CPU_CS = 0xf000; + CS_BASE = 0xf0000; + CPU_IP = 0xfff0; CPU_ADRSMASK = 0xfffff; } +void i286a_reset(void) { + + ZeroMemory(&i286acore.s, sizeof(i286acore.s)); + i286a_initreg(); +} + +void i286a_shut(void) { + + ZeroMemory(&i286acore.s, offsetof(I286STAT, cpu_type)); + i286a_initreg(); +} + #if 0 // ---- test void ea_assert(UINT32 x) {