Diff for /np2/i386c/ia32/cpu_mem.c between versions 1.19 and 1.20

version 1.19, 2005/03/05 16:47:04 version 1.20, 2005/03/09 17:12:34
Line 401  cpu_codefetch_d(UINT32 offset) Line 401  cpu_codefetch_d(UINT32 offset)
 /*  /*
  * additional physical address memory access functions   * additional physical address memory access functions
  */   */
 UINT64  UINT64 MEMCALL
 cpu_memoryread_q(UINT32 address)  cpu_memoryread_q(UINT32 address)
 {  {
         UINT64 value;          UINT64 value;
Line 412  cpu_memoryread_q(UINT32 address) Line 412  cpu_memoryread_q(UINT32 address)
         return value;          return value;
 }  }
   
 REG80  REG80 MEMCALL
 cpu_memoryread_f(UINT32 address)  cpu_memoryread_f(UINT32 address)
 {  {
         REG80 value;          REG80 value;
Line 424  cpu_memoryread_f(UINT32 address) Line 424  cpu_memoryread_f(UINT32 address)
         return value;          return value;
 }  }
   
 void  void MEMCALL
 cpu_memorywrite_q(UINT32 address, UINT64 value)  cpu_memorywrite_q(UINT32 address, UINT64 value)
 {  {
   
Line 432  cpu_memorywrite_q(UINT32 address, UINT64 Line 432  cpu_memorywrite_q(UINT32 address, UINT64
         cpu_memorywrite_d(address + 4, (UINT32)(value >> 32));          cpu_memorywrite_d(address + 4, (UINT32)(value >> 32));
 }  }
   
 void  void MEMCALL
 cpu_memorywrite_f(UINT32 address, const REG80 *value)  cpu_memorywrite_f(UINT32 address, const REG80 *value)
 {  {
         UINT i;          UINT i;

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


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