mirror of
https://github.com/Skeli789/Dynamic-Pokemon-Expansion.git
synced 2026-03-21 17:24:13 -05:00
29 lines
635 B
Plaintext
29 lines
635 B
Plaintext
OUTPUT_ARCH(arm)
|
|
MEMORY {
|
|
|
|
rom : ORIGIN = (0x08000000 + 0x1800000), LENGTH = 32M
|
|
ewram : ORIGIN = 0x02000000, LENGTH = 4M - 4k
|
|
}
|
|
|
|
SECTIONS {
|
|
.text : {
|
|
|
|
FILL (0xABCD)
|
|
|
|
__text_start = . ;
|
|
*(.init)
|
|
*(.text)
|
|
*(.ctors)
|
|
*(.dtors)
|
|
*(.rodata)
|
|
*(.fini)
|
|
*(COMMON)
|
|
__text_end = . ;
|
|
|
|
__bss_start__ = . ;
|
|
*(.bss)
|
|
__bss_end__ = . ;
|
|
_end = __bss_end__ ;
|
|
__end__ = __bss_end__ ;
|
|
} >rom = 0xff
|
|
} |