Diff for /np2/i286x/i286x.cpp between versions 1.10 and 1.11

version 1.10, 2003/12/24 14:01:41 version 1.11, 2003/12/25 19:26:55
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 = 0x1fc0;          I286_CS = 0xffff;
         CS_BASE = 0x1fc00;          CS_BASE = 0xffff0;
         i286core.s.adrsmask = 0xfffff;          i286core.s.adrsmask = 0xfffff;
 }  }
   
   void i286x_shut(void) {
   
           CPU_CS = 0xffff;
           CS_BASE = 0xffff0;
           CPU_IP = 0;
           CPU_ADRSMASK = 0xfffff;
           i286x_resetprefetch();
   }
   
   
 LABEL void i286x_resetprefetch(void) {  LABEL void i286x_resetprefetch(void) {
   

Removed from v.1.10  
changed lines
  Added in v.1.11


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