Diff for /np2/i386c/memory.c between versions 1.34 and 1.40

version 1.34, 2005/03/18 06:49:17 version 1.40, 2012/01/29 14:53:54
Line 173  static const VACCTBL vacctbl[0x10] = { Line 173  static const VACCTBL vacctbl[0x10] = {
                 {memegc_rd8,    memegc_wr8,             memegc_rd16,    memegc_wr16}};                  {memegc_rd8,    memegc_wr8,             memegc_rd16,    memegc_wr16}};
   
   
 void MEMCALL i286_memorymap(UINT type) {  void MEMCALL memm_arch(UINT type) {
   
 const MMAPTBL   *mm;  const MMAPTBL   *mm;
   
Line 194  const MMAPTBL *mm; Line 194  const MMAPTBL *mm;
         memfn0.wr16[0xf8000 >> 15] = mm->bwr16;          memfn0.wr16[0xf8000 >> 15] = mm->bwr16;
 }  }
   
 void MEMCALL i286_vram_dispatch(UINT func) {  void MEMCALL memm_vram(UINT func) {
   
 const VACCTBL   *vacc;  const VACCTBL   *vacc;
   
Line 317  static const MEMFNF memfnf = { Line 317  static const MEMFNF memfnf = {
   
 // ----  // ----
   
 REG8 MEMCALL i286_memoryread(UINT32 address) {  REG8 MEMCALL memp_read8(UINT32 address) {
   
         if (address < I286_MEMREADMAX) {          if (address < I286_MEMREADMAX) {
                 return(mem[address]);                  return(mem[address]);
Line 353  REG8 MEMCALL i286_memoryread(UINT32 addr Line 353  REG8 MEMCALL i286_memoryread(UINT32 addr
         }          }
 }  }
   
 REG16 MEMCALL i286_memoryread_w(UINT32 address) {  REG16 MEMCALL memp_read16(UINT32 address) {
   
         REG16   ret;          REG16   ret;
   
Line 390  REG16 MEMCALL i286_memoryread_w(UINT32 a Line 390  REG16 MEMCALL i286_memoryread_w(UINT32 a
                 }                  }
         }          }
         else {          else {
                 ret = i286_memoryread(address + 0);                  ret = memp_read8(address + 0);
                 ret += (REG16)(i286_memoryread(address + 1) << 8);                  ret += (REG16)(memp_read8(address + 1) << 8);
                 return(ret);                  return(ret);
         }          }
 }  }
   
 UINT32 MEMCALL i286_memoryread_d(UINT32 address) {  UINT32 MEMCALL memp_read32(UINT32 address) {
   
         UINT32  pos;          UINT32  pos;
         UINT32  ret;          UINT32  ret;
Line 411  UINT32 MEMCALL i286_memoryread_d(UINT32  Line 411  UINT32 MEMCALL i286_memoryread_d(UINT32 
                 }                  }
         }          }
         if (!(address & 1)) {          if (!(address & 1)) {
                 ret = i286_memoryread_w(address + 0);                  ret = memp_read16(address + 0);
                 ret += (UINT32)i286_memoryread_w(address + 2) << 16;                  ret += (UINT32)memp_read16(address + 2) << 16;
         }          }
         else {          else {
                 ret = i286_memoryread(address + 0);                  ret = memp_read8(address + 0);
                 ret += (UINT32)i286_memoryread_w(address + 1) << 8;                  ret += (UINT32)memp_read16(address + 1) << 8;
                 ret += (UINT32)i286_memoryread(address + 3) << 24;                  ret += (UINT32)memp_read8(address + 3) << 24;
         }          }
         return(ret);          return(ret);
 }  }
   
 void MEMCALL i286_memorywrite(UINT32 address, REG8 value) {  void MEMCALL memp_write8(UINT32 address, REG8 value) {
   
         if (address < I286_MEMWRITEMAX) {          if (address < I286_MEMWRITEMAX) {
                 mem[address] = (UINT8)value;                  mem[address] = (UINT8)value;
Line 456  void MEMCALL i286_memorywrite(UINT32 add Line 456  void MEMCALL i286_memorywrite(UINT32 add
         }          }
 }  }
   
 void MEMCALL i286_memorywrite_w(UINT32 address, REG16 value) {  void MEMCALL memp_write16(UINT32 address, REG16 value) {
   
         if (address < (I286_MEMWRITEMAX - 1)) {          if (address < (I286_MEMWRITEMAX - 1)) {
                 STOREINTELWORD(mem + address, value);                  STOREINTELWORD(mem + address, value);
Line 489  void MEMCALL i286_memorywrite_w(UINT32 a Line 489  void MEMCALL i286_memorywrite_w(UINT32 a
                 }                  }
         }          }
         else {          else {
                 i286_memorywrite(address + 0, (UINT8)value);                  memp_write8(address + 0, (UINT8)value);
                 i286_memorywrite(address + 1, (UINT8)(value >> 8));                  memp_write8(address + 1, (UINT8)(value >> 8));
         }          }
 }  }
   
 void MEMCALL i286_memorywrite_d(UINT32 address, UINT32 value) {  void MEMCALL memp_write32(UINT32 address, UINT32 value) {
   
         UINT32  pos;          UINT32  pos;
   
Line 510  void MEMCALL i286_memorywrite_d(UINT32 a Line 510  void MEMCALL i286_memorywrite_d(UINT32 a
                 }                  }
         }          }
         if (!(address & 1)) {          if (!(address & 1)) {
                 i286_memorywrite_w(address + 0, (UINT16)value);                  memp_write16(address + 0, (UINT16)value);
                 i286_memorywrite_w(address + 2, (UINT16)(value >> 16));                  memp_write16(address + 2, (UINT16)(value >> 16));
         }          }
         else {          else {
                 i286_memorywrite(address + 0, (UINT8)value);                  memp_write8(address + 0, (UINT8)value);
                 i286_memorywrite_w(address + 1, (UINT16)(value >> 8));                  memp_write16(address + 1, (UINT16)(value >> 8));
                 i286_memorywrite(address + 3, (UINT8)(value >> 24));                  memp_write8(address + 3, (UINT8)(value >> 24));
         }          }
 }  }
   
   
 void MEMCALL memp_read(UINT32 address, void *dat, UINT leng) {  void MEMCALL memp_reads(UINT32 address, void *dat, UINT leng) {
   
         UINT8 *out = (UINT8 *)dat;          UINT8 *out = (UINT8 *)dat;
         UINT diff;          UINT diff;
Line 546  void MEMCALL memp_read(UINT32 address, v Line 546  void MEMCALL memp_read(UINT32 address, v
   
         /* slow memory access */          /* slow memory access */
         while (leng-- > 0) {          while (leng-- > 0) {
                 *out++ = i286_memoryread(address++);                  *out++ = memp_read8(address++);
         }          }
 }  }
   
 void MEMCALL memp_write(UINT32 address, const void *dat, UINT leng) {  void MEMCALL memp_writes(UINT32 address, const void *dat, UINT leng) {
   
         const UINT8 *out = (UINT8 *)dat;          const UINT8 *out = (UINT8 *)dat;
         UINT diff;          UINT diff;
Line 575  void MEMCALL memp_write(UINT32 address,  Line 575  void MEMCALL memp_write(UINT32 address, 
   
         /* slow memory access */          /* slow memory access */
         while (leng-- > 0) {          while (leng-- > 0) {
                 i286_memorywrite(address++, *out++);                  memp_write8(address++, *out++);
         }          }
 }  }
   
   
 // ---- Logical Space (BIOS)  // ---- Logical Space (BIOS)
   
 static UINT32 physicaladdr(UINT32 addr, BOOL wr) {  static UINT32 MEMCALL physicaladdr(UINT32 addr, BOOL wr) {
   
         UINT32  a;          UINT32  a;
         UINT32  pde;          UINT32  pde;
         UINT32  pte;          UINT32  pte;
   
         a = CPU_STAT_PDE_BASE + ((addr >> 20) & 0xffc);          a = CPU_STAT_PDE_BASE + ((addr >> 20) & 0xffc);
         pde = i286_memoryread_d(a);          pde = memp_read32(a);
         if (!(pde & CPU_PDE_PRESENT)) {          if (!(pde & CPU_PDE_PRESENT)) {
                 goto retdummy;                  goto retdummy;
         }          }
         if (!(pde & CPU_PDE_ACCESS)) {          if (!(pde & CPU_PDE_ACCESS)) {
                 i286_memorywrite(a, (UINT8)(pde | CPU_PDE_ACCESS));                  memp_write8(a, (UINT8)(pde | CPU_PDE_ACCESS));
         }          }
         a = (pde & CPU_PDE_BASEADDR_MASK) + ((addr >> 10) & 0xffc);          a = (pde & CPU_PDE_BASEADDR_MASK) + ((addr >> 10) & 0xffc);
         pte = cpu_memoryread_d(a);          pte = cpu_memoryread_d(a);
Line 602  static UINT32 physicaladdr(UINT32 addr,  Line 602  static UINT32 physicaladdr(UINT32 addr, 
                 goto retdummy;                  goto retdummy;
         }          }
         if (!(pte & CPU_PTE_ACCESS)) {          if (!(pte & CPU_PTE_ACCESS)) {
                 i286_memorywrite(a, (UINT8)(pte | CPU_PTE_ACCESS));                  memp_write8(a, (UINT8)(pte | CPU_PTE_ACCESS));
         }          }
         if ((wr) && (!(pte & CPU_PTE_DIRTY))) {          if ((wr) && (!(pte & CPU_PTE_DIRTY))) {
                 i286_memorywrite(a, (UINT8)(pte | CPU_PTE_DIRTY));                  memp_write8(a, (UINT8)(pte | CPU_PTE_DIRTY));
         }          }
         addr = (pte & CPU_PTE_BASEADDR_MASK) + (addr & 0x00000fff);          addr = (pte & CPU_PTE_BASEADDR_MASK) + (addr & 0x00000fff);
         return(addr);          return(addr);
   
 retdummy:   retdummy:
         return(0x01000000);             // てきとーにメモリが存在しない場所          return(0x01000000);     /* XXX */
 }  }
   
   
 REG8 MEMCALL meml_read8(UINT seg, UINT off) {  void MEMCALL meml_reads(UINT32 address, void *dat, UINT leng) {
   
           UINT    size;
   
           if (!CPU_STAT_PAGING) {
                   memp_reads(address, dat, leng);
           }
           else {
                   while(leng) {
                           size = 0x1000 - (address & 0xfff);
                           size = min(size, leng);
                           memp_reads(physicaladdr(address, FALSE), dat, size);
                           address += size;
                           dat = ((UINT8 *)dat) + size;
                           leng -= size;
                   }
           }
   }
   
   void MEMCALL meml_writes(UINT32 address, const void *dat, UINT leng) {
   
           UINT    size;
   
           if (!CPU_STAT_PAGING) {
                   memp_writes(address, dat, leng);
           }
           else {
                   while(leng) {
                           size = 0x1000 - (address & 0xfff);
                           size = min(size, leng);
                           memp_writes(physicaladdr(address, TRUE), dat, size);
                           address += size;
                           dat = ((UINT8 *)dat) + size;
                           leng -= size;
                   }
           }
   }
   
   
   REG8 MEMCALL memr_read8(UINT seg, UINT off) {
   
         UINT32  addr;          UINT32  addr;
   
Line 623  REG8 MEMCALL meml_read8(UINT seg, UINT o Line 662  REG8 MEMCALL meml_read8(UINT seg, UINT o
         if (CPU_STAT_PAGING) {          if (CPU_STAT_PAGING) {
                 addr = physicaladdr(addr, FALSE);                  addr = physicaladdr(addr, FALSE);
         }          }
         return(i286_memoryread(addr));          return(memp_read8(addr));
 }  }
   
 REG16 MEMCALL meml_read16(UINT seg, UINT off) {  REG16 MEMCALL memr_read16(UINT seg, UINT off) {
   
         UINT32  addr;          UINT32  addr;
   
         addr = (seg << 4) + LOW16(off);          addr = (seg << 4) + LOW16(off);
         if (!CPU_STAT_PAGING) {          if (!CPU_STAT_PAGING) {
                 return(i286_memoryread_w(addr));                  return(memp_read16(addr));
         }          }
         else if ((addr + 1) & 0xfff) {          else if ((addr + 1) & 0xfff) {
                 return(i286_memoryread_w(physicaladdr(addr, FALSE)));                  return(memp_read16(physicaladdr(addr, FALSE)));
         }          }
         return(meml_read8(seg, off) + (meml_read8(seg, off + 1) << 8));          return(memr_read8(seg, off) + (memr_read8(seg, off + 1) << 8));
 }  }
   
 void MEMCALL meml_write8(UINT seg, UINT off, REG8 dat) {  void MEMCALL memr_write8(UINT seg, UINT off, REG8 dat) {
   
         UINT32  addr;          UINT32  addr;
   
Line 648  void MEMCALL meml_write8(UINT seg, UINT  Line 687  void MEMCALL meml_write8(UINT seg, UINT 
         if (CPU_STAT_PAGING) {          if (CPU_STAT_PAGING) {
                 addr = physicaladdr(addr, TRUE);                  addr = physicaladdr(addr, TRUE);
         }          }
         i286_memorywrite(addr, dat);          memp_write8(addr, dat);
 }  }
   
 void MEMCALL meml_write16(UINT seg, UINT off, REG16 dat) {  void MEMCALL memr_write16(UINT seg, UINT off, REG16 dat) {
   
         UINT32  addr;          UINT32  addr;
   
         addr = (seg << 4) + LOW16(off);          addr = (seg << 4) + LOW16(off);
         if (!CPU_STAT_PAGING) {          if (!CPU_STAT_PAGING) {
                 i286_memorywrite_w(addr, dat);                  memp_write16(addr, dat);
         }          }
         else if ((addr + 1) & 0xfff) {          else if ((addr + 1) & 0xfff) {
                 i286_memorywrite_w(physicaladdr(addr, TRUE), dat);                  memp_write16(physicaladdr(addr, TRUE), dat);
         }          }
         else {          else {
                 meml_write8(seg, off, (REG8)dat);                  memr_write8(seg, off, (REG8)dat);
                 meml_write8(seg, off + 1, (REG8)(dat >> 8));                  memr_write8(seg, off + 1, (REG8)(dat >> 8));
         }          }
 }  }
   
 void MEMCALL meml_readstr(UINT seg, UINT off, void *dat, UINT leng) {  void MEMCALL memr_reads(UINT seg, UINT off, void *dat, UINT leng) {
   
         UINT32  addr;          UINT32  addr;
         UINT    rem;          UINT    rem;
Line 684  void MEMCALL meml_readstr(UINT seg, UINT Line 723  void MEMCALL meml_readstr(UINT seg, UINT
                         size = min(size, rem);                          size = min(size, rem);
                         addr = physicaladdr(addr, FALSE);                          addr = physicaladdr(addr, FALSE);
                 }                  }
                 memp_read(addr, dat, size);                  memp_reads(addr, dat, size);
                 off += size;                  off += size;
                 dat = ((UINT8 *)dat) + size;                  dat = ((UINT8 *)dat) + size;
                 leng -= size;                  leng -= size;
         }          }
 }  }
   
 void MEMCALL meml_writestr(UINT seg, UINT off, const void *dat, UINT leng) {  void MEMCALL memr_writes(UINT seg, UINT off, const void *dat, UINT leng) {
   
         UINT32  addr;          UINT32  addr;
         UINT    rem;          UINT    rem;
Line 707  void MEMCALL meml_writestr(UINT seg, UIN Line 746  void MEMCALL meml_writestr(UINT seg, UIN
                         size = min(size, rem);                          size = min(size, rem);
                         addr = physicaladdr(addr, TRUE);                          addr = physicaladdr(addr, TRUE);
                 }                  }
                 memp_write(addr, dat, size);                  memp_writes(addr, dat, size);
                 off += size;                  off += size;
                 dat = ((UINT8 *)dat) + size;                  dat = ((UINT8 *)dat) + size;
                 leng -= size;                  leng -= size;
         }          }
 }  }
   
 void MEMCALL meml_read(UINT32 address, void *dat, UINT leng) {  
   
         UINT    size;  
   
         if (!CPU_STAT_PAGING) {  
                 memp_read(address, dat, leng);  
         }  
         else {  
                 while(leng) {  
                         size = 0x1000 - (address & 0xfff);  
                         size = min(size, leng);  
                         memp_read(physicaladdr(address, FALSE), dat, size);  
                         address += size;  
                         dat = ((UINT8 *)dat) + size;  
                         leng -= size;  
                 }  
         }  
 }  
   
 void MEMCALL meml_write(UINT32 address, const void *dat, UINT leng) {  
   
         UINT    size;  
   
         if (!CPU_STAT_PAGING) {  
                 memp_write(address, dat, leng);  
         }  
         else {  
                 while(leng) {  
                         size = 0x1000 - (address & 0xfff);  
                         size = min(size, leng);  
                         memp_write(physicaladdr(address, TRUE), dat, size);  
                         address += size;  
                         dat = ((UINT8 *)dat) + size;  
                         leng -= size;  
                 }  
         }  
 }  
   
 #endif  #endif
   

Removed from v.1.34  
changed lines
  Added in v.1.40


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