i8008: I/O addressing is only 5 bits

This commit is contained in:
AJR 2018-11-01 08:09:43 -04:00
parent ccd120d374
commit 1fcf8a948d

View File

@ -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)
{