├── .gitignore ├── Makefile ├── README.md └── nes_snes_controller_6502.asm /.gitignore: -------------------------------------------------------------------------------- 1 | *.prg 2 | *.d64 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mist64/nes_snes_controller_6502/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mist64/nes_snes_controller_6502/HEAD/README.md -------------------------------------------------------------------------------- /nes_snes_controller_6502.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mist64/nes_snes_controller_6502/HEAD/nes_snes_controller_6502.asm --------------------------------------------------------------------------------