Exemplo n.º 1
0
        }                                          //Even or odd frame

        public PPU(Emulator emu)
            : base(emu)
        {
        }
Exemplo n.º 2
0
 public NROM(Emulator emu)
     : base(emu, emu.GamePak.VerticalVRAMMirroring ? VRAMMirroringMode.Vertical : VRAMMirroringMode.Horizontal)
 {
 }
Exemplo n.º 3
0
 public PPUMemory(Emulator emu)
     : base(emu)
 {
     this.VRAM       = new byte[2048];
     this.paletteRAM = new byte[32];
 }