mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Added victnine_gfxctrl_r
This commit is contained in:
parent
05cc2aadd9
commit
eb52ade3c8
@ -33,6 +33,7 @@ WRITE8_HANDLER( flstory_palette_w );
|
||||
WRITE8_HANDLER( flstory_gfxctrl_w );
|
||||
READ8_HANDLER( flstory_scrlram_r );
|
||||
WRITE8_HANDLER( flstory_scrlram_w );
|
||||
READ8_HANDLER( victnine_gfxctrl_r );
|
||||
WRITE8_HANDLER( victnine_gfxctrl_w );
|
||||
|
||||
READ8_HANDLER( flstory_68705_portA_r );
|
||||
@ -186,7 +187,7 @@ static ADDRESS_MAP_START( victnine_map, ADDRESS_SPACE_PROGRAM, 8 )
|
||||
// AM_RANGE(0xda00, 0xda00) AM_WRITE(MWA8_RAM)
|
||||
AM_RANGE(0xdc00, 0xdc9f) AM_RAM AM_BASE(&spriteram) AM_SIZE(&spriteram_size)
|
||||
AM_RANGE(0xdca0, 0xdcbf) AM_RAM AM_WRITE(flstory_scrlram_w) AM_BASE(&flstory_scrlram)
|
||||
AM_RANGE(0xdce0, 0xdce0) AM_WRITE(victnine_gfxctrl_w)
|
||||
AM_RANGE(0xdce0, 0xdce0) AM_READWRITE(victnine_gfxctrl_r, victnine_gfxctrl_w)
|
||||
AM_RANGE(0xdce1, 0xdce1) AM_WRITENOP /* unknown */
|
||||
AM_RANGE(0xdd00, 0xdeff) AM_READWRITE(flstory_palette_r, flstory_palette_w)
|
||||
AM_RANGE(0xe000, 0xe7ff) AM_RAM AM_BASE(&victnine_workram) /* work RAM */
|
||||
|
@ -109,6 +109,11 @@ WRITE8_HANDLER( flstory_gfxctrl_w )
|
||||
|
||||
}
|
||||
|
||||
READ8_HANDLER( victnine_gfxctrl_r )
|
||||
{
|
||||
return gfxctrl;
|
||||
}
|
||||
|
||||
WRITE8_HANDLER( victnine_gfxctrl_w )
|
||||
{
|
||||
if (gfxctrl == data)
|
||||
|
Loading…
Reference in New Issue
Block a user