mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
13 lines
235 B
Text
13 lines
235 B
Text
ENTRY(Vector)
|
|
SECTIONS
|
|
{
|
|
. = 0x00010000;
|
|
.start : { obj/start.o(.text) }
|
|
.text : { *(.text) }
|
|
.rodata : { *(.rodata) }
|
|
. = 0x00200000;
|
|
.data : { *(.data) }
|
|
__bss_start__ = .;
|
|
.bss : { *(.bss) }
|
|
__bss_end__ = .;
|
|
}
|