From 247939853301565efd348cad12b04fc957707bc2 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Fri, 6 May 2016 14:19:59 +1000 Subject: Super80: added the beginnings of a software list --- src/mame/drivers/osborne1.cpp | 2 +- src/mame/drivers/super80.cpp | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src/mame/drivers') diff --git a/src/mame/drivers/osborne1.cpp b/src/mame/drivers/osborne1.cpp index 2581c42b0a4..5f5ddafc15d 100644 --- a/src/mame/drivers/osborne1.cpp +++ b/src/mame/drivers/osborne1.cpp @@ -214,7 +214,7 @@ INPUT_PORTS_END static SLOT_INTERFACE_START( osborne1_floppies ) SLOT_INTERFACE("525sssd", FLOPPY_525_SSSD) // Siemens FDD 100-5, custom Osborne electronics - SLOT_INTERFACE("525ssdd", FLOPPY_525_SSDD) // MPI 52(?), custom Osborne electronics + SLOT_INTERFACE("525ssdd", FLOPPY_525_QD) // SSDD) // MPI 52(?), custom Osborne electronics SLOT_INTERFACE_END diff --git a/src/mame/drivers/super80.cpp b/src/mame/drivers/super80.cpp index 1d8e9bbcbfb..6327d8abee6 100644 --- a/src/mame/drivers/super80.cpp +++ b/src/mame/drivers/super80.cpp @@ -219,6 +219,7 @@ ToDo: #include "emu.h" #include "super80.lh" #include "includes/super80.h" +#include "softlist.h" #define MASTER_CLOCK (XTAL_12MHz) #define PIXEL_CLOCK (MASTER_CLOCK/2) @@ -733,10 +734,14 @@ static MACHINE_CONFIG_START( super80, super80_state ) /* cassette */ MCFG_CASSETTE_ADD( "cassette" ) MCFG_CASSETTE_DEFAULT_STATE(CASSETTE_PLAY | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED) + MCFG_CASSETTE_INTERFACE("super80_cass") MCFG_TIMER_DRIVER_ADD_PERIODIC("timer_p", super80_state, timer_p, attotime::from_hz(40000)) // cass read MCFG_TIMER_DRIVER_ADD_PERIODIC("timer_k", super80_state, timer_k, attotime::from_hz(300)) // keyb scan MCFG_TIMER_DRIVER_ADD_PERIODIC("timer_h", super80_state, timer_h, attotime::from_hz(100)) // half-speed + + // software list + MCFG_SOFTWARE_LIST_ADD("cass_list", "super80_cass") MACHINE_CONFIG_END static MACHINE_CONFIG_DERIVED( super80d, super80 ) -- cgit v1.2.3