diff options
author | 2022-03-20 20:28:55 +0000 | |
---|---|---|
committer | 2022-03-20 20:30:25 +0000 | |
commit | 9e5a7b3903e27368eb12332f5c463132ee15e8d0 (patch) | |
tree | d3212c4201c20335668a655b7300c64eb0a8e837 | |
parent | 268f23cbc1c85c410d5d277e56de24a01ec958fb (diff) |
bbc_integrab: Added earlier ROM release.
-rw-r--r-- | src/devices/bus/bbc/internal/integrab.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/internal/integrab.cpp b/src/devices/bus/bbc/internal/integrab.cpp index 63134bc765b..6d69b9c34c0 100644 --- a/src/devices/bus/bbc/internal/integrab.cpp +++ b/src/devices/bus/bbc/internal/integrab.cpp @@ -23,7 +23,7 @@ // DEVICE DEFINITIONS //************************************************************************** -DEFINE_DEVICE_TYPE(BBC_INTEGRAB, bbc_integrab_device, "bbc_integrab", "Computech Integra-\xCE\xB2") +DEFINE_DEVICE_TYPE(BBC_INTEGRAB, bbc_integrab_device, "bbc_integrab", u8"Computech Integra-β") //------------------------------------------------- @@ -59,6 +59,8 @@ ROM_START(integrab) ROMX_LOAD("ibos120p.rom", 0x0000, 0x4000, CRC(21e7a2c2) SHA1(d5ff79da2243aabd363ee26a1e7ad546657fdeb5), ROM_BIOS(0)) ROM_SYSTEM_BIOS(1, "120", "IBOS 1.20") ROMX_LOAD("ibos120.rom", 0x0000, 0x4000, CRC(52b1b8c4) SHA1(0f5b2a5bee23808b34eab2f027f7c1e77395c782), ROM_BIOS(1)) + ROM_SYSTEM_BIOS(2, "114", "IBOS 1.14") + ROMX_LOAD("ibos114.rom", 0x0000, 0x4000, CRC(d05ce376) SHA1(b2b7fc3258936296f83d720759caacba5378edec), ROM_BIOS(2)) ROM_END //------------------------------------------------- @@ -123,7 +125,7 @@ bbc_integrab_device::bbc_integrab_device(const machine_config &mconfig, const ch void bbc_integrab_device::device_start() { m_shadow = false; - m_ram = std::make_unique<uint8_t[]>(0x8000); + m_ram = make_unique_clear<uint8_t[]>(0x8000); m_nvram->set_base(m_ram.get(), 0x8000); /* move internal roms to board */ |