summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/sh2/sh2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/sh2/sh2.c')
-rw-r--r--src/emu/cpu/sh2/sh2.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/emu/cpu/sh2/sh2.c b/src/emu/cpu/sh2/sh2.c
index 73db9487d79..0d3e184a4b4 100644
--- a/src/emu/cpu/sh2/sh2.c
+++ b/src/emu/cpu/sh2/sh2.c
@@ -115,7 +115,6 @@
DEBUGGING
***************************************************************************/
-#define LOG_UML (0) // log UML assembly
#define LOG_NATIVE (0) // log native assembly
#define DISABLE_FAST_REGISTERS (0) // set to 1 to turn off usage of register caching
@@ -170,7 +169,7 @@ sh2_device::sh2_device(const machine_config &mconfig, const char *tag, device_t
, m_cpu_type(CPU_TYPE_SH2)
, m_cache(CACHE_SIZE + sizeof(internal_sh2_state))
, m_drcuml(NULL)
-// , m_drcuml(*this, m_cache, ( LOG_UML ? DRCUML_OPTION_LOG_UML : 0 ) | ( LOG_NATIVE ? DRCUML_OPTION_LOG_NATIVE : 0 ), 1, 32, 1)
+// , m_drcuml(*this, m_cache, ( LOG_NATIVE ? DRCUML_OPTION_LOG_NATIVE : 0 ), 1, 32, 1)
, m_drcfe(NULL)
, m_drcoptions(0)
, m_sh2_state(NULL)
@@ -207,7 +206,7 @@ sh2_device::sh2_device(const machine_config &mconfig, device_type type, const ch
, m_cpu_type(cpu_type)
, m_cache(CACHE_SIZE + sizeof(internal_sh2_state))
, m_drcuml(NULL)
-// , m_drcuml(*this, m_cache, ( LOG_UML ? DRCUML_OPTION_LOG_UML : 0 ) | ( LOG_NATIVE ? DRCUML_OPTION_LOG_NATIVE : 0 ), 1, 32, 1)
+// , m_drcuml(*this, m_cache, ( LOG_NATIVE ? DRCUML_OPTION_LOG_NATIVE : 0 ), 1, 32, 1)
, m_drcfe(NULL)
, m_drcoptions(0)
, m_sh2_state(NULL)
@@ -2561,8 +2560,6 @@ void sh2_device::device_start()
/* initialize the UML generator */
UINT32 flags = 0;
- if (LOG_UML)
- flags |= DRCUML_OPTION_LOG_UML;
if (LOG_NATIVE)
flags |= DRCUML_OPTION_LOG_NATIVE;
m_drcuml = auto_alloc(machine(), drcuml_state(*this, m_cache, flags, 1, 32, 1));