mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
fix loader memory mapping
This commit is contained in:
parent
0673512814
commit
16e590fd2b
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
||||||
|
ENTRY(Vector)
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
. = 0x00010000;
|
. = 0x00010000;
|
||||||
.text : { obj/start.o(.text) *(.text) }
|
.start : { obj/start.o(.text) }
|
||||||
|
.text : { *(.text) }
|
||||||
.rodata : { *(.rodata) }
|
.rodata : { *(.rodata) }
|
||||||
. = 0x00200000;
|
. = 0x00200000;
|
||||||
.data : { *(.data) }
|
.data : { *(.data) }
|
||||||
|
|
Loading…
Reference in a new issue