コード例 #1
0
ファイル: SoundModule.cs プロジェクト: atsushieno/synthesis
 public SoundModule(NesApu apu)
 {
     this.apu = apu;
 }
コード例 #2
0
ファイル: NesCpu.cs プロジェクト: atsushieno/synthesis
 public NesMachine()
 {
     Cpu = new NesCpu (this);
     Ppu = new NesPpu (this);
     Apu = new NesApu (this);
 }