mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-07 10:11:43 -04:00
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:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user