summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp32/dsp32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dsp32/dsp32.cpp')
-rw-r--r--src/devices/cpu/dsp32/dsp32.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/cpu/dsp32/dsp32.cpp b/src/devices/cpu/dsp32/dsp32.cpp
index 2341cdf4f0c..d75b62e5acd 100644
--- a/src/devices/cpu/dsp32/dsp32.cpp
+++ b/src/devices/cpu/dsp32/dsp32.cpp
@@ -553,17 +553,6 @@ uint32_t dsp32c_device::execute_max_cycles() const noexcept
}
-//-------------------------------------------------
-// execute_input_lines - return the number of
-// input/interrupt lines
-//-------------------------------------------------
-
-uint32_t dsp32c_device::execute_input_lines() const noexcept
-{
- return 2;
-}
-
-
void dsp32c_device::execute_set_input(int inputnum, int state)
{
}
@@ -574,6 +563,7 @@ void dsp32c_device::execute_run()
// skip if halted
if ((m_pcr & PCR_RESET) == 0)
{
+ debugger_wait_hook();
m_icount = 0;
return;
}