summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/swtpc/swtpc09.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/swtpc/swtpc09.cpp')
-rw-r--r--src/mame/swtpc/swtpc09.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/swtpc/swtpc09.cpp b/src/mame/swtpc/swtpc09.cpp
index 1813c81f522..5817b97940e 100644
--- a/src/mame/swtpc/swtpc09.cpp
+++ b/src/mame/swtpc/swtpc09.cpp
@@ -497,7 +497,7 @@ void swtpc09_state::swtpc09_base(machine_config &config)
io7.firq_cb().set("mainfirq", FUNC(input_merger_device::in_w<7>));
// IO8 at 0xe080 is used internally by the MPID board PIA.
- PIA6821(config, m_pia, 0);
+ PIA6821(config, m_pia);
m_pia->readpa_handler().set(FUNC(swtpc09_state::pia0_a_r));
m_pia->ca1_w(0);
m_pia->irqa_handler().set(FUNC(swtpc09_state::pia0_irq_a));
@@ -665,7 +665,10 @@ void swtpc09_state::swtpc09o(machine_config &config)
/* ROM definition */
ROM_START( swtpc09 )
ROM_REGION( 0x100000, "bankdev", 0 )
- ROM_LOAD ( "sbugh1-8.bin", 0xff800, 0x0800, CRC(10a045a7) SHA1(de547b77653951c7424a069520d52c5b0432e98d) )
+ ROM_SYSTEM_BIOS(0, "sbug19", "S-BUG 1.9")
+ ROMX_LOAD("sbugh1-9.bin", 0xff800, 0x0800, CRC(4a23c2d0) SHA1(da52ce76ac8b848d6c9580bd5ada4864eeb21e58), ROM_BIOS(0))
+ ROM_SYSTEM_BIOS(1, "sbug18", "S-BUG 1.8")
+ ROMX_LOAD("sbugh1-8.bin", 0xff800, 0x0800, CRC(10a045a7) SHA1(de547b77653951c7424a069520d52c5b0432e98d), ROM_BIOS(1))
ROM_END
ROM_START( swtpc09i )