summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2022-08-30 20:34:04 +0300
committerOxore <oxore@protonmail.com>2022-08-30 22:31:47 +0300
commit1c108b02f62c0812a8a71e78854666588a811840 (patch)
tree45a223e75cc5a76273c88e3c96148a67a07324d8 /CMakeLists.txt
parented3cf413dfe5f874f203f8b6a696af29cfc47dcd (diff)
Implement GDB's execution continue and interrupt
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 80b78d3..71ac411 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -47,7 +47,8 @@ target_include_directories(musashi_m68k PRIVATE
add_executable(emulator ${emulator_sources})
target_link_libraries(emulator musashi_m68k)
target_compile_definitions(emulator PRIVATE
- DEBUG_TRACE_INSTRUCTIONS=1
+ DEBUG_TRACE_INSTRUCTIONS=0
+ DEBUG_TRACE_GDB_REMOTE=1
)
# Target for GDB Remote Debugging protocol implementation testing