From f125cc7018ed32b7f919ff71ea3c7d9d2e6565de Mon Sep 17 00:00:00 2001 From: Oxore Date: Fri, 30 Sep 2022 01:21:52 +0300 Subject: Begin implementing VDP --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b2323c..5edf23b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ set(emulator_sources emulator.cpp gdbremote_parser.cpp m68k_debugging.cpp + vdp.cpp ) set(musashi_m68k_sources musashi-m68k/m68kcpu.c @@ -49,6 +50,7 @@ target_link_libraries(emulator musashi_m68k) target_compile_definitions(emulator PRIVATE DEBUG_TRACE_INSTRUCTIONS=0 DEBUG_TRACE_GDB_REMOTE=0 + DEBUG_TRACE_VDP_ACCESS=1 ) ## Target for GDB Remote Debugging protocol implementation testing -- cgit v1.2.3