mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
14 lines
275 B
Text
14 lines
275 B
Text
SECTIONS
|
|
{
|
|
. = 0x00002000;
|
|
.fpga : { obj/fpgaimg.o(.rodata) }
|
|
. = 0x00010000;
|
|
.start : { obj/start.o(.text) }
|
|
.text : { *(.text) }
|
|
.rodata : { *(.rodata) }
|
|
. = 0x00200000;
|
|
.data : { *(.data) }
|
|
__bss_start__ = .;
|
|
.bss : { *(.bss) }
|
|
__bss_end__ = .;
|
|
}
|