From 1fcf8a948d4870553aba9d5fb62f6ac1402792e6 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 1 Nov 2018 08:09:43 -0400 Subject: i8008: I/O addressing is only 5 bits --- src/devices/cpu/i8008/i8008.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/i8008/i8008.cpp b/src/devices/cpu/i8008/i8008.cpp index 351edefb024..c0414390f4d 100644 --- a/src/devices/cpu/i8008/i8008.cpp +++ b/src/devices/cpu/i8008/i8008.cpp @@ -37,7 +37,7 @@ DEFINE_DEVICE_TYPE(I8008, i8008_device, "i8008", "Intel 8008") i8008_device::i8008_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : cpu_device(mconfig, I8008, tag, owner, clock) , m_program_config("program", ENDIANNESS_LITTLE, 8, 14) - , m_io_config("io", ENDIANNESS_LITTLE, 8, 8) + , m_io_config("io", ENDIANNESS_LITTLE, 8, 5) , m_program(nullptr) , m_cache(nullptr) { -- cgit v1.2.3