summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robert <Robbbert@users.noreply.github.com>2015-01-02 08:15:50 +1100
committer Robert <Robbbert@users.noreply.github.com>2015-01-02 08:15:50 +1100
commit80d5681e9164da8159bf497bae78cffe5133dbed (patch)
treef18eea139facfd0dc3c47547ee8dc82598e05a1d
parentfde220f4a7e955343c3b25a562d6884f94c63bdc (diff)
(MESS) fixed crash with >mess super6 cpm22 (nw)
-rw-r--r--src/mess/drivers/super6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/super6.c b/src/mess/drivers/super6.c
index 8a13fa723f2..43e4fd3063d 100644
--- a/src/mess/drivers/super6.c
+++ b/src/mess/drivers/super6.c
@@ -367,7 +367,7 @@ READ8_MEMBER(super6_state::memory_read_byte)
WRITE8_MEMBER(super6_state::memory_write_byte)
{
address_space& prog_space = m_maincpu->space(AS_PROGRAM);
- return prog_space.write_byte(offset, data);
+ prog_space.write_byte(offset, data);
}
READ8_MEMBER(super6_state::io_read_byte)
@@ -379,7 +379,7 @@ READ8_MEMBER(super6_state::io_read_byte)
WRITE8_MEMBER(super6_state::io_write_byte)
{
address_space& prog_space = m_maincpu->space(AS_IO);
- return prog_space.write_byte(offset, data);
+ prog_space.write_byte(offset, data);
}
//-------------------------------------------------
@@ -400,7 +400,7 @@ WRITE_LINE_MEMBER( super6_state::fr_w )
//-------------------------------------------------
static SLOT_INTERFACE_START( super6_floppies )
- SLOT_INTERFACE( "525dd", FLOPPY_525_DD )
+ SLOT_INTERFACE( "525dd", FLOPPY_525_QD )
SLOT_INTERFACE_END
WRITE_LINE_MEMBER( super6_state::fdc_intrq_w )