mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +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
|
||||
{
|
||||
. = 0x00010000;
|
||||
.text : { obj/start.o(.text) *(.text) }
|
||||
.start : { obj/start.o(.text) }
|
||||
.text : { *(.text) }
|
||||
.rodata : { *(.rodata) }
|
||||
. = 0x00200000;
|
||||
.data : { *(.data) }
|
||||
|
|
Loading…
Reference in a new issue