Example #1
0
 public SoundModule(NesApu apu)
 {
     this.apu = apu;
 }
Example #2
0
 public NesMachine()
 {
     Cpu = new NesCpu (this);
     Ppu = new NesPpu (this);
     Apu = new NesApu (this);
 }