summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Roberto Fresca <robbie@robertofresca.com>2019-09-04 03:59:22 +0200
committer Roberto Fresca <robbie@robertofresca.com>2019-09-04 03:59:22 +0200
commit19c724ab17bc7efe05490c3c487b23a048076530 (patch)
tree8ec87b465f2861897d32be6b164944c835880422
parent0ab071fe26c9d8a293f15203e1edae7e80e59810 (diff)
Draw Poker (Joker Poker V.01) improvements: [Roberto Fresca]
Created its own machine_config. Fixed the visible area.
-rw-r--r--src/mame/drivers/norautp.cpp17
-rw-r--r--src/mame/includes/norautp.h1
2 files changed, 15 insertions, 3 deletions
diff --git a/src/mame/drivers/norautp.cpp b/src/mame/drivers/norautp.cpp
index cd441c8c8be..140039ab67d 100644
--- a/src/mame/drivers/norautp.cpp
+++ b/src/mame/drivers/norautp.cpp
@@ -32,7 +32,7 @@
* Kimble Double HI-LO (z80 version), 198?, Kimble Ireland.
* PMA Poker, 198?, PMA.
* Poker / Black Jack (Model 7521), 198?, M. Kramer Manufacturing.
- * Draw Poker (Joker Poker ver.01), 1984, Coinmaster.
+ * Draw Poker (Joker Poker V.01), 1984, Coinmaster.
-- 8080 based --
@@ -1451,6 +1451,15 @@ void norautp_state::cgidjp(machine_config &config)
m_maincpu->set_vblank_int("screen", FUNC(norautp_state::irq0_line_hold));
}
+void norautp_state::cdrawpkr(machine_config &config)
+{
+ noraut_base(config);
+
+ /* basic machine hardware */
+ m_maincpu->set_vblank_int("screen", FUNC(norautp_state::irq0_line_hold));
+ m_screen->set_visarea(5*8, 61*8-1, (0*16) + 8, 16*16-1);
+}
+
/********** 8080 based **********/
void norautp_state::dphl(machine_config &config)
@@ -3575,7 +3584,7 @@ ROM_END
Draw Poker
Coinmaster.
- Based on Joker Poker.
+ Based on Joker Poker V.01.
Noraut Z80 based HW.
@@ -3585,6 +3594,8 @@ ROM_END
PPI #1: offset 0xB0-0xB3 config = 0x92
PPI #2: offset 0xD0-0xD3 config = 0xC0
+ The game needs approx 20 seconds to boot the game.
+
*/
ROM_START( cdrawpkr )
@@ -3758,7 +3769,7 @@ GAME( 198?, kimblz80, 0, kimble, norautp, norautp_state, empty_init, R
GAME( 1983, pma, 0, nortest1, norautp, norautp_state, empty_init, ROT0, "PMA", "PMA Poker", MACHINE_NOT_WORKING )
GAMEL( 198?, bjpoker, 0, norautxp, norautrh, norautp_state, empty_init, ROT0, "M.Kramer Manufacturing.", "Poker / Black Jack (Model 7521)", MACHINE_NOT_WORKING, layout_noraut12 )
GAME( 19??, newhilop, 0, newhilop, norautp, norautp_state, empty_init, ROT0, "Song Won?", "New Hi-Low Poker", MACHINE_NOT_WORKING )
-GAMEL( 1984, cdrawpkr, 0, norautp, cdrawpkr, norautp_state, empty_init, ROT0, "Coinmaster", "Draw Poker (Joker Poker ver.01)", 0, layout_noraut11 )
+GAMEL( 1984, cdrawpkr, 0, cdrawpkr, cdrawpkr, norautp_state, empty_init, ROT0, "Coinmaster", "Draw Poker (Joker Poker V.01)", 0, layout_noraut11 )
/************************************* 8080 sets **************************************/
diff --git a/src/mame/includes/norautp.h b/src/mame/includes/norautp.h
index 8c1d1987bb7..3d32740b0ea 100644
--- a/src/mame/includes/norautp.h
+++ b/src/mame/includes/norautp.h
@@ -45,6 +45,7 @@ public:
void drhl(machine_config &config);
void norautxp(machine_config &config);
void cgidjp(machine_config &config);
+ void cdrawpkr(machine_config &config);
void init_ssa();
void init_enc();