From 73a097d10ea22199b706e97ca354a684e7a5deac Mon Sep 17 00:00:00 2001 From: arbee Date: Sun, 26 Mar 2023 11:55:33 -0400 Subject: hpblp: ROMs located, re-enable the device. [R. Belmont] --- src/devices/bus/isa/hpblp.cpp | 7 ++----- src/devices/bus/isa/hpblp.h | 3 --- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/devices/bus/isa/hpblp.cpp b/src/devices/bus/isa/hpblp.cpp index f2261d786d1..1caa07c9b08 100644 --- a/src/devices/bus/isa/hpblp.cpp +++ b/src/devices/bus/isa/hpblp.cpp @@ -523,9 +523,6 @@ void isa8_hpblp_device::device_reset() } m_isa->install_device(port, port + 7, *this, &isa8_hpblp_device::isamap); m_installed = true; - - // halt until ROMs are found - m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE); } m_ack_buscycle = false; @@ -541,8 +538,8 @@ void isa8_hpblp_device::device_reset() ROM_START(hpblp) ROM_REGION(0x20000, BLP_TAG, 0) -// ROM_LOAD16_BYTE( "1818-4576.bin", 0x000000, 0x008000, CRC(8beb6bdb) SHA1(9b620c577aea54841608d0d46f7e8077eef607c6)) -// ROM_LOAD16_BYTE( "1818-4577.bin", 0x000001, 0x008000, CRC(e8a5c071) SHA1(9e13c0ef2aed6565c33795780b7102f2647cf2a0)) + ROM_LOAD16_BYTE( "1818-4576.bin", 0x000000, 0x008000, CRC(8beb6bdb) SHA1(9b620c577aea54841608d0d46f7e8077eef607c6)) + ROM_LOAD16_BYTE( "1818-4577.bin", 0x000001, 0x008000, CRC(e8a5c071) SHA1(9e13c0ef2aed6565c33795780b7102f2647cf2a0)) ROM_END const tiny_rom_entry *isa8_hpblp_device::device_rom_region() const diff --git a/src/devices/bus/isa/hpblp.h b/src/devices/bus/isa/hpblp.h index 3d5f720ddbf..f5166ac550e 100644 --- a/src/devices/bus/isa/hpblp.h +++ b/src/devices/bus/isa/hpblp.h @@ -19,9 +19,6 @@ class isa8_hpblp_device : public: isa8_hpblp_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - // indicate not working because ROMs don't exist - static constexpr feature_type imperfect_features() { return feature::ALL; } - protected: virtual ioport_constructor device_input_ports() const override; virtual void device_start() override; -- cgit v1.2.3