mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-30 03:28:32 -07: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…
Add table
Add a link
Reference in a new issue