Diff for /np2/i386c/memory.h between versions 1.7 and 1.8

version 1.7, 2004/02/05 16:41:32 version 1.8, 2004/02/20 16:09:04
Line 53  REG16 MEMCALL i286_memoryread_w(UINT32 a Line 53  REG16 MEMCALL i286_memoryread_w(UINT32 a
 UINT32 MEMCALL i286_memoryread_d(UINT32 address);  UINT32 MEMCALL i286_memoryread_d(UINT32 address);
   
 #ifdef NP2_MEMORY_ASM  #ifdef NP2_MEMORY_ASM
 BYTE MEMCALL i286_membyte_read(WORD seg, WORD off);  REG8 MEMCALL i286_membyte_read(UINT seg, UINT off);
 WORD MEMCALL i286_memword_read(WORD seg, WORD off);  REG16 MEMCALL i286_memword_read(UINT seg, UINT off);
 void MEMCALL i286_membyte_write(WORD seg, WORD off, BYTE dat);  void MEMCALL i286_membyte_write(UINT seg, UINT off, REG8 dat);
 void MEMCALL i286_memword_write(WORD seg, WORD off, WORD dat);  void MEMCALL i286_memword_write(UINT seg, UINT off, REG16 dat);
 #else  #else
 #define i286_membyte_read(a, b) \  #define i286_membyte_read(a, b) \
         i286_memoryread(((DWORD)(a) << 4) + (WORD)(b))          i286_memoryread(((UINT32)(a) << 4) + (UINT16)(b))
 #define i286_memword_read(a, b) \  #define i286_memword_read(a, b) \
         i286_memoryread_w(((DWORD)(a) << 4) + (WORD)(b))          i286_memoryread_w(((UINT32)(a) << 4) + (UINT16)(b))
   
 #define i286_membyte_write(a, b, c) \  #define i286_membyte_write(a, b, c) \
         i286_memorywrite(((DWORD)(a) << 4) + (WORD)(b), (c))          i286_memorywrite(((UINT32)(a) << 4) + (UINT16)(b), (c))
 #define i286_memword_write(a, b, c) \  #define i286_memword_write(a, b, c) \
         i286_memorywrite_w(((DWORD)(a) << 4) + (WORD)(b), (c))          i286_memorywrite_w(((UINT32)(a) << 4) + (UINT16)(b), (c))
 #endif  #endif
   
 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);

Removed from v.1.7  
changed lines
  Added in v.1.8


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