mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
game notes, not worth
This commit is contained in:
parent
d19cd290ef
commit
9abebbc9aa
@ -166,11 +166,17 @@ static WRITE16_HANDLER( m107_sound_reset_w )
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
static READ16_HANDLER( test_r )
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
static ADDRESS_MAP_START( main_map, ADDRESS_SPACE_PROGRAM, 16 )
|
||||
AM_RANGE(0x00000, 0x9ffff) AM_ROM
|
||||
AM_RANGE(0xa0000, 0xbffff) AM_ROMBANK("bank1")
|
||||
AM_RANGE(0xd0000, 0xdffff) AM_RAM_WRITE(m107_vram_w) AM_BASE(&m107_vram_data)
|
||||
AM_RANGE(0xe0000, 0xeffff) AM_RAM /* System ram */
|
||||
AM_RANGE(0xf0000, 0xf0001) AM_READ(test_r)
|
||||
AM_RANGE(0xf8000, 0xf8fff) AM_RAM AM_BASE_GENERIC(spriteram)
|
||||
AM_RANGE(0xf9000, 0xf9fff) AM_RAM_WRITE(paletteram16_xBBBBBGGGGGRRRRR_word_w) AM_BASE_GENERIC(paletteram)
|
||||
AM_RANGE(0xffff0, 0xfffff) AM_ROM
|
||||
@ -676,6 +682,7 @@ static DRIVER_INIT( wpksoc )
|
||||
/***************************************************************************/
|
||||
|
||||
GAME( 1993, firebarr, 0, firebarr, firebarr, firebarr, ROT270, "Irem", "Fire Barrel (Japan)", GAME_IMPERFECT_GRAPHICS )
|
||||
GAME( 1994, dsoccr94, 0, dsoccr94, dsoccr94, dsoccr94, ROT0, "Irem (Data East Corporation license)", "Dream Soccer '94", 0 )
|
||||
// Air Assault : World version of Fire Barrel, seen on location at the London Trocadero
|
||||
GAME( 1994, dsoccr94, 0, dsoccr94, dsoccr94, dsoccr94, ROT0, "Irem (Data East Corporation license)", "Dream Soccer '94 (M107 Hardware)", 0 )
|
||||
GAME( 1995, wpksoc, 0, wpksoc, wpksoc, wpksoc, ROT0, "Jaleco", "World PK Soccer", GAME_NOT_WORKING | GAME_IMPERFECT_GRAPHICS )
|
||||
GAME( 1994, kftgoal, wpksoc, wpksoc, wpksoc, wpksoc, ROT0, "Jaleco", "Kick for the Goal", GAME_NOT_WORKING | GAME_IMPERFECT_GRAPHICS )
|
||||
|
Loading…
Reference in New Issue
Block a user