From 2a1064628f6aebbe9ad2311d1993fc7c06fd08fd Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 22 Jun 2017 18:45:10 -0400 Subject: Address space name fix (nw) --- src/devices/cpu/s2650/s2650.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/s2650/s2650.cpp b/src/devices/cpu/s2650/s2650.cpp index 702ed83906a..d8d60cef344 100644 --- a/src/devices/cpu/s2650/s2650.cpp +++ b/src/devices/cpu/s2650/s2650.cpp @@ -32,7 +32,7 @@ s2650_device::s2650_device(const machine_config &mconfig, const char *tag, devic : cpu_device(mconfig, S2650, tag, owner, clock) , m_program_config("program", ENDIANNESS_LITTLE, 8, 15) , m_io_config("io", ENDIANNESS_LITTLE, 8, 8) - , m_data_config("io", ENDIANNESS_LITTLE, 8, 1) + , m_data_config("data", ENDIANNESS_LITTLE, 8, 1) , m_sense_handler(*this) , m_flag_handler(*this), m_intack_handler(*this) , m_ppc(0), m_page(0), m_iar(0), m_ea(0), m_psl(0), m_psu(0), m_r(0) -- cgit v1.2.3