Update Unbound Build Location

This commit is contained in:
Skeli 2019-06-14 12:01:03 -04:00
parent a14c4312f9
commit 6fec563aef
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
OUTPUT_ARCH(arm)
MEMORY {
rom : ORIGIN = (0x08000000 + 0x1800000), LENGTH = 32M
rom : ORIGIN = (0x08000000 + 0x133bed0), LENGTH = 32M
ewram : ORIGIN = 0x02000000, LENGTH = 4M - 4k
}

View File

@ -8,8 +8,8 @@ import binascii
import textwrap
import sys
OFFSET_TO_PUT = 0x1800000
SOURCE_ROM = "BPRE0.gba"
OFFSET_TO_PUT = 0x133bed0
SOURCE_ROM = "Pokemon Unbound.gba"
from datetime import datetime

View File

@ -8,8 +8,8 @@ import os
#Options go here.
############
ROM_NAME = "BPRE0.gba" #The name of your rom
OFFSET_TO_PUT = 0x1800000
ROM_NAME = "Pokemon Unbound.gba" #The name of your rom
OFFSET_TO_PUT = 0x133BED0
SEARCH_FREE_SPACE = False #Set to True if you want the script to search for free space;Set to False if you don't want to search for free space as you for example update the engine
#############