summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/lh5801/lh5801.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/lh5801/lh5801.cpp')
-rw-r--r--src/devices/cpu/lh5801/lh5801.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/devices/cpu/lh5801/lh5801.cpp b/src/devices/cpu/lh5801/lh5801.cpp
index da156333eb0..d7eed38700b 100644
--- a/src/devices/cpu/lh5801/lh5801.cpp
+++ b/src/devices/cpu/lh5801/lh5801.cpp
@@ -18,8 +18,6 @@
#include "lh5801.h"
#include "5801dasm.h"
-#include "debugger.h"
-
#define VERBOSE 0
#include "logmacro.h"
@@ -71,7 +69,7 @@ lh5801_cpu_device::lh5801_cpu_device(const machine_config &mconfig, const char *
: cpu_device(mconfig, LH5801, tag, owner, clock)
, m_program_config("program", ENDIANNESS_LITTLE, 8, 16, 0)
, m_io_config("io", ENDIANNESS_LITTLE, 8, 16, 0)
- , m_in_func(*this)
+ , m_in_func(*this, 0)
{
}
@@ -94,8 +92,6 @@ void lh5801_cpu_device::device_start()
space(AS_PROGRAM).specific(m_program);
space(AS_IO).specific(m_io);
- m_in_func.resolve_safe(0);
-
m_s.w.l = 0;
m_p.w.l = 0;
m_u.w.l = 0;