├── .gitignore ├── README.md ├── index.html ├── roms ├── 15PUZZLE ├── BLINKY ├── BLITZ ├── BRIX ├── CONNECT4 ├── GUESS ├── HIDDEN ├── IBM ├── INVADERS ├── KALEID ├── MAZE ├── MERLIN ├── MISSILE ├── PONG ├── PONG2 ├── PUZZLE ├── SYZYGY ├── TANK ├── TETRIS ├── TICTAC ├── UFO ├── VBRIX ├── VERS └── WIPEOFF └── scripts ├── chip8.js ├── gamepad.js ├── polyfills.js └── renderer.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *.swp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/index.html -------------------------------------------------------------------------------- /roms/15PUZZLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/15PUZZLE -------------------------------------------------------------------------------- /roms/BLINKY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/BLINKY -------------------------------------------------------------------------------- /roms/BLITZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/BLITZ -------------------------------------------------------------------------------- /roms/BRIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/BRIX -------------------------------------------------------------------------------- /roms/CONNECT4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/CONNECT4 -------------------------------------------------------------------------------- /roms/GUESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/GUESS -------------------------------------------------------------------------------- /roms/HIDDEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/HIDDEN -------------------------------------------------------------------------------- /roms/IBM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/IBM -------------------------------------------------------------------------------- /roms/INVADERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/INVADERS -------------------------------------------------------------------------------- /roms/KALEID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/KALEID -------------------------------------------------------------------------------- /roms/MAZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/MAZE -------------------------------------------------------------------------------- /roms/MERLIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/MERLIN -------------------------------------------------------------------------------- /roms/MISSILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/MISSILE -------------------------------------------------------------------------------- /roms/PONG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/PONG -------------------------------------------------------------------------------- /roms/PONG2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/PONG2 -------------------------------------------------------------------------------- /roms/PUZZLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/PUZZLE -------------------------------------------------------------------------------- /roms/SYZYGY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/SYZYGY -------------------------------------------------------------------------------- /roms/TANK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/TANK -------------------------------------------------------------------------------- /roms/TETRIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/TETRIS -------------------------------------------------------------------------------- /roms/TICTAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/TICTAC -------------------------------------------------------------------------------- /roms/UFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/UFO -------------------------------------------------------------------------------- /roms/VBRIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/VBRIX -------------------------------------------------------------------------------- /roms/VERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/VERS -------------------------------------------------------------------------------- /roms/WIPEOFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/roms/WIPEOFF -------------------------------------------------------------------------------- /scripts/chip8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/scripts/chip8.js -------------------------------------------------------------------------------- /scripts/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/scripts/gamepad.js -------------------------------------------------------------------------------- /scripts/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/scripts/polyfills.js -------------------------------------------------------------------------------- /scripts/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderdickson/Chip-8-Emulator/HEAD/scripts/renderer.js --------------------------------------------------------------------------------