Diff for /np2/bios/bios.c between versions 1.36 and 1.42

version 1.36, 2004/02/09 20:39:39 version 1.42, 2004/02/19 11:32:11
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
   #include        "strres.h"
 #include        "dosio.h"  #include        "dosio.h"
 #include        "cpucore.h"  #include        "cpucore.h"
 #include        "pccore.h"  #include        "pccore.h"
Line 20 Line 21
   
         BOOL    biosrom = FALSE;          BOOL    biosrom = FALSE;
   
 static const char file_biosrom[] = "bios.rom";  
   
 static const char neccheck[] = "Copyright (C) 1983 by NEC Corporation";  static const char neccheck[] = "Copyright (C) 1983 by NEC Corporation";
   
                                                 // 00/05/18 MS-DOS6.2 on PC-9801VX calling proc                                                  // 00/05/18 MS-DOS6.2 on PC-9801VX calling proc
Line 84  static void bios_reinitbyswitch(void) { Line 83  static void bios_reinitbyswitch(void) {
         mem[MEMB_PRXDUPD] = prxdupd;          mem[MEMB_PRXDUPD] = prxdupd;
   
         biosflag = 0x20;          biosflag = 0x20;
         if (pccore.cpumode & CPUMODE_8MHz) {          if (pccore.cpumode & CPUMODE_8MHZ) {
                 biosflag |= 0x80;                  biosflag |= 0x80;
         }          }
         biosflag |= mem[0xa3fea] & 7;          biosflag |= mem[0xa3fea] & 7;
Line 123  static void bios_reinitbyswitch(void) { Line 122  static void bios_reinitbyswitch(void) {
         }          }
 }  }
   
 static void bios_vectorset(void) {                                                                      // ver0.30  static void bios_vectorset(void) {
   
         UINT    i;          UINT    i;
   
Line 139  static void bios_vectorset(void) {       Line 138  static void bios_vectorset(void) {      
   
 static void bios_screeninit(void) {  static void bios_screeninit(void) {
   
         UINT    ax;          REG8    al;
   
         ax = 0x0a04;          al = 4;
         ax += (np2cfg.dipsw[1] & 0x04) >> 1;          al += (np2cfg.dipsw[1] & 0x04) >> 1;
         ax += (np2cfg.dipsw[1] & 0x08) >> 3;          al += (np2cfg.dipsw[1] & 0x08) >> 3;
         CPU_AX = ax;          bios0x18_0a(al);
         bios0x18();  
 }  }
   
   
Line 161  static const UINT16 biosoffset[0x20] = { Line 159  static const UINT16 biosoffset[0x20] = {
                         BIOSOFST_EOIS,  BIOSOFST_EOIS,  BIOSOFST_EOIS,  BIOSOFST_EOIS,                          BIOSOFST_EOIS,  BIOSOFST_EOIS,  BIOSOFST_EOIS,  BIOSOFST_EOIS,
   
                         BIOSOFST_18,    BIOSOFST_19,    BIOSOFST_1a,    BIOSOFST_1b,                          BIOSOFST_18,    BIOSOFST_19,    BIOSOFST_1a,    BIOSOFST_1b,
                         BIOSOFST_1c,    BIOSOFST_IRET,  BIOSOFST_1e,    BIOSOFST_IRET};                          BIOSOFST_1c,    BIOSOFST_IRET,  BIOSOFST_1e,    BIOSOFST_1f};
   
   
 void bios_init(void) {  void bios_initialize(void) {
   
         char    path[MAX_PATH];          char    path[MAX_PATH];
         FILEH   fh;          FILEH   fh;
Line 175  void bios_init(void) { Line 173  void bios_init(void) {
   
         // まぁDISK BASIC動くようになるからいいんじゃないですか?          // まぁDISK BASIC動くようになるからいいんじゃないですか?
         // BASIC BIOSは 8086コードのように見えるけど…          // BASIC BIOSは 8086コードのように見えるけど…
         getbiospath(path, file_biosrom, sizeof(path));          getbiospath(path, str_biosrom, sizeof(path));
         fh = file_open_rb(path);          fh = file_open_rb(path);
         if (fh != FILEH_INVALID) {          if (fh != FILEH_INVALID) {
                 if (file_read(fh, mem + 0x0e8000, 0x18000) == 0x18000) {                  if (file_read(fh, mem + 0x0e8000, 0x18000) == 0x18000) {
Line 195  void bios_init(void) { Line 193  void bios_init(void) {
         }          }
         SETBIOSMEM16(BIOS_BASE + BIOSOFST_IRET, 0x50cf);          SETBIOSMEM16(BIOS_BASE + BIOSOFST_IRET, 0x50cf);
         SETBIOSMEM16(BIOS_BASE + BIOSOFST_WAIT, 0xcf90);          SETBIOSMEM16(BIOS_BASE + BIOSOFST_WAIT, 0xcf90);
         for (i=(BIOS_BASE+BIOSOFST_EOIM); i<=(BIOS_BASE+BIOSOFST_1c); i+=2) {          for (i=(BIOS_BASE+BIOSOFST_EOIM); i<=(BIOS_BASE+BIOSOFST_1f); i+=2) {
                 SETBIOSMEM16(i, 0xcf90);                  SETBIOSMEM16(i, 0xcf90);
         }          }
         CopyMemory(mem + BIOS_BASE + BIOSOFST_PRT, printmain, sizeof(printmain));          CopyMemory(mem + BIOS_BASE + BIOSOFST_PRT, printmain, sizeof(printmain));
   
         bios_vectorset();                                                                                               // ver0.29          bios_vectorset();
         if (!biosrom) {          if (!biosrom) {
                 lio_init();                  lio_init();
         }          }
Line 230  void bios_init(void) { Line 228  void bios_init(void) {
         bios_reinitbyswitch();          bios_reinitbyswitch();
 //      mem[MEMB_CRT_STS_FLAG] = 0x84;          // -> bios_screeninit()  //      mem[MEMB_CRT_STS_FLAG] = 0x84;          // -> bios_screeninit()
 //      mem[MEMB_BIOS_FLAG0] = 0x03;  //      mem[MEMB_BIOS_FLAG0] = 0x03;
 //      mem[MEMB_F2DD_MODE] = 0xff;                                                                             // ver0.29  //      mem[MEMB_F2DD_MODE] = 0xff;
 //      SETBIOSMEM16(MEMW_DISK_EQUIP, 0x0003);                                                  // ver0.29  //      SETBIOSMEM16(MEMW_DISK_EQUIP, 0x0003);
         mem[0x005ae] |= 0x03;                                                                                   // ver0.31          mem[0x005ae] |= 0x03;                                                                                   // ver0.31
   
         CopyMemory(mem + 0x0fde00, keytable[0], 0x300);          CopyMemory(mem + 0x0fde00, keytable[0], 0x300);
Line 299  UINT MEMCALL biosfunc(UINT32 adrs) { Line 297  UINT MEMCALL biosfunc(UINT32 adrs) {
 #endif  #endif
         }          }
   
         switch(adrs) {                                                                                                  // ver0.30          switch(adrs) {
                 case BIOS_BASE + BIOSOFST_EOIM:                  case BIOS_BASE + BIOSOFST_EOIM:
                         CPU_REMCLOCK -= 300;                          CPU_REMCLOCK -= 300;
                         iocore_out8(0x00, 0x20);                          iocore_out8(0x00, 0x20);
Line 368  UINT MEMCALL biosfunc(UINT32 adrs) { Line 366  UINT MEMCALL biosfunc(UINT32 adrs) {
                         bios0x1c();                          bios0x1c();
                         return(1);                          return(1);
   
                   case BIOS_BASE + BIOSOFST_1f:
                           CPU_REMCLOCK -= 200;
                           return(1);
   
                 case BIOS_BASE + BIOSOFST_WAIT:                  case BIOS_BASE + BIOSOFST_WAIT:
                         CPU_STI;                          CPU_STI;
                         if (fddmtr_biosbusy) {                                          // ver0.26                          if (fddmtr.busy) {
                                 CPU_IP--;                                  CPU_IP--;
                                 CPU_REMCLOCK = -1;                                  CPU_REMCLOCK = -1;
                         }                          }

Removed from v.1.36  
changed lines
  Added in v.1.42


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