Diff for /np2/bios/bios.c between versions 1.25 and 1.26

version 1.25, 2004/01/13 05:30:58 version 1.26, 2004/01/15 07:23:35
Line 37  static void bios_reinitbyswitch(void) { Line 37  static void bios_reinitbyswitch(void) {
         BYTE    biosflag;          BYTE    biosflag;
         BYTE    ext_mem;          BYTE    ext_mem;
   
   
   #if defined(CPUCORE_IA32)
           UINT16  org_cs;
           UINT16  org_ip;
   
           org_cs = CPU_CS;
           org_ip = CPU_IP;
           CPU_SHUT();
           CPU_CS = org_cs;
           CPU_IP = org_ip;
           SETBIOSMEM16(0x00486, CPU_DX);
   #endif
   
         CPU_TYPE = 0;          CPU_TYPE = 0;
         prxcrt = 0xc8;          prxcrt = 0xc8;
         if (gdc.display & 2) {          if (gdc.display & 2) {

Removed from v.1.25  
changed lines
  Added in v.1.26


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