From fa191770b7059c8420164faf68da84e585a380e1 Mon Sep 17 00:00:00 2001 From: Skeli Date: Tue, 28 Jan 2020 23:06:37 +0200 Subject: [PATCH] New Unbound Insertion Loc --- linker.ld | 2 +- scripts/insert.py | 2 +- scripts/make.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/linker.ld b/linker.ld index d168d34..99a687c 100644 --- a/linker.ld +++ b/linker.ld @@ -1,7 +1,7 @@ OUTPUT_ARCH(arm) MEMORY { - rom : ORIGIN = (0x08000000 + 0x17b1480), LENGTH = 32M + rom : ORIGIN = (0x08000000 + 0x17b4eb0), LENGTH = 32M ewram : ORIGIN = 0x02000000, LENGTH = 4M - 4k } diff --git a/scripts/insert.py b/scripts/insert.py index 795ea0a..50adb3a 100644 --- a/scripts/insert.py +++ b/scripts/insert.py @@ -7,7 +7,7 @@ import sys from datetime import datetime import _io -OFFSET_TO_PUT = 0x17b1480 +OFFSET_TO_PUT = 0x17b4eb0 SOURCE_ROM = "Pokemon Unbound.gba" ROM_NAME = "test.gba" diff --git a/scripts/make.py b/scripts/make.py index 224e675..7d0fa8a 100644 --- a/scripts/make.py +++ b/scripts/make.py @@ -9,7 +9,7 @@ import sys ############ ROM_NAME = "Pokemon Unbound.gba" # The name of your rom -OFFSET_TO_PUT = 0x17b1480 +OFFSET_TO_PUT = 0x17b4eb0 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 update the engine