Diff for /np2/i386c/Attic/mem9821.c between versions 1.4 and 1.5

version 1.4, 2004/04/05 09:45:06 version 1.5, 2004/04/08 13:08:22
Line 72  REG8 MEMCALL mem9821_b0r(UINT32 address) Line 72  REG8 MEMCALL mem9821_b0r(UINT32 address)
   
 void MEMCALL mem9821_b0ww(UINT32 address, REG16 value) {  void MEMCALL mem9821_b0ww(UINT32 address, REG16 value) {
   
         mem9821_b0w(address + 0, value);          mem9821_b0w(address + 0, (REG8)value);
         mem9821_b0w(address + 1, value >> 8);          mem9821_b0w(address + 1, (REG8)(value >> 8));
 }  }
   
 REG16 MEMCALL mem9821_b0rw(UINT32 address) {  REG16 MEMCALL mem9821_b0rw(UINT32 address) {
Line 122  REG8 MEMCALL mem9821_b2r(UINT32 addr) { Line 122  REG8 MEMCALL mem9821_b2r(UINT32 addr) {
   
 void MEMCALL mem9821_b2ww(UINT32 address, REG16 value) {  void MEMCALL mem9821_b2ww(UINT32 address, REG16 value) {
   
         mem9821_b2w(address + 0, value);          mem9821_b2w(address + 0, (REG8)value);
         mem9821_b2w(address + 1, value >> 8);          mem9821_b2w(address + 1, (REG8)(value >> 8));
 }  }
   
 REG16 MEMCALL mem9821_b2rw(UINT32 address) {  REG16 MEMCALL mem9821_b2rw(UINT32 address) {

Removed from v.1.4  
changed lines
  Added in v.1.5


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