Diff for /np2/i386c/memory.c between versions 1.9 and 1.10

version 1.9, 2004/02/05 16:41:32 version 1.10, 2004/02/20 16:09:04
Line 913  void MEMCALL i286_memorywrite_d(UINT32 p Line 913  void MEMCALL i286_memorywrite_d(UINT32 p
         i286_memorywrite_w(address + 2, (WORD)(value >> 16));          i286_memorywrite_w(address + 2, (WORD)(value >> 16));
 }  }
   
 #if 0  #ifdef NP2_MEMORY_ASM
 REG8 MEMCALL i286_membyte_read(UINT seg, UINT off) {  REG8 MEMCALL i286_membyte_read(UINT seg, UINT off) {
   
         UINT32  address;          UINT32  address;
Line 965  void MEMCALL i286_memword_write(UINT seg Line 965  void MEMCALL i286_memword_write(UINT seg
                 i286_memorywrite_w(address, value);                  i286_memorywrite_w(address, value);
         }          }
 }  }
 #endif  #endif /* NP2_MEMORY_ASM */
   
 void MEMCALL i286_memstr_read(UINT seg, UINT off, void *dat, UINT leng) {  void MEMCALL i286_memstr_read(UINT seg, UINT off, void *dat, UINT leng) {
   
Line 1005  void MEMCALL i286_memstr_read(UINT seg,  Line 1005  void MEMCALL i286_memstr_read(UINT seg, 
         }          }
 }  }
   
 void MEMCALL i286_memstr_write(UINT seg, UINT off,  void MEMCALL i286_memstr_write(UINT seg, UINT off, const void *dat, UINT leng) {
                                                                                                 const void *dat, UINT leng) {  
   
         BYTE    *out;          BYTE    *out;
         UINT32  adrs;          UINT32  adrs;

Removed from v.1.9  
changed lines
  Added in v.1.10


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