Diff for /np2/i286x/i286x.cpp between versions 1.12 and 1.13

version 1.12, 2003/12/25 19:58:24 version 1.13, 2003/12/25 20:30:22
Line 60  void i286x_initialize(void) { Line 60  void i286x_initialize(void) {
 void i286x_reset(void) {  void i286x_reset(void) {
   
         ZeroMemory(&i286core.s, sizeof(i286core.s));          ZeroMemory(&i286core.s, sizeof(i286core.s));
         I286_CS = 0xffff;          I286_CS = 0xf000;
         CS_BASE = 0xffff0;          CS_BASE = 0xf0000;
           I286_IP = 0xfff0;
         i286core.s.adrsmask = 0xfffff;          i286core.s.adrsmask = 0xfffff;
 }  }
   
 void i286x_shut(void) {  void i286x_shut(void) {
   
         I286_MSW = 0;          I286_MSW = 0;
         I286_CS = 0xffff;  
         CS_BASE = 0xffff0;          I286_ES = 0;
         I286_IP = 0;          I286_CS = 0xf000;
           I286_SS = 0;
           I286_DS = 0;
   
           ES_BASE = 0;
           CS_BASE = 0xf0000;
           SS_BASE = 0;
           DS_BASE = 0;
           SS_FIX = 0;
           DS_FIX = 0;
   
           I286_IP = 0xfff0;
         I286_ADRSMASK = 0xfffff;          I286_ADRSMASK = 0xfffff;
         i286x_resetprefetch();          i286x_resetprefetch();
 }  }

Removed from v.1.12  
changed lines
  Added in v.1.13


RetroPC.NET-CVS <cvs@retropc.net>