From 5eadac72916ce9d53ffdc3f908a6e414858fe7e0 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 26 Dec 2023 17:51:39 +0100 Subject: [PATCH] Cleaning repository --- docs/Makefile | 20 -- docs/conf.py | 27 --- docs/index.rst | 20 -- docs/make.bat | 35 ---- {roms => res/roms}/README.md | 0 {roms => res/roms}/games/paddles.ch8 | Bin {roms => res/roms}/games/pong_1player.ch8 | Bin .../tests}/chip8-test-suite/1-chip8-logo.ch8 | Bin .../tests}/chip8-test-suite/2-ibm-logo.ch8 | Bin .../roms/tests}/chip8-test-suite/3-corax+.ch8 | Bin .../roms/tests}/chip8-test-suite/4-flags.ch8 | Bin .../roms/tests}/chip8-test-suite/5-quirks.ch8 | Bin .../roms/tests}/chip8-test-suite/6-keypad.ch8 | Bin .../roms/tests}/chip8-test-suite/7-beep.ch8 | Bin .../tests}/chip8-test-suite/8-scrolling.ch8 | Bin {roms => res/roms/tests}/chiptest.ch8 | Bin {roms => res/roms/tests}/ibm.ch8 | Bin src/beep2.mp3 => res/speaker/beep.mp3 | Bin src/beep.h | 194 ++++++++++++++++++ src/beep.mp3 | Bin 5320 -> 0 bytes src/keypad.c | 8 +- src/keypad.h | 5 + src/main.c | 19 +- src/mem.h | 46 +++++ src/screen.c | 10 +- src/screen.h | 40 +++- src/speaker.c | 10 +- src/speaker.h | 23 ++- src/vcpu.c | 2 +- src/vcpu.h | 63 +++++- 30 files changed, 380 insertions(+), 142 deletions(-) delete mode 100644 docs/Makefile delete mode 100644 docs/conf.py delete mode 100644 docs/index.rst delete mode 100644 docs/make.bat rename {roms => res/roms}/README.md (100%) rename {roms => res/roms}/games/paddles.ch8 (100%) rename {roms => res/roms}/games/pong_1player.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/1-chip8-logo.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/2-ibm-logo.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/3-corax+.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/4-flags.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/5-quirks.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/6-keypad.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/7-beep.ch8 (100%) rename {roms => res/roms/tests}/chip8-test-suite/8-scrolling.ch8 (100%) rename {roms => res/roms/tests}/chiptest.ch8 (100%) rename {roms => res/roms/tests}/ibm.ch8 (100%) rename src/beep2.mp3 => res/speaker/beep.mp3 (100%) create mode 100644 src/beep.h delete mode 100644 src/beep.mp3 diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index d4bb2cb..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = . -BUILDDIR = _build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index 738a5e7..0000000 --- a/docs/conf.py +++ /dev/null @@ -1,27 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# For the full list of built-in configuration values, see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -# -- Project information ----------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information - -project = 'Chip-8' -copyright = '2023, Loïc Guégan' -author = 'Loïc Guégan' - -# -- General configuration --------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration - -extensions = [] - -templates_path = ['_templates'] -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] - - - -# -- Options for HTML output ------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output - -html_theme = 'sphinx_rtd_theme' -html_static_path = ['_static'] diff --git a/docs/index.rst b/docs/index.rst deleted file mode 100644 index 5825200..0000000 --- a/docs/index.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. Chip-8 documentation master file, created by - sphinx-quickstart on Sun Dec 24 17:49:23 2023. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to Chip-8's documentation! -================================== - -.. toctree:: - :maxdepth: 2 - :caption: Contents: - - - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/make.bat b/docs/make.bat deleted file mode 100644 index 32bb245..0000000 --- a/docs/make.bat +++ /dev/null @@ -1,35 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=. -set BUILDDIR=_build - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.https://www.sphinx-doc.org/ - exit /b 1 -) - -if "%1" == "" goto help - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd diff --git a/roms/README.md b/res/roms/README.md similarity index 100% rename from roms/README.md rename to res/roms/README.md diff --git a/roms/games/paddles.ch8 b/res/roms/games/paddles.ch8 similarity index 100% rename from roms/games/paddles.ch8 rename to res/roms/games/paddles.ch8 diff --git a/roms/games/pong_1player.ch8 b/res/roms/games/pong_1player.ch8 similarity index 100% rename from roms/games/pong_1player.ch8 rename to res/roms/games/pong_1player.ch8 diff --git a/roms/chip8-test-suite/1-chip8-logo.ch8 b/res/roms/tests/chip8-test-suite/1-chip8-logo.ch8 similarity index 100% rename from roms/chip8-test-suite/1-chip8-logo.ch8 rename to res/roms/tests/chip8-test-suite/1-chip8-logo.ch8 diff --git a/roms/chip8-test-suite/2-ibm-logo.ch8 b/res/roms/tests/chip8-test-suite/2-ibm-logo.ch8 similarity index 100% rename from roms/chip8-test-suite/2-ibm-logo.ch8 rename to res/roms/tests/chip8-test-suite/2-ibm-logo.ch8 diff --git a/roms/chip8-test-suite/3-corax+.ch8 b/res/roms/tests/chip8-test-suite/3-corax+.ch8 similarity index 100% rename from roms/chip8-test-suite/3-corax+.ch8 rename to res/roms/tests/chip8-test-suite/3-corax+.ch8 diff --git a/roms/chip8-test-suite/4-flags.ch8 b/res/roms/tests/chip8-test-suite/4-flags.ch8 similarity index 100% rename from roms/chip8-test-suite/4-flags.ch8 rename to res/roms/tests/chip8-test-suite/4-flags.ch8 diff --git a/roms/chip8-test-suite/5-quirks.ch8 b/res/roms/tests/chip8-test-suite/5-quirks.ch8 similarity index 100% rename from roms/chip8-test-suite/5-quirks.ch8 rename to res/roms/tests/chip8-test-suite/5-quirks.ch8 diff --git a/roms/chip8-test-suite/6-keypad.ch8 b/res/roms/tests/chip8-test-suite/6-keypad.ch8 similarity index 100% rename from roms/chip8-test-suite/6-keypad.ch8 rename to res/roms/tests/chip8-test-suite/6-keypad.ch8 diff --git a/roms/chip8-test-suite/7-beep.ch8 b/res/roms/tests/chip8-test-suite/7-beep.ch8 similarity index 100% rename from roms/chip8-test-suite/7-beep.ch8 rename to res/roms/tests/chip8-test-suite/7-beep.ch8 diff --git a/roms/chip8-test-suite/8-scrolling.ch8 b/res/roms/tests/chip8-test-suite/8-scrolling.ch8 similarity index 100% rename from roms/chip8-test-suite/8-scrolling.ch8 rename to res/roms/tests/chip8-test-suite/8-scrolling.ch8 diff --git a/roms/chiptest.ch8 b/res/roms/tests/chiptest.ch8 similarity index 100% rename from roms/chiptest.ch8 rename to res/roms/tests/chiptest.ch8 diff --git a/roms/ibm.ch8 b/res/roms/tests/ibm.ch8 similarity index 100% rename from roms/ibm.ch8 rename to res/roms/tests/ibm.ch8 diff --git a/src/beep2.mp3 b/res/speaker/beep.mp3 similarity index 100% rename from src/beep2.mp3 rename to res/speaker/beep.mp3 diff --git a/src/beep.h b/src/beep.h new file mode 100644 index 0000000..3261618 --- /dev/null +++ b/src/beep.h @@ -0,0 +1,194 @@ +const unsigned char beep[] = { +0xff, 0xfb, 0x90, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x69, 0x6e, +0x67, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x08, +0xf7, 0x00, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, +0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, +0x71, 0x71, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, +0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, +0x9c, 0x9c, 0x9c, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, +0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, +0xf1, 0xf1, 0xf1, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x50, 0x4c, 0x41, 0x4d, +0x45, 0x33, 0x2e, 0x31, 0x30, 0x30, 0x04, 0xb9, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x15, 0x20, 0x24, 0x06, 0x7f, 0x41, 0x00, 0x01, +0xe0, 0x00, 0x00, 0x08, 0xf7, 0x9f, 0xa0, 0x67, 0x7d, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xfb, 0xd0, +0xc4, 0x00, 0x00, 0x07, 0x40, 0x03, 0x83, 0xb4, 0x10, 0x00, 0x24, 0x44, +0xbc, 0xee, 0xff, 0x35, 0xa2, 0x40, 0x24, 0x83, 0xba, 0x3a, 0x38, 0xdc, +0x72, 0x5c, 0x30, 0x7d, 0xe2, 0x00, 0xc1, 0x70, 0xf9, 0x48, 0x38, 0x18, +0x47, 0x07, 0xc1, 0xfe, 0xa0, 0x40, 0xe7, 0x94, 0x0c, 0x7c, 0x3f, 0xe0, +0x83, 0xbc, 0xa1, 0xce, 0x5c, 0x1f, 0x0f, 0xf5, 0x02, 0x0e, 0xf1, 0x20, +0x63, 0xfe, 0x50, 0x10, 0x77, 0x89, 0x03, 0x1c, 0x1f, 0x07, 0xfc, 0x40, +0x08, 0x7c, 0xa7, 0x97, 0x00, 0x22, 0x46, 0x51, 0x64, 0x6d, 0x11, 0x33, +0x46, 0xbb, 0x95, 0x88, 0xa0, 0x30, 0x10, 0x09, 0x55, 0x84, 0x71, 0xb3, +0x2a, 0xc8, 0xe1, 0x54, 0xe1, 0x86, 0x2b, 0x2d, 0x0e, 0x4f, 0x1e, 0x22, +0x5f, 0x32, 0x91, 0x63, 0x95, 0xed, 0x15, 0x49, 0xb9, 0xe5, 0x85, 0x27, +0x30, 0x2a, 0xb9, 0x3a, 0xc0, 0xe0, 0xd3, 0x84, 0x74, 0xc0, 0x96, 0x8f, +0x16, 0x02, 0xb2, 0xa9, 0xe2, 0x00, 0x69, 0x71, 0xc6, 0xea, 0xab, 0x21, +0xe8, 0x80, 0xe8, 0xe4, 0x6d, 0xb8, 0xf7, 0x0a, 0x90, 0x0e, 0x5f, 0x29, +0x90, 0xba, 0x45, 0x08, 0xdc, 0xd6, 0xbe, 0x48, 0x3c, 0xce, 0x01, 0x8c, +0xa8, 0x63, 0x2d, 0x24, 0x5e, 0x62, 0xc2, 0xb7, 0x7e, 0x4b, 0x89, 0x01, +0x8f, 0x23, 0xad, 0x48, 0xd1, 0x5f, 0x6d, 0x54, 0x6e, 0xd2, 0xe7, 0x44, +0x68, 0x05, 0x49, 0x74, 0x35, 0x25, 0x82, 0x0a, 0x02, 0xf6, 0x85, 0xe9, +0x80, 0x67, 0x69, 0xe3, 0xad, 0x37, 0x93, 0x0c, 0xde, 0x83, 0x18, 0x25, +0xd7, 0xde, 0x99, 0xb5, 0xc9, 0x45, 0xe6, 0xda, 0x96, 0x57, 0x1d, 0x95, +0x7e, 0x12, 0xa9, 0x4d, 0x9c, 0xea, 0xe2, 0xd4, 0x35, 0x35, 0xd7, 0xce, +0x82, 0x86, 0x3b, 0x5a, 0x6f, 0x2b, 0x75, 0x65, 0x99, 0x61, 0x72, 0x1d, +0xfc, 0x28, 0x6b, 0x7e, 0xb2, 0x99, 0xc7, 0x38, 0x3f, 0x19, 0x8c, 0xe1, +0x39, 0x50, 0x65, 0x0f, 0x65, 0x37, 0x49, 0x8f, 0xe5, 0x2f, 0xcb, 0x58, +0xce, 0xf6, 0xbe, 0x31, 0x9e, 0xd4, 0xdc, 0xd7, 0x35, 0xd9, 0x9c, 0x6d, +0xf2, 0x67, 0xb3, 0x30, 0xf6, 0x33, 0x19, 0xc3, 0x39, 0x4c, 0x65, 0x0d, +0x4f, 0x67, 0x3b, 0x24, 0xe5, 0x6b, 0x3f, 0x87, 0x69, 0xb0, 0xa9, 0xda, +0x5b, 0x35, 0xfe, 0xef, 0x70, 0xe4, 0xd7, 0x30, 0xce, 0xae, 0x39, 0xe1, +0x33, 0xdc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x63, 0x71, +0xdc, 0xb0, 0x9e, 0x92, 0x51, 0xf6, 0x76, 0x38, 0x53, 0xfa, 0x95, 0x1e, +0xe7, 0x2a, 0xea, 0x24, 0xb9, 0xb2, 0x07, 0x2f, 0x6d, 0xa4, 0x00, 0x20, +0x00, 0x11, 0x68, 0x06, 0x45, 0x1a, 0x21, 0x50, 0x62, 0xe7, 0x0b, 0x5c, +0xb9, 0x5f, 0xc6, 0x86, 0xf7, 0xbd, 0x14, 0x3f, 0x8c, 0x12, 0x2d, 0xf9, +0x91, 0xe7, 0x25, 0xea, 0x9c, 0x0f, 0x21, 0x71, 0x1f, 0x4d, 0x49, 0xa5, +0xe6, 0x36, 0xad, 0x11, 0x05, 0x03, 0x28, 0x96, 0x48, 0xd4, 0xc4, 0xd2, +0x63, 0x45, 0xc7, 0xe0, 0x12, 0x84, 0xb2, 0x6f, 0x3f, 0x26, 0x24, 0xb2, +0xf1, 0x78, 0x14, 0xb1, 0xe2, 0x5c, 0x5a, 0x8b, 0xb2, 0xe1, 0xb1, 0x91, +0x89, 0x74, 0x13, 0x91, 0xb8, 0xee, 0xba, 0x9b, 0x51, 0x15, 0xed, 0x42, +0xb7, 0xb4, 0x98, 0xf7, 0xbd, 0x6d, 0xd3, 0x2c, 0xaa, 0xad, 0xeb, 0x9c, +0x28, 0xde, 0xbd, 0xab, 0x9d, 0x49, 0xf5, 0x6b, 0xdd, 0x22, 0xfd, 0x7b, +0xd0, 0xab, 0x29, 0xd5, 0xb5, 0x3f, 0x35, 0xfd, 0x5e, 0x73, 0x6b, 0x57, +0xe6, 0x1b, 0xd9, 0xbb, 0x4d, 0x6f, 0xd1, 0x5e, 0xe0, 0x8d, 0x45, 0x29, +0xc1, 0xf9, 0x6c, 0x60, 0x00, 0xdd, 0x0f, 0x63, 0x64, 0xe2, 0x1d, 0x3e, +0x83, 0x0e, 0x12, 0xfb, 0xae, 0x80, 0xf6, 0x8e, 0xba, 0xd7, 0x5b, 0xde, +0xba, 0x65, 0xff, 0x51, 0x61, 0x01, 0x1b, 0x19, 0x97, 0xdc, 0xa4, 0x3b, +0x0b, 0xe4, 0x02, 0xa4, 0x05, 0x08, 0x19, 0x6c, 0x31, 0x98, 0xeb, 0x2b, +0x8f, 0xb2, 0xa2, 0x04, 0xeb, 0xac, 0x98, 0x1c, 0xc0, 0x1a, 0xd5, 0xa9, +0x17, 0x2a, 0xc8, 0xc9, 0xd2, 0xb8, 0xcd, 0x83, 0x53, 0x2f, 0x97, 0xcd, +0xcc, 0xcc, 0x26, 0xc7, 0x8e, 0x94, 0x08, 0xa0, 0x2c, 0x23, 0xbc, 0xcb, +0x2d, 0xc9, 0x4a, 0x8f, 0xa8, 0x1a, 0x91, 0x82, 0x27, 0xe7, 0x2b, 0x3c, +0xa2, 0x99, 0x4c, 0x52, 0x83, 0x4d, 0x4b, 0x73, 0x79, 0xdd, 0xd4, 0x35, +0x90, 0x9e, 0xa3, 0x59, 0xea, 0x29, 0x94, 0xc9, 0x0a, 0x34, 0xd9, 0x69, +0x54, 0xe4, 0xa1, 0x56, 0xd5, 0xd4, 0x6f, 0x45, 0x32, 0xc9, 0x20, 0xca, +0x52, 0x9a, 0x6d, 0x53, 0x99, 0x91, 0x2a, 0x1b, 0xd3, 0xd9, 0x64, 0xc3, +0x29, 0x94, 0xf3, 0x56, 0xbb, 0x93, 0xd5, 0xef, 0x5b, 0x5a, 0x67, 0xeb, +0xb3, 0xd4, 0xb3, 0x66, 0xed, 0x39, 0xaf, 0xa6, 0x87, 0xfa, 0xf9, 0x3a, +0x00, 0x00, 0x00, 0x83, 0x35, 0x26, 0x00, 0x05, 0x01, 0xf2, 0x20, 0x88, +0x00, 0x00, 0x00, 0x03, 0x45, 0x81, 0xe7, 0xe4, 0x55, 0xe9, 0xa1, 0x10, +0xb2, 0x14, 0x31, 0xcd, 0x14, 0xd3, 0xc4, 0x87, 0xed, 0xd9, 0x30, 0x71, +0x38, 0x31, 0x8a, 0x54, 0x60, 0x0f, 0x80, 0xe0, 0xe3, 0x0c, 0xae, 0x1e, +0xda, 0x6b, 0x61, 0x1c, 0xcd, 0x24, 0xe3, 0x56, 0x80, 0xa2, 0x77, 0x6b, +0x14, 0x01, 0x47, 0x88, 0x40, 0x46, 0x99, 0x9a, 0xf8, 0x5c, 0x74, 0x20, +0xc9, 0xb9, 0xdf, 0x24, 0x1e, 0x12, 0x03, 0x8f, 0x43, 0xa4, 0xa0, 0x43, +0xc7, 0xf2, 0xf6, 0xf9, 0x5d, 0x8b, 0x3d, 0x32, 0x64, 0x4f, 0x0a, 0x0b, +0x89, 0x55, 0x17, 0xfd, 0x61, 0xd6, 0x21, 0x87, 0x0b, 0x1a, 0x18, 0x52, +0xa8, 0xa5, 0x40, 0xb0, 0x38, 0xea, 0x91, 0x95, 0x0a, 0x33, 0xca, 0xaf, +0x42, 0x71, 0xe7, 0x5d, 0xba, 0x43, 0x4c, 0xac, 0x58, 0x9a, 0x24, 0xfe, +0xba, 0x4b, 0x0e, 0x42, 0x22, 0x30, 0x0c, 0xfe, 0x2b, 0x72, 0x09, 0xdd, +0xda, 0xf7, 0x60, 0xb6, 0xa7, 0x5f, 0x11, 0xa1, 0x3b, 0x77, 0x1b, 0x32, +0x75, 0x4a, 0xdc, 0x20, 0xe0, 0xa9, 0x88, 0xb2, 0x6f, 0x0f, 0x04, 0x5c, +0x70, 0xe6, 0x25, 0x78, 0xff, 0xfb, 0x70, 0xc4, 0xf1, 0x00, 0x11, 0x35, +0x91, 0x7b, 0xfd, 0x86, 0x80, 0x22, 0xaf, 0xb4, 0x2e, 0xbe, 0xb1, 0x20, +0x04, 0x57, 0xc1, 0xe5, 0xaf, 0x56, 0x9d, 0xaf, 0x89, 0x05, 0x44, 0xa3, +0x31, 0x64, 0x07, 0xc8, 0xe0, 0x08, 0xab, 0x92, 0x80, 0x08, 0x83, 0x46, +0x86, 0xd7, 0x94, 0x5e, 0x24, 0xe1, 0x4b, 0xf7, 0x73, 0x08, 0xcd, 0x25, +0x0f, 0xc2, 0x2b, 0xed, 0x5b, 0xa5, 0xee, 0x13, 0xce, 0x97, 0x51, 0x29, +0x4c, 0x5d, 0x41, 0xe5, 0xd0, 0x52, 0x5c, 0xe5, 0x0f, 0xd1, 0x26, 0xa4, +0x34, 0xf4, 0x5b, 0x56, 0xc8, 0x7d, 0xb2, 0x4f, 0xcc, 0xf2, 0xb5, 0x69, +0x0f, 0x2b, 0xda, 0x94, 0x6e, 0x9a, 0xfc, 0xa7, 0x09, 0xd5, 0x82, 0x9f, +0x72, 0x9d, 0x75, 0x45, 0x84, 0xcb, 0xbe, 0xad, 0xf8, 0xb8, 0x5c, 0x51, +0x68, 0xbb, 0xfc, 0xaa, 0xba, 0x9e, 0xe2, 0xcd, 0x8d, 0x45, 0x23, 0x4b, +0x92, 0x56, 0xf0, 0x3b, 0xcb, 0x6e, 0xd6, 0xaf, 0xd2, 0x7d, 0xfb, 0x51, +0xee, 0xd3, 0x5a, 0xb3, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0xfc, 0x35, 0x07, 0xb9, 0xf6, 0x29, 0xa4, 0x6a, 0x2f, 0x6d, 0xb1, 0x4f, +0x2a, 0x95, 0x8b, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x12, +0x91, 0x2c, 0x58, 0xb4, 0xb6, 0x44, 0xce, 0x1f, 0x97, 0x62, 0x16, 0xaa, +0xf8, 0xc4, 0x0a, 0x00, 0xa0, 0x2a, 0x01, 0x5c, 0x11, 0x41, 0x5c, 0x2e, +0x0e, 0x88, 0x83, 0x01, 0x80, 0x80, 0x60, 0xa6, 0x00, 0x20, 0x2c, 0x67, +0x7a, 0xd8, 0xc6, 0xb6, 0xe4, 0x11, 0xfe, 0x60, 0x32, 0x02, 0x11, 0x23, +0x22, 0xe3, 0x39, 0x31, 0x75, 0x19, 0xef, 0xf3, 0x04, 0xf0, 0x52, 0x30, +0x5d, 0x09, 0x23, 0x1b, 0x62, 0xd1, 0x30, 0xdf, 0x49, 0xcf, 0xf0, 0x40, +0x0e, 0x93, 0x06, 0x47, 0xa5, 0x86, 0x95, 0x93, 0x9f, 0xe9, 0x8d, 0x32, +0xca, 0x4c, 0x22, 0x1d, 0xcc, 0x45, 0x13, 0x0c, 0x58, 0x21, 0x7f, 0xfd, +0x96, 0x29, 0x8b, 0x70, 0x5d, 0x46, 0x70, 0xcf, 0x06, 0x55, 0xa8, 0x46, +0x7e, 0x86, 0xc6, 0x26, 0x0c, 0x3f, 0xff, 0xff, 0x8a, 0x33, 0x29, 0x8b, +0xc8, 0x63, 0x48, 0xfc, 0x63, 0x01, 0x4e, 0x64, 0xbb, 0x84, 0x64, 0xaa, +0x1c, 0x0a, 0x5a, 0xff, 0xff, 0xff, 0xfb, 0xb0, 0xc4, 0xe8, 0x00, 0x2a, +0xaa, 0x23, 0x69, 0xf9, 0xbd, 0x82, 0x44, 0xfc, 0x3d, 0x6d, 0xff, 0x3d, +0xd1, 0x40, 0xfe, 0x35, 0x11, 0x67, 0x31, 0x48, 0x66, 0x5a, 0x61, 0xc0, +0x36, 0x60, 0xb8, 0x18, 0x61, 0xe0, 0x8a, 0x62, 0xe9, 0xf4, 0x62, 0x39, +0x24, 0x1c, 0x6d, 0x7f, 0xff, 0xff, 0xbe, 0xbd, 0x86, 0x62, 0x14, 0xb9, +0x66, 0x60, 0x60, 0x2e, 0xc2, 0xcc, 0x0e, 0x01, 0x4c, 0x15, 0x12, 0x8c, +0x11, 0x0c, 0x05, 0x83, 0x33, 0x03, 0x81, 0x1f, 0xff, 0xff, 0xff, 0xbb, +0x0c, 0xd8, 0xab, 0x4a, 0xec, 0xf6, 0x53, 0x2d, 0x5e, 0x2a, 0xc2, 0x15, +0x02, 0x10, 0x9c, 0x9e, 0x40, 0x40, 0x24, 0x28, 0x02, 0xa9, 0x05, 0x06, +0xff, 0xff, 0xff, 0xff, 0xfa, 0xd3, 0xd3, 0x39, 0x7e, 0x5a, 0xce, 0x23, +0xda, 0x55, 0x56, 0x63, 0xe0, 0xc0, 0x0c, 0x2c, 0x00, 0xad, 0x47, 0xb9, +0xb9, 0x3c, 0xe1, 0x40, 0x04, 0x18, 0x02, 0xa9, 0x87, 0xff, 0xff, 0xff, +0xff, 0xff, 0xd5, 0xad, 0x6a, 0x67, 0x2c, 0xb2, 0xad, 0x4d, 0xdf, 0xd7, +0x6b, 0x5a, 0x4f, 0x7b, 0x34, 0x61, 0x60, 0x04, 0x28, 0x01, 0xac, 0x22, +0xf3, 0xad, 0x5d, 0xac, 0xa3, 0xcb, 0x3c, 0x4a, 0x57, 0xd6, 0x43, 0xff, +0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfc, 0xbb, 0x97, 0x75, 0xbd, +0x65, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0xae, +0x56, 0xe4, 0x28, 0x03, 0xb2, 0x14, 0xad, 0x10, 0x80, 0x4f, 0x13, 0x12, +0x6e, 0xb0, 0xf3, 0x29, 0x19, 0x00, 0x2a, 0x4c, 0x41, 0x4d, 0x45, 0x33, +0x2e, 0x31, 0x30, 0x30, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xff, 0xfb, 0x10, 0xc4, 0xcc, +0x03, 0xc0, 0x00, 0x01, 0xa4, 0x1c, 0x00, 0x00, 0x20, 0x00, 0x00, 0x34, +0x80, 0x00, 0x00, 0x04, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, +0xaa, 0xaa, 0xaa, +}; diff --git a/src/beep.mp3 b/src/beep.mp3 deleted file mode 100644 index 09f4219ff37fa18139270102340b46e08a285c77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5320 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 diff --git a/src/keypad.c b/src/keypad.c index 2ff7be4..e0073e9 100644 --- a/src/keypad.c +++ b/src/keypad.c @@ -1,5 +1,6 @@ #include "keypad.h" +/// @brief Define you keymaps here int map[]={ KEY_X, // 0 KEY_ONE, // 1 @@ -19,6 +20,12 @@ int map[]={ KEY_V // F }; +/** + * @brief Get hex from keycode (used only in this file) + * + * @param keycode + * @return int + */ int KeypadGetKey(int keycode){ for(int i=0;i<16;i++){ if(map[i]==keycode) @@ -27,7 +34,6 @@ int KeypadGetKey(int keycode){ return -1; } - int KeypadGetPressed(){ for(int i=0;i<16;i++){ if(IsKeyDown(map[i])) diff --git a/src/keypad.h b/src/keypad.h index 922d2a8..23a6a70 100644 --- a/src/keypad.h +++ b/src/keypad.h @@ -2,5 +2,10 @@ #include "raylib.h" +/** + * @brief Return the hex code of the key currently pressed and -1 ortherwise + * + * @return int + */ int KeypadGetPressed(); diff --git a/src/main.c b/src/main.c index 02e61d0..de3ae0d 100644 --- a/src/main.c +++ b/src/main.c @@ -5,17 +5,20 @@ #include -//#define ROM "../roms/chip8-test-suite/5-quirks.ch8" -//#define ROM "../roms/chip8-test-suite/8-scrolling.ch8" -#define ROM "../roms/games/pong_1player.ch8" -//#define ROM "../roms/ibm.ch8" - int main(int argc, char *argv[]) { + // Parse argument + if(argc != 2){ + printf("Usage: %s [rom]\n",argv[0]); + return 1; + } else if(!FileExists(argv[1])){ + printf("ROM not found: %s\n",argv[1]); + return 1; + } // Initialize MemInit(); - MemLoadROM(ROM); + MemLoadROM(argv[1]); ScreenInit(1000,500); VCPUInit(); SpeakerInit(); @@ -24,12 +27,8 @@ int main(int argc, char *argv[]) SetTargetFPS(VCPU_FREQ*100); // Emulator main loop - int i=0; while (!WindowShouldClose()){ VCPUTick(); - if(i%600 == 0) - printf("tick\n"); - i++; } // Finish diff --git a/src/mem.h b/src/mem.h index 8e4136a..6ea4e01 100644 --- a/src/mem.h +++ b/src/mem.h @@ -3,10 +3,56 @@ #define ADDR_ROM 0x200 #define ADDR_FONT 0x50 +/** + * @brief Must be called first! + * + */ void MemInit(); + +/** + * @brief Set value of a memory region + * + * @param addr + * @param value + * @param size + */ void MemSet(int addr, unsigned char value, int size); + +/** + * @brief Store date in memory + * + * @param data + * @param size + * @param addr + */ void MemStore(unsigned char *data, int size, int addr); + +/** + * @brief Load data from memory + * + * @param data + * @param size + * @param addr + */ void MemLoad(unsigned char *data, int size, int addr); + +/** + * @brief Load ROM into memory (be careful, file MUST exists) + * + * @param path + */ void MemLoadROM(char *path); + +/** + * @brief Dump the entire memory + * + */ void MemDump(); + +/** + * @brief Dump a memory region + * + * @param addr + * @param size + */ void MemDumpRange(int addr, int size); diff --git a/src/screen.c b/src/screen.c index a445bd8..305a40f 100644 --- a/src/screen.c +++ b/src/screen.c @@ -14,7 +14,7 @@ void ScreenInit(int width, int height){ ScreenClear(); SetTraceLogLevel(LOG_ERROR); // Disable anoying raylib logs - InitWindow(width, height, "Chip-8 Emulator"); + InitWindow(width, height, "Chip-8 Emulator by Loïc Guégan"); } void ScreenClear() { @@ -26,7 +26,6 @@ void ScreenClear() { void ScreenUpdate(){ BeginDrawing(); ClearBackground(RAYWHITE); - // DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY); for(int x=0;x<64;x++){ for(int y=0;y<32;y++){ if(Screen.pixels[x+y*64] == 0) @@ -56,13 +55,6 @@ char ScreenPixelApply(int x, int y, unsigned char state){ return flag; } -void ScreenPixelFlip(int x, int y){ - if(Screen.pixels[x+y*64]==0) - Screen.pixels[x+y*64]=1; - else - Screen.pixels[x+y*64]=0; -} - void ScreenWH(int *width, int *height){ *width=64; *height=32; diff --git a/src/screen.h b/src/screen.h index 671285a..075d45a 100644 --- a/src/screen.h +++ b/src/screen.h @@ -3,7 +3,7 @@ #include "raylib.h" #define MODE_CHIP8 0 // Chip-8 64x32 -#define MODE_SCHIP 1 // Super-Chip 128x64 +#define MODE_SCHIP 1 // Super-Chip 128x64 (not supported yet) typedef struct SCREEN_DATA { int width, height; @@ -13,10 +13,46 @@ typedef struct SCREEN_DATA { char pixels[64*32]; } SCREEN_DATA; +/** + * @brief Must be called first! + * + * @param width + * @param height + */ void ScreenInit(int width, int height); + +/** + * @brief Clear the entire simulated screen + * + */ void ScreenClear(); + +/** + * @brief Set the pixel's state of the simulated screen (follow the chip-8 specification) + * + * @param x + * @param y + * @param state + * @return char 1 if pixel was already on and 0 otherwise + */ char ScreenPixelApply(int x, int y, unsigned char state); -void ScreenPixelFlip(int x, int y); + +/** + * @brief Get simulated screen dimensions + * + * @param width + * @param height + */ void ScreenWH(int *width, int *height); + +/** + * @brief Draw simulated screen instantly + * + */ void ScreenUpdate(); + +/** + * @brief Close screen (must be called before quit) + * + */ void ScreenClose(); diff --git a/src/speaker.c b/src/speaker.c index b4bef73..051902b 100644 --- a/src/speaker.c +++ b/src/speaker.c @@ -1,17 +1,19 @@ #include "speaker.h" +#include "beep.h" Sound s; void SpeakerInit(){ - InitAudioDevice(); // Initialize audio device - s=LoadSound(SPEAKER_AUDIO_FILE); + InitAudioDevice(); // Initialize audio device + Wave w=LoadWaveFromMemory(".mp3", beep, sizeof(beep)); + s=LoadSoundFromWave(w); } -void SpeakerOn(){ +void SpeakerPlay(){ PlaySound(s); } -void SpeakerOff(){ +void SpeakerStop(){ StopSound(s); } diff --git a/src/speaker.h b/src/speaker.h index d78812c..15a3030 100644 --- a/src/speaker.h +++ b/src/speaker.h @@ -2,7 +2,26 @@ #define SPEAKER_AUDIO_FILE "beep2.mp3" +/** + * @brief Must be called first + * + */ void SpeakerInit(); -void SpeakerOn(); -void SpeakerOff(); + +/** + * @brief Play beep one time + * + */ +void SpeakerPlay(); + +/** + * @brief Stop beep (interrupt it) + * + */ +void SpeakerStop(); + +/** + * @brief Must be called before exiting the application + * + */ void SpeakerFinish(); diff --git a/src/vcpu.c b/src/vcpu.c index 4682f0b..4bfd86b 100644 --- a/src/vcpu.c +++ b/src/vcpu.c @@ -322,7 +322,7 @@ void VCPUTick(){ // Play sound if(State.ST>0) - SpeakerOn(); + SpeakerPlay(); // Refresh screen if(State.screen_ticks>=(1.0*VCPU_FREQ/SCREEN_FREQ)){ diff --git a/src/vcpu.h b/src/vcpu.h index 16de017..4266ac4 100644 --- a/src/vcpu.h +++ b/src/vcpu.h @@ -5,28 +5,31 @@ #define SCREEN_FREQ 60 #define REG_FLAG 0xF +/** + * @brief Store the entire VCPU state + * + */ typedef struct VCPU_State { - // Program Counter (16 bits but only 12 bits used (4096 memory addresses)) + /// @brief Program Counter (16 bits but only 12 bits used (4096 memory addresses)) unsigned short PC; - // Index register (16 bits but only 12 bits used (4096 memory addresses)) + /// @brief Index register (16 bits but only 12 bits used (4096 memory addresses)) unsigned short I; - // Stack register (16 bits) + /// @brief Stack register (16 bits) unsigned short S; unsigned short stack[100]; // Emulated stack - // General purpose registers (8 bits each) - // Note last one often used as a flag register - unsigned char V[16]; + /// @brief General purpose registers (8 bits each) + unsigned char V[16]; // Note last one often used as a flag register - // Delay timer (8 bits) + /// @brief Delay timer (8 bits) unsigned char DT; - // Sound timer (8 bits) + /// @brief Sound timer (8 bits) unsigned char ST; - // Intruction (opcode + decoded fields) + /// @brief Intruction (opcode + decoded fields) unsigned short opcode; unsigned char X; unsigned char Y; @@ -34,20 +37,58 @@ typedef struct VCPU_State { unsigned char NN; unsigned short NNN; - // Keypressed + /// @brief Keypressed int keypressed; // Not 0 if a key was pressed unsigned char key; - // Count VCPU ticks + /// @brief Count VCPU ticks int dt_ticks; int st_ticks; int screen_ticks; } VCPU_State; +/** + * @brief Must be called first! + * + */ void VCPUInit(); + +/** + * @brief Fetch instruction from memory + * + */ void VCPUFetch(); + +/** + * @brief Decode instruction from the last fetch + * + */ void VCPUDecode(); + +/** + * @brief Execute decode instruction + * + */ void VCPUExecute(); + +/** + * @brief Fetch, decode and execute an instruction + * + */ void VCPUTick(); + +/** + * @brief Simple (a bit) binary to BCD convertion + * + * @param x + * @param u + * @param t + * @param h + */ void VCPUDoubleDabble(unsigned char x, unsigned char *u, unsigned char *t, unsigned char *h); + +/** + * @brief Dump VCPU state + * + */ void VCPUDump();