Diff for /np2/i286c/memory.h between versions 1.11 and 1.13

version 1.11, 2004/03/07 23:04:51 version 1.13, 2005/03/21 02:24:23
Line 43  enum { Line 43  enum {
 extern "C" {  extern "C" {
 #endif  #endif
   
 extern  BYTE    mem[0x200000];  extern  UINT8   mem[0x200000];
   
 void MEMCALL i286_memorymap(UINT type);  void MEMCALL i286_memorymap(UINT type);
 void MEMCALL i286_romareamap(UINT16 map);  void MEMCALL i286_romareamap(UINT16 map);
Line 51  void MEMCALL i286_vram_dispatch(UINT ope Line 51  void MEMCALL i286_vram_dispatch(UINT ope
   
 REG8 MEMCALL i286_memoryread(UINT32 address);  REG8 MEMCALL i286_memoryread(UINT32 address);
 REG16 MEMCALL i286_memoryread_w(UINT32 address);  REG16 MEMCALL i286_memoryread_w(UINT32 address);
   UINT32 MEMCALL i286_memoryread_d(UINT32 address);
 void MEMCALL i286_memorywrite(UINT32 address, REG8 value);  void MEMCALL i286_memorywrite(UINT32 address, REG8 value);
 void MEMCALL i286_memorywrite_w(UINT32 address, REG16 value);  void MEMCALL i286_memorywrite_w(UINT32 address, REG16 value);
   void MEMCALL i286_memorywrite_d(UINT32 address, UINT32 value);
   
 REG8 MEMCALL meml_read8(UINT seg, UINT off);  REG8 MEMCALL meml_read8(UINT seg, UINT off);
 REG16 MEMCALL meml_read16(UINT seg, UINT off);  REG16 MEMCALL meml_read16(UINT seg, UINT off);

Removed from v.1.11  
changed lines
  Added in v.1.13


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