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