6502/vbcc/targets/cf-arnewsh/lib/script
2022-05-12 21:36:39 +09:30

24 lines
350 B
Plaintext
Executable File

SECTIONS {
. = 0x2000;
.text: {
*(.text CODE)
. = ALIGN(4);
}
.data: {
VBCC_CONSTRUCTORS
*(.rodata*)
*(.data DATA)
_SDA_BASE_ = . + 0x8000;
PROVIDE(_LinkerDB = . + 0x8000);
*(.sdata* __MERGED)
PROVIDE(___edata = ALIGN(4));
}
.bss: {
*(.sbss)
*(.scommon)
*(.bss .udata BSS)
*(COMMON)
PROVIDE(___end = ALIGN(4));
}
}