From a06d969eb207103199d29bff470da5e52ebdffd7 Mon Sep 17 00:00:00 2001 From: Skeli Date: Thu, 12 Mar 2020 21:17:26 +0200 Subject: [PATCH] New Insert 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 4e34e31..ebc001f 100644 --- a/linker.ld +++ b/linker.ld @@ -1,7 +1,7 @@ OUTPUT_ARCH(arm) MEMORY { - rom : ORIGIN = (0x08000000 + 0x170bf00), LENGTH = 32M + rom : ORIGIN = (0x08000000 + 0x170eaa0), LENGTH = 32M ewram : ORIGIN = 0x02000000, LENGTH = 4M - 4k } diff --git a/scripts/insert.py b/scripts/insert.py index 4132e77..585bd73 100644 --- a/scripts/insert.py +++ b/scripts/insert.py @@ -7,7 +7,7 @@ import sys from datetime import datetime import _io -OFFSET_TO_PUT = 0x170bf00 +OFFSET_TO_PUT = 0x170eaa0 SOURCE_ROM = "Pokemon Unbound.gba" ROM_NAME = "test.gba" diff --git a/scripts/make.py b/scripts/make.py index ee7b756..7d2b604 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 = 0x170bf00 +OFFSET_TO_PUT = 0x170eaa0 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