Add some more vbaover entries
This commit is contained in:
parent
cc1a867328
commit
91d936b13f
|
@ -137,6 +137,12 @@ game_code = AAME
|
|||
vender_code = A4
|
||||
idle_loop_eliminate_target = 080003d2
|
||||
|
||||
# Defender of The Crown (U) [!]
|
||||
game_name = DOTC
|
||||
game_code = ADHE
|
||||
vender_code = 5N
|
||||
idle_loop_eliminate_target = 080007ec
|
||||
|
||||
# Disney's Aladdin (J) [!]
|
||||
game_name = ALADDIN
|
||||
game_code = AJ6J
|
||||
|
@ -724,11 +730,6 @@ vender_code = 01
|
|||
iwram_stack_optimize = no
|
||||
|
||||
|
||||
# Defender of The Crown (U)
|
||||
game_name = DOTC
|
||||
game_code = ADHE
|
||||
vender_code = 5N
|
||||
idle_loop_eliminate_target = 080007ec
|
||||
|
||||
|
||||
# F-Zero for Game Boy Advance (J)
|
||||
|
@ -864,7 +865,7 @@ game_code = BSLE
|
|||
vender_code = 41
|
||||
idle_loop_eliminate_target = 0807785e
|
||||
|
||||
# Final Fantasy IV Advance (U)
|
||||
# Final Fantasy IV Advance (U) [!]
|
||||
game_name = FF4ADVANCE
|
||||
game_code = BZ4E
|
||||
vender_code = 01
|
||||
|
|
34
gba_memory.c
34
gba_memory.c
|
@ -2439,6 +2439,23 @@ static const ini_t gbaover[256] = {
|
|||
0, /* translation_gate_target_2 */
|
||||
0, /* translation_gate_target_3 */
|
||||
},
|
||||
{
|
||||
"Defender Of The Crown (U)", /* rom title */
|
||||
"DOTC", /* gamepak_title */
|
||||
"ADHE", /* gamepak_code */
|
||||
"5N", /* gamepak_maker */
|
||||
0, /* flash_size */
|
||||
0, /* flash_device_id */
|
||||
0, /* save_type */
|
||||
0, /* rtc_enabled */
|
||||
0, /* mirroring_enabled */
|
||||
0, /* use_bios */
|
||||
0x80007ec, /* idle_loop_target_pc */
|
||||
0, /* iwram_stack_optimize */
|
||||
0, /* translation_gate_target_1 */
|
||||
0, /* translation_gate_target_2 */
|
||||
0, /* translation_gate_target_3 */
|
||||
},
|
||||
{
|
||||
"Disney's Aladdin (J)", /* rom title */
|
||||
"ALADDIN", /* gamepak_title */
|
||||
|
@ -2507,6 +2524,23 @@ static const ini_t gbaover[256] = {
|
|||
0, /* translation_gate_target_2 */
|
||||
0, /* translation_gate_target_3 */
|
||||
},
|
||||
{
|
||||
"Final Fantasy IV Advance (U)", /* rom title */
|
||||
"FF4ADVANCE", /* gamepak_title */
|
||||
"BZ4E", /* gamepak_code */
|
||||
"01", /* gamepak_maker */
|
||||
0, /* flash_size */
|
||||
0, /* flash_device_id */
|
||||
0, /* save_type */
|
||||
0, /* rtc_enabled */
|
||||
0, /* mirroring_enabled */
|
||||
0, /* use_bios */
|
||||
0x800fabe, /* idle_loop_target_pc */
|
||||
1, /* iwram_stack_optimize */
|
||||
0, /* translation_gate_target_1 */
|
||||
0, /* translation_gate_target_2 */
|
||||
0, /* translation_gate_target_3 */
|
||||
},
|
||||
{
|
||||
"Golden Sun: The Lost Age (U)",/* rom title */
|
||||
"GOLDEN_SUN_B", /* gamepak_title */
|
||||
|
|
Loading…
Reference in New Issue