├── LICENSE ├── README.md ├── screenshots ├── cpu_instrs.png ├── deathplanet.png ├── dmg_acid2.png ├── ffl3.png ├── fruitpursuit.png ├── megaman.png ├── megaman5.png ├── shocklobster.png ├── sml.png ├── sml2.png ├── tetris.png ├── uxn_pong.png └── uxn_screen.png ├── src ├── assets.tal ├── mbcs.tal ├── mmap.tal ├── opcodes.tal ├── ppu.tal ├── varaboy.icn └── varaboy.tal └── test_roms ├── cpu_instrs.gb └── dmg-acid2.gb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/cpu_instrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/cpu_instrs.png -------------------------------------------------------------------------------- /screenshots/deathplanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/deathplanet.png -------------------------------------------------------------------------------- /screenshots/dmg_acid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/dmg_acid2.png -------------------------------------------------------------------------------- /screenshots/ffl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/ffl3.png -------------------------------------------------------------------------------- /screenshots/fruitpursuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/fruitpursuit.png -------------------------------------------------------------------------------- /screenshots/megaman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/megaman.png -------------------------------------------------------------------------------- /screenshots/megaman5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/megaman5.png -------------------------------------------------------------------------------- /screenshots/shocklobster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/shocklobster.png -------------------------------------------------------------------------------- /screenshots/sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/sml.png -------------------------------------------------------------------------------- /screenshots/sml2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/sml2.png -------------------------------------------------------------------------------- /screenshots/tetris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/tetris.png -------------------------------------------------------------------------------- /screenshots/uxn_pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/uxn_pong.png -------------------------------------------------------------------------------- /screenshots/uxn_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/screenshots/uxn_screen.png -------------------------------------------------------------------------------- /src/assets.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/assets.tal -------------------------------------------------------------------------------- /src/mbcs.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/mbcs.tal -------------------------------------------------------------------------------- /src/mmap.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/mmap.tal -------------------------------------------------------------------------------- /src/opcodes.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/opcodes.tal -------------------------------------------------------------------------------- /src/ppu.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/ppu.tal -------------------------------------------------------------------------------- /src/varaboy.icn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/varaboy.icn -------------------------------------------------------------------------------- /src/varaboy.tal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/src/varaboy.tal -------------------------------------------------------------------------------- /test_roms/cpu_instrs.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/test_roms/cpu_instrs.gb -------------------------------------------------------------------------------- /test_roms/dmg-acid2.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbsp/varaboy/HEAD/test_roms/dmg-acid2.gb --------------------------------------------------------------------------------