wip debug / pal building, b_gm mostly done (#2285)

* b_gm mostly done

* wip debug / pal building

* fix configure.py

* fix some debug macros / flags
This commit is contained in:
TakaRikka
2025-01-16 09:37:39 -08:00
committed by GitHub
parent 6de1e50099
commit 0894b6ef34
1524 changed files with 202897 additions and 2955 deletions
+25
View File
@@ -0,0 +1,25 @@
MEMORY
{
text : origin = $ORIGIN
}
SECTIONS
{
GROUP:
{
$SECTIONS
.stack ALIGN(0x100):{}
} > text
_stack_end = $LAST_SECTION_SYMBOL + SIZEOF($LAST_SECTION_NAME);
_stack_addr = (_stack_end + $STACKSIZE + 0x7) & ~0x7;
_db_stack_addr = (_stack_addr + 0x2000);
_db_stack_end = _stack_addr;
__ArenaLo = _db_stack_addr;
__ArenaHi = $ARENAHI;
}
FORCEACTIVE
{
$FORCEACTIVE
}