mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
midas.c: 0x9c000e is a video register, not LED related (nw)
This commit is contained in:
parent
0c70b32092
commit
311a451600
@ -76,7 +76,6 @@ public:
|
||||
DECLARE_READ16_MEMBER(hammer_sensor_r);
|
||||
DECLARE_WRITE16_MEMBER(hammer_coin_w);
|
||||
DECLARE_WRITE16_MEMBER(hammer_motor_w);
|
||||
DECLARE_WRITE16_MEMBER(hammer_led_w);
|
||||
DECLARE_WRITE16_MEMBER(midas_eeprom_w);
|
||||
DECLARE_WRITE16_MEMBER(midas_zoomtable_w);
|
||||
DECLARE_DRIVER_INIT(livequiz);
|
||||
@ -197,7 +196,8 @@ static ADDRESS_MAP_START( livequiz_map, AS_PROGRAM, 16, midas_state )
|
||||
|
||||
AM_RANGE(0x9a0000, 0x9a0001) AM_WRITE(midas_eeprom_w )
|
||||
|
||||
AM_RANGE(0x9c0000, 0x9c0005) AM_WRITE(midas_gfxregs_w ) AM_SHARE("gfxregs")
|
||||
AM_RANGE(0x9c0000, 0x9c0005) AM_WRITE(midas_gfxregs_w )
|
||||
AM_RANGE(0x9c000c, 0x9c000d) AM_WRITENOP // IRQ Ack, temporary
|
||||
|
||||
AM_RANGE(0xa00000, 0xa3ffff) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette")
|
||||
AM_RANGE(0xa40000, 0xa7ffff) AM_RAM
|
||||
@ -255,13 +255,6 @@ WRITE16_MEMBER(midas_state::hammer_motor_w)
|
||||
#endif
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(midas_state::hammer_led_w)
|
||||
{
|
||||
#ifdef MAME_DEBUG
|
||||
// popmessage("led %04X", data);
|
||||
#endif
|
||||
}
|
||||
|
||||
static ADDRESS_MAP_START( hammer_map, AS_PROGRAM, 16, midas_state )
|
||||
AM_RANGE(0x000000, 0x1fffff) AM_ROM
|
||||
|
||||
@ -271,12 +264,11 @@ static ADDRESS_MAP_START( hammer_map, AS_PROGRAM, 16, midas_state )
|
||||
AM_RANGE(0x980000, 0x980001) AM_READ_PORT("TILT")
|
||||
|
||||
AM_RANGE(0x980000, 0x980001) AM_WRITE(hammer_coin_w )
|
||||
AM_RANGE(0x9c000c, 0x9c000d) AM_WRITENOP // IRQ Ack
|
||||
AM_RANGE(0x9c000e, 0x9c000f) AM_WRITE(hammer_led_w )
|
||||
|
||||
AM_RANGE(0x9a0000, 0x9a0001) AM_WRITE(midas_eeprom_w )
|
||||
|
||||
AM_RANGE(0x9c0000, 0x9c0005) AM_WRITE(midas_gfxregs_w )
|
||||
AM_RANGE(0x9c000c, 0x9c000d) AM_WRITENOP // IRQ Ack, temporary
|
||||
|
||||
AM_RANGE(0xa00000, 0xa3ffff) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette")
|
||||
AM_RANGE(0xa40000, 0xa7ffff) AM_RAM
|
||||
|
Loading…
Reference in New Issue
Block a user