mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-25 09:33:10 +08:00
15 lines
275 B
Text
15 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__ = .;
|
||
|
}
|