Version 0 not fully working

This commit is contained in:
2025-06-21 17:23:02 -04:00
commit 32d70aa657
21 changed files with 1307 additions and 0 deletions

10
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
add_executable(${PROJECT_NAME}
Chip8.cpp
Chip8.h
Interpreter.cpp
Interpreter.h)
target_sources(${PROJECT_NAME} PRIVATE main.cpp
Graphics.cpp
Graphics.h
)
target_link_libraries(${PROJECT_NAME} PRIVATE vendor)