diff options
author | 2021-03-04 13:09:58 +0100 | |
---|---|---|
committer | 2021-03-04 13:10:10 +0100 | |
commit | d65c5159f16d942fccc3c0420ed166e5fe85b64f (patch) | |
tree | 164c93d492bde1c32534fde2b411027749bcca7c /src/mame/drivers/hh_pps41.cpp | |
parent | 2d692d7570ae0a3c8819adfa09ac3001171f74c8 (diff) |
pps41: add skeleton MM76-derived devices
Diffstat (limited to 'src/mame/drivers/hh_pps41.cpp')
-rw-r--r-- | src/mame/drivers/hh_pps41.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/hh_pps41.cpp b/src/mame/drivers/hh_pps41.cpp index 41bacaae698..6a5f9d0ba65 100644 --- a/src/mame/drivers/hh_pps41.cpp +++ b/src/mame/drivers/hh_pps41.cpp @@ -12,13 +12,14 @@ #include "emu.h" +#include "cpu/pps41/mm75.h" #include "cpu/pps41/mm76.h" #include "video/pwm.h" #include "sound/spkrdev.h" #include "speaker.h" // internal artwork -//#include "mastmind.lh" +#include "mastmind.lh" //#include "hh_pps41_test.lh" // common test-layout - use external artwork @@ -127,12 +128,12 @@ INPUT_PORTS_END void mastmind_state::mastmind(machine_config &config) { /* basic machine hardware */ - MM76(config, m_maincpu, 100000); // approximation + MM75(config, m_maincpu, 100000); // approximation /* video hardware */ PWM_DISPLAY(config, m_display).set_size(4, 8); m_display->set_segmask(3, 0xff); - //config.set_default_layout(layout_mastmind); + config.set_default_layout(layout_mastmind); /* no sound! */ } |