Files
lk/app/mdebug/fw-m0sub.ld
Brian Swetland 16ba667296 [app][mdebug] makefile.fw and linkscript to regenerate fw
The original tooling is lost to the mists of time and long-discarded
workstations, but this generates identical results and will enable
updating the code on the m0 sub-processor going forward.  Yay.
2021-01-30 02:51:41 -08:00

33 lines
452 B
Plaintext

/* RAM only binary layout */
SECTIONS {
.text : {
. = ALIGN(4);
KEEP (*(.vectors))
*(.text)
*(.text.*)
*(.rodata)
*(.rodata.*)
. = ALIGN(4);
__data_init__ = . ;
} /* >RAM */
.data : {
. = ALIGN(4);
__data_start__ = . ;
*(.data)
*(.data.*)
. = ALIGN(4);
__data_end__ = . ;
} /* >RAM */
.bss : {
. = ALIGN(4);
__bss_start__ = . ;
*(.bss)
*(.bss.*)
*(COMMON)
. = ALIGN(4);
__bss_end__ = . ;
} /*>RAM */
}