Example #1
0
 public void SetPreviousToCurrent(MemoryDomain domain, bool bigendian)
 {
     _previous = domain.PeekUshort(Address, bigendian);
 }
Example #2
0
 public int get_p1_x()
 {
     // make sure we are little endian
     return(_currentDomain.PeekUshort(0x000022, _bigEndian));
 }
Example #3
0
 public MiniWordWatch(MemoryDomain domain, long addr, bool bigEndian)
 {
     Address   = addr;
     _previous = domain.PeekUshort(Address % domain.Size, bigEndian);
 }