Diff for /np2/pccore.c between versions 1.101 and 1.103

version 1.101, 2005/03/05 11:58:02 version 1.103, 2005/03/23 08:07:47
Line 146  static void pccore_set(void) { Line 146  static void pccore_set(void) {
         // 拡張メモリ          // 拡張メモリ
         extsize = 0;          extsize = 0;
         if (!(np2cfg.dipsw[2] & 0x80)) {          if (!(np2cfg.dipsw[2] & 0x80)) {
                 extsize = min(np2cfg.EXTMEM, 13);                  extsize = np2cfg.EXTMEM;
   #if defined(CPUCORE_IA32)
                   extsize = min(extsize, 63);
   #else
                   extsize = min(extsize, 13);
   #endif
         }          }
         pccore.extmem = extsize;          pccore.extmem = extsize;
         CopyMemory(pccore.dipsw, np2cfg.dipsw, 3);          CopyMemory(pccore.dipsw, np2cfg.dipsw, 3);
Line 325  void pccore_reset(void) { Line 330  void pccore_reset(void) {
         }          }
   
         // HDDセット          // HDDセット
         sxsihdd_allbind();          diskdrv_hddbind();
         // SASI/IDEどっち?          // SASI/IDEどっち?
 #if defined(SUPPORT_SASI)  #if defined(SUPPORT_SASI)
         if (sxsi_issasi()) {          if (sxsi_issasi()) {

Removed from v.1.101  
changed lines
  Added in v.1.103


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