Beispiel #1
0
 public virtual void SetDefaultDevice(MemoryMappedDevice Device)
 {
     DefaultDevice = new BusSlot(0, Device.Size, Device);
 }
Beispiel #2
0
 public virtual void Attach(int Start, int End, MemoryMappedDevice Mem)
 {
     MemoryDevices.Add(new BusSlot(Start, End, Mem));
 }
Beispiel #3
0
 public virtual void Attach(int Start, MemoryMappedDevice Mem)
 {
     Attach(Start, Start + Mem.Size, Mem);
 }
Beispiel #4
0
 public BusSlot(int Start, int End, MemoryMappedDevice Mem)
 {
     this.Start        = Start;
     this.End          = End;
     this.MemoryDevice = Mem;
 }