summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/esrip/esrip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/esrip/esrip.cpp')
-rw-r--r--src/devices/cpu/esrip/esrip.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/devices/cpu/esrip/esrip.cpp b/src/devices/cpu/esrip/esrip.cpp
index ac99aec9290..7a50020d05d 100644
--- a/src/devices/cpu/esrip/esrip.cpp
+++ b/src/devices/cpu/esrip/esrip.cpp
@@ -1739,17 +1739,6 @@ uint32_t esrip_device::execute_max_cycles() const noexcept
//-------------------------------------------------
-// execute_input_lines - return the number of
-// input/interrupt lines
-//-------------------------------------------------
-
-uint32_t esrip_device::execute_input_lines() const noexcept
-{
- return 0;
-}
-
-
-//-------------------------------------------------
// execute_set_input - act on a changed input/
// interrupt line
//-------------------------------------------------
@@ -1761,7 +1750,7 @@ void esrip_device::execute_set_input(int inputnum, int state)
void esrip_device::execute_run()
{
- int calldebugger = (machine().debug_flags & DEBUG_FLAG_ENABLED) != 0;
+ const bool calldebugger = debugger_enabled();
uint8_t status;
/* I think we can get away with placing this outside of the loop */