From 01ed315f291af6dc8acb5e1b84d25396a98819ea Mon Sep 17 00:00:00 2001 From: Nigel Barnes Date: Mon, 7 Sep 2020 14:21:22 +0100 Subject: bbc_tube_zep100m: Added latest known MCP 2.02, and removed imperfect disk flags. --- src/devices/bus/bbc/tube/tube_zep100.cpp | 6 ++++-- src/devices/bus/bbc/tube/tube_zep100.h | 4 ---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/devices/bus/bbc/tube/tube_zep100.cpp b/src/devices/bus/bbc/tube/tube_zep100.cpp index 6ed1328da3d..261f6357926 100644 --- a/src/devices/bus/bbc/tube/tube_zep100.cpp +++ b/src/devices/bus/bbc/tube/tube_zep100.cpp @@ -86,8 +86,10 @@ ROM_END ROM_START( tube_zep100m ) ROM_REGION(0x4000, "exp_rom", 0) - ROM_SYSTEM_BIOS(0, "mcp122", "MCP v1.22 (ABM)") // 1986 - ROMX_LOAD("mcp122abm.rom", 0x0000, 0x4000, CRC(596be795) SHA1(35843ace281494ab40463a69a263244d0cb0ecd6), ROM_BIOS(0)) + ROM_SYSTEM_BIOS(0, "mcp202", "MCP v2.02 (CBM)") // 1987 + ROMX_LOAD("mcp202cbm.rom", 0x0000, 0x4000, CRC(237bd2d0) SHA1(064203ce44c764b189465fa93b71bcc6f0c66e3b), ROM_BIOS(0)) + ROM_SYSTEM_BIOS(1, "mcp122", "MCP v1.22 (ABM)") // 1986 + ROMX_LOAD("mcp122abm.rom", 0x0000, 0x4000, CRC(596be795) SHA1(35843ace281494ab40463a69a263244d0cb0ecd6), ROM_BIOS(1)) ROM_REGION(0x2000, "rom", 0) ROM_LOAD("cccp102.rom", 0x0000, 0x2000, CRC(2eb40a21) SHA1(e6ee738e5f2f8556002b79d18caa8ef21f14e08d)) diff --git a/src/devices/bus/bbc/tube/tube_zep100.h b/src/devices/bus/bbc/tube/tube_zep100.h index 483abb91a61..a4f0dd58d92 100644 --- a/src/devices/bus/bbc/tube/tube_zep100.h +++ b/src/devices/bus/bbc/tube/tube_zep100.h @@ -82,8 +82,6 @@ protected: class bbc_tube_zep100w_device : public bbc_tube_zep100_device { public: - static constexpr feature_type imperfect_features() { return feature::DISK; } - bbc_tube_zep100w_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); protected: @@ -93,8 +91,6 @@ protected: class bbc_tube_zep100m_device : public bbc_tube_zep100_device { public: - static constexpr feature_type imperfect_features() { return feature::DISK; } - bbc_tube_zep100m_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); protected: -- cgit v1.2.3