Diff for /np2/i286c/memory.c between versions 1.16 and 1.20

version 1.16, 2003/12/27 11:55:23 version 1.20, 2004/03/29 05:50:29
Line 10 Line 10
         BYTE    mem[0x200000];          BYTE    mem[0x200000];
   
   
 #define USE_HIMEM               0x10fff0  
   
 #if defined(TRACE)  #if defined(TRACE)
 #define MEMORY_DEBUG  #define MEMORY_DEBUG
 #endif  #endif
Line 185  static void MEMCALL egc_wt(UINT32 addres Line 183  static void MEMCALL egc_wt(UINT32 addres
   
 static void MEMCALL emmc_wt(UINT32 address, REG8 value) {  static void MEMCALL emmc_wt(UINT32 address, REG8 value) {
   
         extmem.pageptr[(address >> 14) & 3][LOW14(address)] = (BYTE)value;          i286core.e.ems[(address >> 14) & 3][LOW14(address)] = (BYTE)value;
 }  }
   
 static void MEMCALL i286_wb(UINT32 address, REG8 value) {  static void MEMCALL i286_wb(UINT32 address, REG8 value) {
Line 290  static REG8 MEMCALL egc_rd(UINT32 addres Line 288  static REG8 MEMCALL egc_rd(UINT32 addres
   
 static REG8 MEMCALL emmc_rd(UINT32 address) {  static REG8 MEMCALL emmc_rd(UINT32 address) {
   
         return(extmem.pageptr[(address >> 14) & 3][LOW14(address)]);          return(i286core.e.ems[(address >> 14) & 3][LOW14(address)]);
 }  }
   
 static REG8 MEMCALL i286_rb(UINT32 address) {  static REG8 MEMCALL i286_rb(UINT32 address) {
Line 450  static void MEMCALL grcgw_tdw1(UINT32 ad Line 448  static void MEMCALL grcgw_tdw1(UINT32 ad
 static void MEMCALL egcw_wt(UINT32 address, REG16 value) {  static void MEMCALL egcw_wt(UINT32 address, REG16 value) {
   
         CPU_REMCLOCK -= MEMWAIT_GRCG;          CPU_REMCLOCK -= MEMWAIT_GRCG;
         if (!(address & 1)) {          egc_write_w(address, value);
                 egc_write_w(address, value);  
         }  
         else {  
                 if (!(egc.sft & 0x1000)) {  
                         egc_write(address, (REG8)value);  
                         egc_write(address + 1, (REG8)(value >> 8));  
                 }  
                 else {  
                         egc_write(address + 1, (REG8)(value >> 8));  
                         egc_write(address, (REG8)value);  
                 }  
         }  
 }  }
   
 static void MEMCALL emmcw_wt(UINT32 address, REG16 value) {  static void MEMCALL emmcw_wt(UINT32 address, REG16 value) {
Line 470  static void MEMCALL emmcw_wt(UINT32 addr Line 456  static void MEMCALL emmcw_wt(UINT32 addr
         BYTE    *ptr;          BYTE    *ptr;
   
         if ((address & 0x3fff) != 0x3fff) {          if ((address & 0x3fff) != 0x3fff) {
                 ptr = extmem.pageptr[(address >> 14) & 3] + LOW14(address);                  ptr = i286core.e.ems[(address >> 14) & 3] + LOW14(address);
                 STOREINTELWORD(ptr, value);                  STOREINTELWORD(ptr, value);
         }          }
         else {          else {
                 extmem.pageptr[(address >> 14) & 3][0x3fff] = (BYTE)value;                  i286core.e.ems[(address >> 14) & 3][0x3fff] = (BYTE)value;
                 extmem.pageptr[((address + 1) >> 14) & 3][0] = (BYTE)(value >> 8);                  i286core.e.ems[((address + 1) >> 14) & 3][0] = (BYTE)(value >> 8);
         }          }
 }  }
   
Line 591  static REG16 MEMCALL grcgw_tcr1(UINT32 a Line 577  static REG16 MEMCALL grcgw_tcr1(UINT32 a
   
 static REG16 MEMCALL egcw_rd(UINT32 address) {  static REG16 MEMCALL egcw_rd(UINT32 address) {
   
         REG16   ret;  
   
         CPU_REMCLOCK -= MEMWAIT_GRCG;          CPU_REMCLOCK -= MEMWAIT_GRCG;
         if (!(address & 1)) {          return(egc_read_w(address));
                 return(egc_read_w(address));  
         }  
         else {  
                 if (!(egc.sft & 0x1000)) {  
                         ret = egc_read(address);  
                         ret += egc_read(address + 1) << 8;  
                         return(ret);  
                 }  
                 else {  
                         ret = egc_read(address + 1) << 8;  
                         ret += egc_read(address);  
                         return(ret);  
                 }  
         }  
 }  }
   
 static REG16 MEMCALL emmcw_rd(UINT32 address) {  static REG16 MEMCALL emmcw_rd(UINT32 address) {
Line 617  const BYTE *ptr; Line 587  const BYTE *ptr;
         REG16   ret;          REG16   ret;
   
         if ((address & 0x3fff) != 0x3fff) {          if ((address & 0x3fff) != 0x3fff) {
                 ptr = extmem.pageptr[(address >> 14) & 3] + LOW14(address);                  ptr = i286core.e.ems[(address >> 14) & 3] + LOW14(address);
                 return(LOADINTELWORD(ptr));                  return(LOADINTELWORD(ptr));
         }          }
         else {          else {
                 ret = extmem.pageptr[(address >> 14) & 3][0x3fff];                  ret = i286core.e.ems[(address >> 14) & 3][0x3fff];
                 ret += extmem.pageptr[((address + 1) >> 14) & 3][0] << 8;                  ret += i286core.e.ems[((address + 1) >> 14) & 3][0] << 8;
                 return(ret);                  return(ret);
         }          }
 }  }
Line 676  static MEMFN memfn = { Line 646  static MEMFN memfn = {
                         i286_rd,        i286_rd,        i286_rd,        i286_rd,                // 80                          i286_rd,        i286_rd,        i286_rd,        i286_rd,                // 80
                         tram_rd,        vram_r0,        vram_r0,        vram_r0,                // a0                          tram_rd,        vram_r0,        vram_r0,        vram_r0,                // a0
                         emmc_rd,        emmc_rd,        i286_rd,        i286_rd,                // c0                          emmc_rd,        emmc_rd,        i286_rd,        i286_rd,                // c0
                         vram_r0,        i286_rd,        i286_rd,        i286_rb},               // f0                          vram_r0,        i286_rd,        i286_rd,        i286_rb},               // e0
   
                    {i286_wt,    i286_wt,        i286_wt,        i286_wt,                // 00                     {i286_wt,    i286_wt,        i286_wt,        i286_wt,                // 00
                         i286_wt,        i286_wt,        i286_wt,        i286_wt,                // 20                          i286_wt,        i286_wt,        i286_wt,        i286_wt,                // 20
Line 998  void MEMCALL i286_memorywrite_w(UINT32 a Line 968  void MEMCALL i286_memorywrite_w(UINT32 a
         }          }
 }  }
   
 REG8 MEMCALL i286_membyte_read(UINT seg, UINT off) {  REG8 MEMCALL meml_read8(UINT seg, UINT off) {
   
         UINT32  address;          UINT32  address;
   
Line 1011  REG8 MEMCALL i286_membyte_read(UINT seg, Line 981  REG8 MEMCALL i286_membyte_read(UINT seg,
         }          }
 }  }
   
 REG16 MEMCALL i286_memword_read(UINT seg, UINT off) {  REG16 MEMCALL meml_read16(UINT seg, UINT off) {
   
         UINT32  address;          UINT32  address;
   
Line 1024  REG16 MEMCALL i286_memword_read(UINT seg Line 994  REG16 MEMCALL i286_memword_read(UINT seg
         }          }
 }  }
   
 void MEMCALL i286_membyte_write(UINT seg, UINT off, REG8 value) {  void MEMCALL meml_write8(UINT seg, UINT off, REG8 value) {
   
         UINT32  address;          UINT32  address;
   
Line 1037  void MEMCALL i286_membyte_write(UINT seg Line 1007  void MEMCALL i286_membyte_write(UINT seg
         }          }
 }  }
   
 void MEMCALL i286_memword_write(UINT seg, UINT off, REG16 value) {  void MEMCALL meml_write16(UINT seg, UINT off, REG16 value) {
   
         UINT32  address;          UINT32  address;
   
Line 1050  void MEMCALL i286_memword_write(UINT seg Line 1020  void MEMCALL i286_memword_write(UINT seg
         }          }
 }  }
   
 void MEMCALL i286_memstr_read(UINT seg, UINT off, void *dat, UINT leng) {  void MEMCALL meml_readstr(UINT seg, UINT off, void *dat, UINT leng) {
   
         BYTE    *out;          BYTE    *out;
         UINT32  adrs;          UINT32  adrs;
Line 1088  void MEMCALL i286_memstr_read(UINT seg,  Line 1058  void MEMCALL i286_memstr_read(UINT seg, 
         }          }
 }  }
   
 void MEMCALL i286_memstr_write(UINT seg, UINT off,  void MEMCALL meml_writestr(UINT seg, UINT off, const void *dat, UINT leng) {
                                                                                                 const void *dat, UINT leng) {  
   
         BYTE    *out;          BYTE    *out;
         UINT32  adrs;          UINT32  adrs;
Line 1127  void MEMCALL i286_memstr_write(UINT seg, Line 1096  void MEMCALL i286_memstr_write(UINT seg,
         }          }
 }  }
   
 void MEMCALL i286_memx_read(UINT32 address, void *dat, UINT leng) {  void MEMCALL meml_read(UINT32 address, void *dat, UINT leng) {
   
         if ((address + leng) < I286_MEMREADMAX) {          if ((address + leng) < I286_MEMREADMAX) {
                 CopyMemory(dat, mem + address, leng);                  CopyMemory(dat, mem + address, leng);
Line 1146  void MEMCALL i286_memx_read(UINT32 addre Line 1115  void MEMCALL i286_memx_read(UINT32 addre
         }          }
 }  }
   
 void MEMCALL i286_memx_write(UINT32 address, const void *dat, UINT leng) {  void MEMCALL meml_write(UINT32 address, const void *dat, UINT leng) {
   
 const BYTE      *out;  const BYTE      *out;
   

Removed from v.1.16  
changed lines
  Added in v.1.20


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