summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-06-10 13:26:58 +0300
committerOxore <oxore@protonmail.com>2023-06-10 14:50:12 +0300
commitfccfe0e0b4848fa38403b515d77b6aba37570e54 (patch)
treef520df03c9d913ff9edfbd1ea626d9f93e92d625 /CMakeLists.txt
parenta8beae02428f4c7762c3621b4a6d23a498b7d394 (diff)
Impl IO class with tracing, add VDP addr regs tracing
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ec342a7..5f89536 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,6 +16,7 @@ set(emulator_sources
graphics.cpp
m68k_debugging.cpp
vdp.cpp
+ io.cpp
)
set(musashi_m68k_sources
musashi-m68k/m68kcpu.c
@@ -78,6 +79,7 @@ target_compile_definitions(emulator PRIVATE
DEBUG_TRACE_INSTRUCTIONS=0
DEBUG_TRACE_GDB_REMOTE=0
DEBUG_TRACE_VDP_ACCESS=1
+ DEBUG_TRACE_IO_ACCESS=1
HAS_GRAPHICS=1
)