Example #1
0
 public MMU(GB Instance) : base(Instance)
 {
     this.instance = Instance;
 }
Example #2
0
 public GBInstance(GB instance)
 {
     this.instance = instance;
 }
Example #3
0
 public Serial(GB instance) : base(instance)
 {
 }
Example #4
0
 public CPU(GB Instance) : base(Instance)
 {
     base.instance = Instance;
     this.Reset();
 }