From d20c9a1a20e95e229f0a23c9e61ca56b73b5c7a5 Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 27 Nov 2024 02:21:13 +0100 Subject: s2650: forgot to put back default debugger config --- src/devices/cpu/s2650/s2650.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/s2650/s2650.cpp b/src/devices/cpu/s2650/s2650.cpp index a7ecc77ff06..66a5d7ec568 100644 --- a/src/devices/cpu/s2650/s2650.cpp +++ b/src/devices/cpu/s2650/s2650.cpp @@ -19,6 +19,9 @@ //#define VERBOSE 1 #include "logmacro.h" +// define this to enable Z80 mnemonics in the debugger +#define DEBUG_Z80 0 + // define this to expand all EA calculations inline #define INLINE_EA 1 @@ -43,8 +46,7 @@ s2650_device::s2650_device(const machine_config &mconfig, const char *tag, devic bool s2650_device::get_z80_mnemonics_mode() const { - // Needs to become configurable live - return true; + return bool(DEBUG_Z80); } std::unique_ptr s2650_device::create_disassembler() -- cgit v1.2.3