mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 17:18:10 +08:00
12 lines
207 B
Text
12 lines
207 B
Text
|
SECTIONS
|
||
|
{
|
||
|
. = 0x00002000;
|
||
|
.text : { obj/fpgaimg.o(.text) *(.text) }
|
||
|
.rodata : { *(.rodata) }
|
||
|
. = 0x00200000;
|
||
|
.data : { *(.data) }
|
||
|
__bss_start__ = .;
|
||
|
.bss : { *(.bss) }
|
||
|
__bss_end__ = .;
|
||
|
}
|