sup39
c74a9da83b
Rearrange linker script (in /linker) Delete unnecessary files Use extern instead of static in sms.h
16 lines
216 B
Text
16 lines
216 B
Text
SECTIONS {
|
|
. = DEFINED(__geckoBaseAddr__) ? __geckoBaseAddr__ : 0x817fa000;
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
.rodata : {
|
|
*(.rodata*)
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
. += 0x08;
|
|
.sdata : {
|
|
*(.sdata)
|
|
}
|
|
}
|