diff options
author | 2019-07-11 02:07:24 +1000 | |
---|---|---|
committer | 2019-07-11 02:07:24 +1000 | |
commit | 704355279e6b62fa93d80e948073f90eba0032f2 (patch) | |
tree | e5505a6f565e38e40d3b65fab0234378de27edd9 | |
parent | 892b4c402afb31de641289a873d15aac1000ac08 (diff) |
*added sinvrdzm
-rw-r--r-- | docs/release/docs/hbnew.txt | 11 | ||||
-rw-r--r-- | scripts/target/hbmame/hbmame.lua | 2 | ||||
-rw-r--r-- | src/hbmame/drivers/8080bw.cpp | 21 | ||||
-rw-r--r-- | src/hbmame/hbmame.lst | 1 | ||||
-rw-r--r-- | src/mame/drivers/8080bw.cpp | 4 |
5 files changed, 36 insertions, 3 deletions
diff --git a/docs/release/docs/hbnew.txt b/docs/release/docs/hbnew.txt index 4b5474d6003..34d0b4cf79c 100644 --- a/docs/release/docs/hbnew.txt +++ b/docs/release/docs/hbnew.txt @@ -2,6 +2,17 @@ ==================== +2019-xx-xx 0.2xx +---------------- + + +New Games +--------------------------------- +- [sinvrdzm] Super Invaders (Zenitone-Microsec Ltd)(branded Ruffler & Deith) [from NES4LIFE] + + + + 2019-06-26 0.211 ---------------- diff --git a/scripts/target/hbmame/hbmame.lua b/scripts/target/hbmame/hbmame.lua index 41375ccf0cd..d5ae106610a 100644 --- a/scripts/target/hbmame/hbmame.lua +++ b/scripts/target/hbmame/hbmame.lua @@ -592,7 +592,7 @@ files { createHBMAMEProjects(_target, _subtarget, "midway") files { - MAME_DIR .. "src/mame/drivers/8080bw.cpp", + MAME_DIR .. "src/hbmame/drivers/8080bw.cpp", MAME_DIR .. "src/mame/audio/8080bw.cpp", MAME_DIR .. "src/mame/video/8080bw.cpp", MAME_DIR .. "src/mame/drivers/mw8080bw.cpp", diff --git a/src/hbmame/drivers/8080bw.cpp b/src/hbmame/drivers/8080bw.cpp new file mode 100644 index 00000000000..77077b19123 --- /dev/null +++ b/src/hbmame/drivers/8080bw.cpp @@ -0,0 +1,21 @@ +// license:BSD-3-Clause +// copyright-holders:Robbbert +#include "../mame/drivers/8080bw.cpp" + + + +ROM_START( sinvrdzm ) + ROM_REGION( 0x10000, "maincpu", 0 ) + ROM_LOAD( "sinvrdzm.1", 0x0000, 0x0400, CRC(f625f153) SHA1(2a19f7b4f5687e89eebf02cfdf3d1d23624879fb) ) + ROM_LOAD( "sinvrdzm.2", 0x0400, 0x0400, CRC(9d628753) SHA1(2b4468f64246da9263a384f2a940829e5a8cebde) ) + ROM_LOAD( "sinvrdzm.3", 0x0800, 0x0400, CRC(db342868) SHA1(f9ab63b3e89be9f22e453b59bf00732b7e265ee3) ) + ROM_LOAD( "sinvrdzm.4", 0x0c00, 0x0400, CRC(b635e8ac) SHA1(88a58e6ec550ec8f24443716b38f3d0aab57fc85) ) + ROM_LOAD( "sinvrdzm.5", 0x1000, 0x0400, CRC(014e761f) SHA1(1669c8f86e9d5522b009a517a75792b65902cee2) ) + ROM_LOAD( "sinvrdzm.6", 0x1400, 0x0400, CRC(599c6b78) SHA1(79e2d3a2d4e67bc13fea0d13301fffd92d5c11da) ) + ROM_LOAD( "sinvrdzm.7", 0x1800, 0x0400, CRC(0e8a75df) SHA1(e03c4a4d5aa6b7d97cc12f3bd3df84a15df4ad35) ) + ROM_LOAD( "sinvrdzm.8", 0x1c00, 0x0400, CRC(11392151) SHA1(ddeaf6678c898416e734d924f872496095ff294d) ) +ROM_END + +GAMEL(1978, sinvrdzm, invaders, invaders, superinv, mw8080bw_state, empty_init, ROT270, "Zenitone-Microsec Ltd", "Super Invaders (Ruffler & Deith)", MACHINE_SUPPORTS_SAVE, layout_invaders ) + + diff --git a/src/hbmame/hbmame.lst b/src/hbmame/hbmame.lst index eb9d22fb667..6502a0f222b 100644 --- a/src/hbmame/hbmame.lst +++ b/src/hbmame/hbmame.lst @@ -36,6 +36,7 @@ invmultis1a invmultis2a invmultis3a invmultit3d +sinvrdzm @source:arkanoid.cpp arkanoid //parent diff --git a/src/mame/drivers/8080bw.cpp b/src/mame/drivers/8080bw.cpp index 0deadfa0987..5d799a9a5a9 100644 --- a/src/mame/drivers/8080bw.cpp +++ b/src/mame/drivers/8080bw.cpp @@ -1309,7 +1309,7 @@ static INPUT_PORTS_START( invasion ) PORT_DIPSETTING( 0x80, DEF_STR( On ) ) INPUT_PORTS_END - +#endif /*******************************************************/ /* */ @@ -1332,7 +1332,7 @@ static INPUT_PORTS_START( superinv ) PORT_DIPUNKNOWN_DIPLOC( 0x80, 0x00, "SW1:8" ) INPUT_PORTS_END - +#if 0 /*******************************************************/ /* */ |