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

version 1.19, 2005/03/05 16:47:04 version 1.21, 2005/03/12 12:32:54
Line 12 Line 12
  * 2. Redistributions in binary form must reproduce the above copyright   * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the   *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.   *    documentation and/or other materials provided with the distribution.
  * 3. The name of the author may not be used to endorse or promote products  
  *    derived from this software without specific prior written permission.  
  *   *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR   * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES   * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Line 401  cpu_codefetch_d(UINT32 offset) Line 399  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 410  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 422  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 430  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.21


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