├── .gitignore ├── LICENSE ├── README.md ├── applepy.py ├── applepy_curses.py ├── control.py ├── cpu6502.py ├── cycle_notes.txt ├── tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/README.md -------------------------------------------------------------------------------- /applepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/applepy.py -------------------------------------------------------------------------------- /applepy_curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/applepy_curses.py -------------------------------------------------------------------------------- /control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/control.py -------------------------------------------------------------------------------- /cpu6502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/cpu6502.py -------------------------------------------------------------------------------- /cycle_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/cycle_notes.txt -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/applepy/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E265,E501 3 | --------------------------------------------------------------------------------