From eae3fe98efcf92c1bc296cb9fd31ee90609e7008 Mon Sep 17 00:00:00 2001 From: hap Date: Fri, 24 May 2024 16:16:07 +0200 Subject: feagv9: remove 512K ram option --- src/devices/machine/sci4.cpp | 2 +- src/mame/fidelity/eag68k.cpp | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/devices/machine/sci4.cpp b/src/devices/machine/sci4.cpp index 7ed8196d3e7..f60c211e1b0 100644 --- a/src/devices/machine/sci4.cpp +++ b/src/devices/machine/sci4.cpp @@ -182,7 +182,7 @@ u8 sci4_device::reset_r(offs_t slot) void sci4_device::target_w(u8 data) { - if(data == 0x11 and m_targets == 0x07) + if(data == 0x11 && m_targets == 0x07) machine().debug_break(); m_targets = data; u8 rx = ((((m_rx[6] << 3) | (m_rx[5] << 2) | (m_rx[4] << 1) | m_rx[3]) | ~(m_targets >> 4)) & 0xf) == 0xf; diff --git a/src/mame/fidelity/eag68k.cpp b/src/mame/fidelity/eag68k.cpp index 0bd3c9e593a..69ccd789a9d 100644 --- a/src/mame/fidelity/eag68k.cpp +++ b/src/mame/fidelity/eag68k.cpp @@ -60,7 +60,7 @@ V3: 512KB DRAM V4: 1MB DRAM V5: 128KB+16KB DRAM, dual-CPU! (2*68K @ 16MHz) -V2/V3/V4 have the same program, older versions can be run by decreasing the +V2/V3/V4 have the same program, V2/V3 versions can be run by decreasing the RAM size (-ramsize option). It's not verified if V1 has the same program, but it probably does. @@ -118,7 +118,7 @@ V9: 68030, 1MB h.RAM V10: 68040, 1MB h.RAM V11: 68060, high speed, 2MB h.RAM (half unused?) -V6 has the same program as V7, it can be run by decreasing the RAM size. V11 +V6/V7/V9 have the same program, V6 can be run by decreasing the RAM size. V11 supposedly has the same program as V10. V7 Hardware info: @@ -814,6 +814,8 @@ void eag_state::eagv9(machine_config &config) M68030(config.replace(), m_maincpu, 32_MHz_XTAL); // also seen with 40MHz XTAL m_maincpu->set_interrupt_mixer(false); m_maincpu->set_addrmap(AS_PROGRAM, &eag_state::eagv7_map); + + m_ram->set_extra_options("1M"); } void eag_state::eagv10(machine_config &config) -- cgit v1.2.3