From d4b0de74a616104f3b9b4b4d75f5bf1947d253b6 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 24 Jan 2019 21:31:47 -0500 Subject: m24: No way this has less than 128K of RAM (nw) --- src/mame/drivers/m24.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/m24.cpp b/src/mame/drivers/m24.cpp index d400f9437b7..c8e8f3f6c60 100644 --- a/src/mame/drivers/m24.cpp +++ b/src/mame/drivers/m24.cpp @@ -589,8 +589,8 @@ void m24_state::olivetti(machine_config &config) ISA8_SLOT(config, "isa2", 0, m_isabus, pc_isa8_cards, nullptr, false); ISA8_SLOT(config, "isa3", 0, m_isabus, pc_isa8_cards, nullptr, false); - /* internal ram */ - RAM(config, m_ram).set_default_size("640K").set_extra_options("64K, 128K, 256K, 512K"); + // 2 banks of 16 64Kx1 or 256Kx1 DRAMs on motherboard + RAM(config, m_ram).set_default_size("640K").set_extra_options("128K, 256K, 512K"); TMS7000(config, m_kbc, 24_MHz_XTAL / 6); m_kbc->set_addrmap(AS_PROGRAM, &m24_state::kbc_map); -- cgit v1.2.3