Add config for Australian release

This commit is contained in:
Cuyler36
2025-08-14 05:55:44 -04:00
parent 7ecd923824
commit b91267214b
9 changed files with 170163 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
ae1eb839a218f96cfa09c730adadd932ba6bd1ce orig/GAFU01_00/sys/main.dol
7d91c20ebc85ef2197ca07eb7348d5477b2ff478 orig/GAFU01_00/files/foresta.rel
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+25
View File
@@ -0,0 +1,25 @@
MEMORY
{
text : origin = $ORIGIN
}
SECTIONS
{
GROUP:
{
$SECTIONS
.stack ALIGN(0x20):{}
} > text
_stack_end = ($LAST_SECTION_SYMBOL + SIZEOF($LAST_SECTION_NAME)+ 0x7) & ~0x7;
_stack_addr = (_stack_end + 0x1000 + 0x7) & ~0x7;
_db_stack_addr = (_stack_addr + 0x2000);
_db_stack_end = _stack_addr;
__ArenaLo = (_db_stack_addr + 0x1F) & ~0x1F;
__ArenaHi = 0x81700000;
}
FORCEACTIVE
{
$FORCEACTIVE
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+1
View File
@@ -34,6 +34,7 @@ from tools.project import (
DEFAULT_VERSION = 0
VERSIONS = [
"GAFE01_00", # USA Rev 0
"GAFU01_00", # Australia Rev 0
]
parser = argparse.ArgumentParser()
View File