From 979966c0ef6529610fbe91647783aeddb97c6021 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Fri, 22 Dec 2017 14:28:10 +0100 Subject: [PATCH] new not working software list additions ------------------------------------------------- picno.xml: Montage [TeamEurope, SSJ] --- hash/picno.xml | 42 ++++++++++++++++++++++++++++++++++++++ src/mame/drivers/picno.cpp | 9 ++++++++ 2 files changed, 51 insertions(+) create mode 100644 hash/picno.xml diff --git a/hash/picno.xml b/hash/picno.xml new file mode 100644 index 00000000000..3a7c230ae81 --- /dev/null +++ b/hash/picno.xml @@ -0,0 +1,42 @@ + + + + + + + + Montage + 1992 + Konami + + + + + + + + + + + diff --git a/src/mame/drivers/picno.cpp b/src/mame/drivers/picno.cpp index 08b088b9c04..de7a9987545 100644 --- a/src/mame/drivers/picno.cpp +++ b/src/mame/drivers/picno.cpp @@ -20,6 +20,10 @@ Can't do anything until the internal ROM is dumped. #include "emu.h" #include "cpu/h8/h83002.h" + +#include "bus/generic/slot.h" +#include "bus/generic/carts.h" + //#include "sound/multipcm.h" //#include "screen.h" //#include "speaker.h" @@ -59,6 +63,11 @@ static MACHINE_CONFIG_START( picno ) //MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") // no speaker in the unit, but there's a couple of sockets on the back //MCFG_SOUND_ROUTE(0, "lspeaker", 1.0) //MCFG_SOUND_ROUTE(1, "rspeaker", 1.0) + + MCFG_GENERIC_CARTSLOT_ADD("cartslot", generic_linear_slot, "picno_cart") + MCFG_GENERIC_MANDATORY + + MCFG_SOFTWARE_LIST_ADD("cart_list", "picno") MACHINE_CONFIG_END ROM_START( picno )