This is a remake of my Chip 8 interpreter originally written in 2022. The original version can be found in the v1_2022
directory.
Requires MSVC and access to cl.exe
- Run
build_windows.bat
Depends on X11 window system, Wayland is not supported. Requires c++20 compiler (clang >= 17 and gcc >= 13)
- Execute
build_linux.sh
You can compile for X11, WIN or SDL platforms.
If you wish to use SDL, you must first get the submodule:
git submodule update --init external/SDL
-
Configure CMake for your target platform
cmake -B build -DPLATFORM=<target_platform>
-
Build the project:
cmake --build build