Diff for /np2/bios/bios.c between versions 1.39 and 1.47

version 1.39, 2004/02/18 02:03:36 version 1.47, 2004/02/26 09:08:29
Line 83  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 122  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 162  static const UINT16 biosoffset[0x20] = { Line 162  static const UINT16 biosoffset[0x20] = {
                         BIOSOFST_1c,    BIOSOFST_IRET,  BIOSOFST_1e,    BIOSOFST_1f};                          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 198  void bios_init(void) { Line 198  void bios_init(void) {
         }          }
         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_initialize();
         }          }
   
         SETBIOSMEM16(0xfd800, 0xcb90);          SETBIOSMEM16(0xfd800, 0xcb90);
Line 228  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 282  static void bios_boot(void) { Line 282  static void bios_boot(void) {
         }          }
 }  }
   
   // テスト(こんなんじゃだめぽ
   static void bios0x1f(void) {
   
           BYTE    work[256];
           UINT32  src;
           UINT32  dst;
           UINT    leng;
           UINT    l;
   
           if (CPU_AH == 0x90) {
                   i286_memstr_read(CPU_ES, CPU_BX + 0x10, work, 0x10);
                   src = work[2] + (work[3] << 8) + (work[4] << 16) + CPU_SI;
                   dst = work[10] + (work[11] << 8) + (work[12] << 16) + CPU_DI;
                   leng = LOW16(CPU_CX - 1) + 1;
                   TRACEOUT(("protect bios: memmove"));
                   TRACEOUT(("%.2x %.2x %.2x %.2x %.2x %.2x %.2x %.2x",
                                   work[0], work[1], work[2], work[3],
                                   work[4], work[5], work[6], work[7]));
                   TRACEOUT(("%.2x %.2x %.2x %.2x %.2x %.2x %.2x %.2x",
                                   work[8], work[9], work[10], work[11],
                                   work[12], work[13], work[14], work[15]));
                   TRACEOUT(("SI=%.4x DI=%.4x CX=%.4x", CPU_SI, CPU_DI, CPU_CX));
                   TRACEOUT(("src:%08x dst:%08x leng:%08x", src, dst, leng));
                   do {
                           l = min(leng, 256);
                           i286_memx_read(src, work, l);
                           i286_memx_write(dst, work, l);
                           src += l;
                           dst += l;
                           leng -= l;
                   } while(leng);
           }
           else {
                   TRACEOUT(("unsupport protect bios AH=%.2x", CPU_AH));
           }
   }
   
 UINT MEMCALL biosfunc(UINT32 adrs) {  UINT MEMCALL biosfunc(UINT32 adrs) {
   
         UINT16  bootseg;          UINT16  bootseg;
   
         if ((CPU_ITFBANK) && (adrs >= 0xf8000) && (adrs < 0x100000)) {          if ((CPU_ITFBANK) && (adrs >= 0xf8000) && (adrs < 0x100000)) {
 #if 1                                   // for epson ITF                  // for epson ITF
                 return(0);                  return(0);
 #else  
                 CPU_IP--;  
                 CPU_REMCLOCK = -1;  
                 return(1);  
 #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 399  UINT MEMCALL biosfunc(UINT32 adrs) {
   
                 case BIOS_BASE + BIOSOFST_1f:                  case BIOS_BASE + BIOSOFST_1f:
                         CPU_REMCLOCK -= 200;                          CPU_REMCLOCK -= 200;
                           bios0x1f();
                         return(1);                          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;
                         }                          }
Line 441  UINT MEMCALL biosfunc(UINT32 adrs) { Line 473  UINT MEMCALL biosfunc(UINT32 adrs) {
                         return(0);                          return(0);
         }          }
   
         if ((adrs >= 0xf9a00) && (adrs < 0x0f9a24)) {          if ((adrs >= 0xf9a00) && (adrs < 0x0f9a44)) {
                 if (!(adrs & 1)) {                  if (!(adrs & 3)) {
                         bios_lio((BYTE)((adrs - 0xf9a00) >> 1));                          CPU_REMCLOCK -= 500;
                           bios_lio((REG8)((adrs - 0xf9a00) >> 2));
                   }
                   else {
                           if (nevent_iswork(NEVENT_GDCSLAVE)) {
                                   CPU_IP--;
                                   CPU_REMCLOCK = -1;
                                   return(1);
                           }
                 }                  }
                 return(0);                  return(0);
         }          }

Removed from v.1.39  
changed lines
  Added in v.1.47


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