mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
left-over (nw)
This commit is contained in:
parent
f43e45a5cf
commit
f9defc71e4
@ -313,7 +313,7 @@ Notes:
|
||||
---- -x-- ---- ---- disable fg layer
|
||||
---- --x- ---- ---- disable sprite
|
||||
---- ---x ---- ---- disable tx layer
|
||||
---- ---- ---x ---- unknown, used by big fighter
|
||||
---- ---- 1--1 ---- unknown
|
||||
---- ---- ---- --x- coin counter 1
|
||||
---- ---- ---- ---x coin counter 0
|
||||
*/
|
||||
@ -332,13 +332,6 @@ WRITE16_MEMBER(armedf_state::terraf_io_w)
|
||||
flip_screen_set(m_vreg & 0x1000);
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(bigfghtr_state::bigfghtr_io_w)
|
||||
{
|
||||
//if(data & 0x10)
|
||||
// m_mcu->set_input_line(MCS51_INT0_LINE, HOLD_LINE);
|
||||
terraf_io_w(space,offset,data,mem_mask);
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(armedf_state::terrafjb_io_w)
|
||||
{
|
||||
if(data & 0x4000 && ((m_vreg & 0x4000) == 0)) //0 -> 1 transition
|
||||
@ -705,7 +698,7 @@ static ADDRESS_MAP_START( bigfghtr_map, AS_PROGRAM, 16, bigfghtr_state )
|
||||
AM_RANGE(0x08c002, 0x08c003) AM_READ_PORT("P2")
|
||||
AM_RANGE(0x08c004, 0x08c005) AM_READ_PORT("DSW0")
|
||||
AM_RANGE(0x08c006, 0x08c007) AM_READ_PORT("DSW1")
|
||||
AM_RANGE(0x08d000, 0x08d001) AM_WRITE(bigfghtr_io_w) //807b0
|
||||
AM_RANGE(0x08d000, 0x08d001) AM_WRITE(terraf_io_w) //807b0
|
||||
AM_RANGE(0x08d002, 0x08d003) AM_WRITE(armedf_bg_scrollx_w)
|
||||
AM_RANGE(0x08d004, 0x08d005) AM_WRITE(armedf_bg_scrolly_w)
|
||||
AM_RANGE(0x08d006, 0x08d007) AM_WRITE(armedf_fg_scrollx_w)
|
||||
|
@ -125,7 +125,6 @@ public:
|
||||
DECLARE_READ16_MEMBER(latch_r);
|
||||
DECLARE_WRITE8_MEMBER(main_sharedram_w);
|
||||
DECLARE_READ8_MEMBER(main_sharedram_r);
|
||||
DECLARE_WRITE16_MEMBER(bigfghtr_io_w);
|
||||
DECLARE_DRIVER_INIT(bigfghtr);
|
||||
DECLARE_MACHINE_START(bigfghtr);
|
||||
DECLARE_MACHINE_RESET(bigfghtr);
|
||||
|
Loading…
Reference in New Issue
Block a user