diff --git a/hash/super80_cass.xml b/hash/super80_cass.xml new file mode 100644 index 00000000000..2e6e061263f --- /dev/null +++ b/hash/super80_cass.xml @@ -0,0 +1,74 @@ + + + + + + + Horse Race + 1981 + Dick Smith Electronics + + + + + + + + + + + Dungeon Dilemma + 1981 + Dick Smith Electronics + + + + + + + + + + + Tape Basic + 1981 + Dick Smith Electronics + + + + + + + + + + Editor Assembler + 1981 + Dick Smith Electronics + + + + + + + + + + Debugger + 1981 + Dick Smith Electronics + + + + + + + + + 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 )