Previous 199869 Revisions Next

r36490 Friday 20th March, 2015 at 10:19:14 UTC by Vasantha Crabb
Hook up and document lamps for unkch1
[src/mame/drivers]goldstar.c
[src/mame/includes]goldstar.h

trunk/src/mame/drivers/goldstar.c
r245001r245002
209209  ---x ----     info        info                            small           small/end
210210  --x- ----     start       start               deal        start           start           start
211211  -x-- ----                                     hold
212  x--- ----
212213
214  7654 3210     unkch1
215  ---- ---x     bet-a/stop 2
216  ---- --x-     start/stop all
217  ---- -x--     info/small/stop 3
218  ---- x---     big
219  ---x ----     bet-b/d-up
220  --x- ----     take/stop 1
221  -x-- ----
222  x--- ----     always on
223
213224  all cm/cmaster use the same scheme
214225  tonypok uses lamps to indicate current button functions rather than active buttons
215226  skill98 is like schery97 but doesn't activate bit 0 for stop
r245001r245002
976987      popmessage("coin counters: %02x", data);
977988}
978989
979WRITE8_MEMBER(unkch_state::unkcm_0x02_w)
980{
981   //popmessage("unkcm_0x02_w %02x", data);
982}
983
984990WRITE8_MEMBER(unkch_state::unkcm_0x03_w)
985991{
986992   //popmessage("unkcm_0x03_w %02x", data);
r245001r245002
9951001   ADDRESS_MAP_GLOBAL_MASK(0xff)
9961002
9971003   AM_RANGE(0x01, 0x01) AM_WRITE(coincount_w)
998   AM_RANGE(0x02, 0x02) AM_WRITE(unkcm_0x02_w)
1004   AM_RANGE(0x02, 0x02) AM_WRITE(p1_lamps_w)
9991005   AM_RANGE(0x03, 0x03) AM_WRITE(unkcm_0x03_w)
10001006
10011007   AM_RANGE(0x08, 0x08) AM_READ_PORT("IN0")
trunk/src/mame/includes/goldstar.h
r245001r245002
255255   }
256256
257257   DECLARE_WRITE8_MEMBER(coincount_w);
258   DECLARE_WRITE8_MEMBER(unkcm_0x02_w);
259258   DECLARE_WRITE8_MEMBER(unkcm_0x03_w);
260259
261260   DECLARE_WRITE8_MEMBER(reel1_attrram_w);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team