mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-15 13:14:27 +08:00
11 lines
212 B
Text
11 lines
212 B
Text
|
SECTIONS
|
||
|
{
|
||
|
. = 0x00200000;
|
||
|
.text : { obj/ram-reset.o(.text) *(.text) }
|
||
|
.rodata : { *(.rodata) }
|
||
|
.data : { *(.data) }
|
||
|
__bss_start__ = .;
|
||
|
.bss : { *(.bss) }
|
||
|
__bss_end__ = .;
|
||
|
}
|