New games added or promoted from NOT_WORKING status

---------------------------------------------------
Tobikose! Jumpman [tormod, R. Howard, K. Svensson, D. Beneke, Smitdogg, Luca Elia, The Dumping Union]
This commit is contained in:
Luca Elia 2010-03-21 18:41:50 +00:00
parent 2e303fbf13
commit 7e03d81ecd
3 changed files with 694 additions and 479 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2428,6 +2428,7 @@ V-V TP-027
DRIVER( theroes ) /* (c) 2001 Primetek Investments */
DRIVER( korokoro ) /* (c) 1999 Takumi */
DRIVER( crusherm ) /* (c) 1999 Takumi */
DRIVER( tjumpman ) /* (c) 1999 Namco */
/* Kyugo games */
/* Kyugo only made four games: Repulse, Flash Gal, SRD Mission and Air Wolf. */

View File

@ -543,8 +543,8 @@ static void get_sprite_info_cave( running_machine *machine )
{
cave_state *state = (cave_state *)machine->driver_data;
pen_t base_pal = 0;
const UINT8 *base_gfx = memory_region(machine, "gfx1");
int code_max = memory_region_length(machine, "gfx1") / (16*16);
const UINT8 *base_gfx = memory_region(machine, "sprites");
int code_max = memory_region_length(machine, "sprites") / (16*16);
UINT16 *source;
UINT16 *finish;
@ -672,8 +672,8 @@ static void get_sprite_info_donpachi( running_machine *machine )
{
cave_state *state = (cave_state *)machine->driver_data;
pen_t base_pal = 0;
const UINT8 *base_gfx = memory_region(machine, "gfx1");
int code_max = memory_region_length(machine, "gfx1") / (16*16);
const UINT8 *base_gfx = memory_region(machine, "sprites");
int code_max = memory_region_length(machine, "sprites") / (16*16);
UINT16 *source;
UINT16 *finish;