├── .editorconfig ├── .github ├── FUNDING.yml ├── pull_request_template.md └── workflows │ ├── build-and-test-library.yml │ ├── build-documentation.yml │ └── step-tests.yml ├── .gitignore ├── .vimrc ├── API └── Z80.h ├── AUTHORS ├── CITATION.cff ├── CMake ├── FindBreathe.cmake ├── FindSphinx.cmake └── FindZeta.cmake ├── CMakeLists.txt ├── COPYING ├── COPYING.LESSER ├── HISTORY ├── README ├── README.md ├── THANKS ├── documentation ├── CMakeLists.txt ├── api-reference.rst ├── conf.py ├── index.rst ├── installation-from-source-code.rst ├── integration.rst ├── introduction.rst ├── license.rst ├── tests.rst ├── thanks.rst ├── usage.rst └── version-history.rst ├── sources ├── Z80.c ├── Z80.pas ├── Z80.rc.in ├── generate-daa-af-table.c ├── generate-pf-parity-table.c ├── step-test-Z80.c └── test-Z80.c └── support ├── Z80.pc.in ├── Z80Config.cmake.in ├── firmware.sha3-512 └── software.sha3-512 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test-library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.github/workflows/build-and-test-library.yml -------------------------------------------------------------------------------- /.github/workflows/build-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.github/workflows/build-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/step-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.github/workflows/step-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | .DS_Store 3 | Thumbs.db 4 | /build/ 5 | /CMakeLists.txt.user 6 | -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/.vimrc -------------------------------------------------------------------------------- /API/Z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/API/Z80.h -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/AUTHORS -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMake/FindBreathe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/CMake/FindBreathe.cmake -------------------------------------------------------------------------------- /CMake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/CMake/FindSphinx.cmake -------------------------------------------------------------------------------- /CMake/FindZeta.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/CMake/FindZeta.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/HISTORY -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/THANKS -------------------------------------------------------------------------------- /documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /documentation/api-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/api-reference.rst -------------------------------------------------------------------------------- /documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/conf.py -------------------------------------------------------------------------------- /documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/index.rst -------------------------------------------------------------------------------- /documentation/installation-from-source-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/installation-from-source-code.rst -------------------------------------------------------------------------------- /documentation/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/integration.rst -------------------------------------------------------------------------------- /documentation/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/introduction.rst -------------------------------------------------------------------------------- /documentation/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/license.rst -------------------------------------------------------------------------------- /documentation/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/tests.rst -------------------------------------------------------------------------------- /documentation/thanks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/thanks.rst -------------------------------------------------------------------------------- /documentation/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/usage.rst -------------------------------------------------------------------------------- /documentation/version-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/documentation/version-history.rst -------------------------------------------------------------------------------- /sources/Z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/Z80.c -------------------------------------------------------------------------------- /sources/Z80.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/Z80.pas -------------------------------------------------------------------------------- /sources/Z80.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/Z80.rc.in -------------------------------------------------------------------------------- /sources/generate-daa-af-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/generate-daa-af-table.c -------------------------------------------------------------------------------- /sources/generate-pf-parity-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/generate-pf-parity-table.c -------------------------------------------------------------------------------- /sources/step-test-Z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/step-test-Z80.c -------------------------------------------------------------------------------- /sources/test-Z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/sources/test-Z80.c -------------------------------------------------------------------------------- /support/Z80.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/support/Z80.pc.in -------------------------------------------------------------------------------- /support/Z80Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/support/Z80Config.cmake.in -------------------------------------------------------------------------------- /support/firmware.sha3-512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/support/firmware.sha3-512 -------------------------------------------------------------------------------- /support/software.sha3-512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcode/Z80/HEAD/support/software.sha3-512 --------------------------------------------------------------------------------