bbc_tube_zep100m: Added latest known MCP 2.02, and removed imperfect disk flags.

This commit is contained in:
Nigel Barnes 2020-09-07 14:21:22 +01:00
parent 75ab4efc4c
commit 01ed315f29
2 changed files with 4 additions and 6 deletions

View File

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

View File

@ -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: