示例#1
0
        public Chip8Emulator(Chip8Rom rom)
        {
            this.keyboard   = new Chip8Keyboard();
            this.delayTimer = new Chip8Timer();
            this.soundTimer = new Chip8Timer();
            this.cpu        = new Chip8CPU(this);

            Chip8Fontset.loadFontset();
            rom.load();
        }
示例#2
0
 private void loadRom(Chip8Rom newRom)
 {
     this.rom = newRom;
     rom.load();
 }