Diff for /np2/bios/bios.c between versions 1.74 and 1.75

version 1.74, 2005/03/05 06:02:28 version 1.75, 2005/03/16 06:05:17
Line 85  static void bios_reinitbyswitch(void) { Line 85  static void bios_reinitbyswitch(void) {
         UINT8   prxcrt;          UINT8   prxcrt;
         UINT8   prxdupd;          UINT8   prxdupd;
         UINT8   biosflag;          UINT8   biosflag;
           UINT8   extmem;
         UINT8   boot;          UINT8   boot;
   
         if (!(np2cfg.dipsw[2] & 0x80)) {          if (!(np2cfg.dipsw[2] & 0x80)) {
Line 132  static void bios_reinitbyswitch(void) { Line 133  static void bios_reinitbyswitch(void) {
                 biosflag |= 0x40;                  biosflag |= 0x40;
         }          }
         mem[MEMB_BIOS_FLAG1] = biosflag;          mem[MEMB_BIOS_FLAG1] = biosflag;
         mem[MEMB_EXPMMSZ] = (UINT8)(pccore.extmem << 3);          extmem = pccore.extmem;
           extmem = min(extmem, 14);
           mem[MEMB_EXPMMSZ] = (UINT8)(extmem << 3);
           if (pccore.extmem >= 15) {
                   mem[0x0594] = pccore.extmem - 15;
           }
         mem[MEMB_CRT_RASTER] = 0x0f;          mem[MEMB_CRT_RASTER] = 0x0f;
   
         // FDD initialize          // FDD initialize

Removed from v.1.74  
changed lines
  Added in v.1.75


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