Diff for /np2/i286a/i286a.c between versions 1.5 and 1.7

version 1.5, 2003/12/25 19:58:24 version 1.7, 2004/01/05 15:47:18
Line 73  const UINT8 iflags[512] = {     // Z_FLA Line 73  const UINT8 iflags[512] = {     // Z_FLA
   
 // ----  // ----
   
 void i286a_reset(void) {  static void i286a_initreg(void) {
   
         ZeroMemory(&CPU_STATSAVE, sizeof(CPU_STATSAVE));          CPU_CS = 0xf000;
         CPU_CS = 0xffff;          CS_BASE = 0xf0000;
         CS_BASE = 0xffff0;          CPU_IP = 0xfff0;
         CPU_ADRSMASK = 0xfffff;          CPU_ADRSMASK = 0xfffff;
 }  }
   
   void i286a_reset(void) {
   
           ZeroMemory(&i286acore.s, sizeof(i286acore.s));
           i286a_initreg();
   }
   
 void i286a_shut(void) {  void i286a_shut(void) {
   
         CPU_MSW = 0;          ZeroMemory(&i286acore.s, offsetof(I286STAT, cpu_type));
         CPU_CS = 0xffff;          i286a_initreg();
         CS_BASE = 0xffff0;  
         CPU_IP = 0;  
         CPU_ADRSMASK = 0xfffff;  
 }  }
   
   

Removed from v.1.5  
changed lines
  Added in v.1.7


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