├── LICENSE.md ├── README.txt ├── asm6502.py ├── chips ├── net_6502.pkl └── net_TIA.pkl ├── circuitSimulatorBase.py ├── circuitSimulatorUsingLists.py ├── circuitSimulatorUsingSets.py ├── emuPIA.py ├── imageBase.py ├── imageOpenGL.py ├── imagePIL.py ├── install_deps.sh ├── mainSim.py ├── nmosFet.py ├── open_dos.bat ├── params.py ├── roms ├── Adventure.bin ├── Asteroids.bin ├── DonkeyKong.bin ├── Pitfall.bin └── SpaceInvaders.bin ├── run_sim.bat ├── run_sim.sh ├── sim2600Console.py ├── sim6502.py ├── simTIA.py └── wire.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/README.txt -------------------------------------------------------------------------------- /asm6502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/asm6502.py -------------------------------------------------------------------------------- /chips/net_6502.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/chips/net_6502.pkl -------------------------------------------------------------------------------- /chips/net_TIA.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/chips/net_TIA.pkl -------------------------------------------------------------------------------- /circuitSimulatorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/circuitSimulatorBase.py -------------------------------------------------------------------------------- /circuitSimulatorUsingLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/circuitSimulatorUsingLists.py -------------------------------------------------------------------------------- /circuitSimulatorUsingSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/circuitSimulatorUsingSets.py -------------------------------------------------------------------------------- /emuPIA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/emuPIA.py -------------------------------------------------------------------------------- /imageBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/imageBase.py -------------------------------------------------------------------------------- /imageOpenGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/imageOpenGL.py -------------------------------------------------------------------------------- /imagePIL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/imagePIL.py -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/install_deps.sh -------------------------------------------------------------------------------- /mainSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/mainSim.py -------------------------------------------------------------------------------- /nmosFet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/nmosFet.py -------------------------------------------------------------------------------- /open_dos.bat: -------------------------------------------------------------------------------- 1 | @call cmd /K prompt 6502$F 2 | @echo All done... 3 | -------------------------------------------------------------------------------- /params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/params.py -------------------------------------------------------------------------------- /roms/Adventure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/roms/Adventure.bin -------------------------------------------------------------------------------- /roms/Asteroids.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/roms/Asteroids.bin -------------------------------------------------------------------------------- /roms/DonkeyKong.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/roms/DonkeyKong.bin -------------------------------------------------------------------------------- /roms/Pitfall.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/roms/Pitfall.bin -------------------------------------------------------------------------------- /roms/SpaceInvaders.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/roms/SpaceInvaders.bin -------------------------------------------------------------------------------- /run_sim.bat: -------------------------------------------------------------------------------- 1 | mainSim.py 2 | -------------------------------------------------------------------------------- /run_sim.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python mainSim.py 3 | -------------------------------------------------------------------------------- /sim2600Console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/sim2600Console.py -------------------------------------------------------------------------------- /sim6502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/sim6502.py -------------------------------------------------------------------------------- /simTIA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/simTIA.py -------------------------------------------------------------------------------- /wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregjames/Sim2600/HEAD/wire.py --------------------------------------------------------------------------------