Inheritance: MemoryBase
Beispiel #1
0
 public RamBytePointer(RamBase memory)
 {
     _memory = memory;
 }
Beispiel #2
0
 public RamBytePointer(RamBase memory, int address)
     : this(memory)
 {
     _address = address;
 }