summaryrefslogtreecommitdiffstats
path: root/tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld
diff options
context:
space:
mode:
authorWillian Paixao <willian@ufpa.br>2021-12-05 19:16:34 +0100
committerWillian Paixao <willian@ufpa.br>2021-12-05 19:16:34 +0100
commitac2e205ae9f465c27297ea542c72e8cfe4966f8c (patch)
tree16e4d1268b2631ba7e17dcda8f366f070fbd7475 /tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld
parentbbd394a19aaa334a179c36cf2ed2a066f1bb312c (diff)
downloadSensor-Watch-ac2e205ae9f465c27297ea542c72e8cfe4966f8c.tar.gz
Sensor-Watch-ac2e205ae9f465c27297ea542c72e8cfe4966f8c.tar.bz2
Sensor-Watch-ac2e205ae9f465c27297ea542c72e8cfe4966f8c.zip
remove tinyusb directory
Diffstat (limited to 'tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld')
-rwxr-xr-xtinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld127
1 files changed, 0 insertions, 127 deletions
diff --git a/tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld b/tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld
deleted file mode 100755
index bb9c297c..00000000
--- a/tinyusb/hw/bsp/rx/boards/gr_citrus/r5f5631fd.ld
+++ /dev/null
@@ -1,127 +0,0 @@
-__USTACK_SIZE = 0x00000400;
-__ISTACK_SIZE = 0x00000400;
-
-MEMORY
-{
- RAM : ORIGIN = 0x4, LENGTH = 0x3fffc
- ROM : ORIGIN = 0xFFE00000, LENGTH = 0x200000
-}
-SECTIONS
-{
- .fvectors 0xFFFFFF80: AT(0xFFFFFF80)
- {
- KEEP(*(.fvectors))
- } > ROM
- .text 0xFFE00000: AT(0xFFE00000)
- {
- *(.text)
- *(.text.*)
- *(P)
- etext = .;
- } > ROM
- .rvectors ALIGN(4):
- {
- _rvectors_start = .;
- KEEP(*(.rvectors))
- _rvectors_end = .;
- } > ROM
- .init :
- {
- KEEP(*(.init))
- __preinit_array_start = .;
- KEEP(*(.preinit_array))
- __preinit_array_end = .;
- __init_array_start = (. + 3) & ~ 3;
- KEEP(*(.init_array))
- KEEP(*(SORT(.init_array.*)))
- __init_array_end = .;
- __fini_array_start = .;
- KEEP(*(.fini_array))
- KEEP(*(SORT(.fini_array.*)))
- __fini_array_end = .;
- } > ROM
- .fini :
- {
- KEEP(*(.fini))
- } > ROM
- .got :
- {
- *(.got)
- *(.got.plt)
- } > ROM
- .rodata :
- {
- *(.rodata)
- *(.rodata.*)
- *(C_1)
- *(C_2)
- *(C)
- _erodata = .;
- } > ROM
- .eh_frame_hdr :
- {
- *(.eh_frame_hdr)
- } > ROM
- .eh_frame :
- {
- *(.eh_frame)
- } > ROM
- .jcr :
- {
- *(.jcr)
- } > ROM
- .tors :
- {
- __CTOR_LIST__ = .;
- . = ALIGN(2);
- ___ctors = .;
- *(.ctors)
- ___ctors_end = .;
- __CTOR_END__ = .;
- __DTOR_LIST__ = .;
- ___dtors = .;
- *(.dtors)
- ___dtors_end = .;
- __DTOR_END__ = .;
- . = ALIGN(2);
- _mdata = .;
- } > ROM
- .data : AT(_mdata)
- {
- _data = .;
- *(.data)
- *(.data.*)
- *(D)
- *(D_1)
- *(D_2)
- _edata = .;
- } > RAM
- .gcc_exc :
- {
- *(.gcc_exc)
- } > RAM
- .bss :
- {
- _bss = .;
- *(.bss)
- *(.bss.**)
- *(COMMON)
- *(B)
- *(B_1)
- *(B_2)
- _ebss = .;
- _end = .;
- } > RAM
- .ustack :
- {
- . = ALIGN(8);
- . = . + __USTACK_SIZE;
- PROVIDE(_ustack = .);
- } > RAM
- .istack :
- {
- . = ALIGN(8);
- . = . + __ISTACK_SIZE;
- PROVIDE(_istack = .);
- } > RAM
-}