mirror of
https://github.com/holub/mame
synced 2025-04-28 11:11:48 +03:00
porter : fixed graphics [Robbbert]
This commit is contained in:
parent
a6eea509cc
commit
201adaf2eb
@ -447,6 +447,7 @@ static ADDRESS_MAP_START( mooncrst_map, AS_PROGRAM, 8, galaxold_state )
|
||||
AM_RANGE(0x9860, 0x987f) AM_RAM AM_SHARE("bulletsram")
|
||||
AM_RANGE(0x9880, 0x98ff) AM_RAM
|
||||
AM_RANGE(0xa000, 0xa000) AM_READ_PORT("IN0")
|
||||
AM_RANGE(0xa002, 0xa002) AM_WRITE(galaxold_gfxbank_w)
|
||||
AM_RANGE(0xa003, 0xa003) AM_WRITE(galaxold_coin_counter_w)
|
||||
AM_RANGE(0xa004, 0xa007) AM_DEVWRITE_LEGACY(GAL_AUDIO, galaxian_lfo_freq_w)
|
||||
AM_RANGE(0xa800, 0xa800) AM_READ_PORT("IN1")
|
||||
@ -792,6 +793,7 @@ ADDRESS_MAP_END
|
||||
|
||||
/* the nmi line seems to be inverted on the cpu plugin board */
|
||||
READ8_MEMBER(galaxold_state::ttl7474_trampoline){ device_t *device = machine().device("7474_9m_1"); return downcast<ttl7474_device *>(device)->output_comp_r(); }
|
||||
|
||||
static ADDRESS_MAP_START( hunchbkg_io, AS_IO, 8, galaxold_state )
|
||||
AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READNOP // not used
|
||||
AM_RANGE(S2650_SENSE_PORT, S2650_SENSE_PORT) AM_READ(ttl7474_trampoline)
|
||||
@ -2011,9 +2013,6 @@ static GFXDECODE_START( rockclim )
|
||||
GFXDECODE_ENTRY( "gfx2", 0x0000, rockclim_charlayout, 0, 1 )
|
||||
GFXDECODE_END
|
||||
|
||||
|
||||
|
||||
|
||||
static GFXDECODE_START( galaxian )
|
||||
GFXDECODE_ENTRY( "gfx1", 0x0000, galaxold_charlayout, 0, 8 )
|
||||
GFXDECODE_ENTRY( "gfx1", 0x0000, galaxold_spritelayout, 0, 8 )
|
||||
@ -2115,6 +2114,12 @@ static MACHINE_CONFIG_DERIVED( mooncrst, galaxian )
|
||||
MCFG_VIDEO_START_OVERRIDE(galaxold_state,mooncrst)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
static MACHINE_CONFIG_DERIVED( porter, mooncrst )
|
||||
|
||||
/* video hardware */
|
||||
MCFG_VIDEO_START_OVERRIDE(galaxold_state, pisces)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
static MACHINE_CONFIG_DERIVED( scramblb, galaxian )
|
||||
|
||||
@ -3070,7 +3075,7 @@ GAME( 1981, 4in1, 0, 4in1, 4in1, galaxold_state, 4in1, RO
|
||||
GAME( 1982, bagmanmc, bagman, bagmanmc, bagmanmc, driver_device, 0, ROT90, "Valadon Automation", "Bagman (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_COLORS | GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
GAME( 1984, bagmanm2, bagman, bagmanmc, bagmanmc, driver_device, 0, ROT90, "Valadon Automation / GIB", "Bagman (Moon Cresta hardware)", GAME_IMPERFECT_COLORS | GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
GAME( 1982, dkongjrm, dkongjr, dkongjrm, dkongjrm, driver_device, 0, ROT90, "bootleg", "Donkey Kong Jr. (bootleg on Moon Cresta hardware)", GAME_WRONG_COLORS | GAME_IMPERFECT_SOUND | GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
GAME( 1982, porter, dockman, mooncrst, porter, driver_device, 0, ROT90, "bootleg", "Port Man (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_GRAPHICS | GAME_NO_COCKTAIL ) // missing GFX bank switch!
|
||||
GAME( 1982, porter, dockman, porter, porter, driver_device, 0, ROT90, "bootleg", "Port Man (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_COLORS | GAME_NO_COCKTAIL )
|
||||
GAME( 1982, tazzmang, tazmania, tazzmang, tazzmang, driver_device, 0, ROT90, "bootleg", "Tazz-Mania (bootleg on Galaxian hardware)", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
GAME( 1983, bongo, 0, bongo, bongo, driver_device, 0, ROT90, "Jetsoft", "Bongo", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
GAME( 1983, ozon1, 0, ozon1, ozon1, driver_device, 0, ROT90, "Proma", "Ozon I", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
|
||||
|
Loading…
Reference in New Issue
Block a user