From f60ae6b6bc1c94bbf2ac6687c1f2b541a1f11f75 Mon Sep 17 00:00:00 2001 From: Skeli Date: Fri, 28 Feb 2020 11:51:19 +0200 Subject: [PATCH] Update Insertion Location --- 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 fe72a40..22cddbe 100644 --- a/linker.ld +++ b/linker.ld @@ -1,7 +1,7 @@ OUTPUT_ARCH(arm) MEMORY { - rom : ORIGIN = (0x08000000 + 0x17b3f30), LENGTH = 32M + rom : ORIGIN = (0x08000000 + 0x17b7a90), LENGTH = 32M ewram : ORIGIN = 0x02000000, LENGTH = 4M - 4k } diff --git a/scripts/insert.py b/scripts/insert.py index 266728d..582bb0c 100644 --- a/scripts/insert.py +++ b/scripts/insert.py @@ -7,7 +7,7 @@ import sys from datetime import datetime import _io -OFFSET_TO_PUT = 0x17b3f30 +OFFSET_TO_PUT = 0x17b7a90 SOURCE_ROM = "Pokemon Unbound.gba" ROM_NAME = "test.gba" diff --git a/scripts/make.py b/scripts/make.py index 5f961c4..4fcca80 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 = 0x17b3f30 +OFFSET_TO_PUT = 0x17b7a90 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