mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
2bfed17db2
Use the correct physical addresses in the memory map, and instead translate the addresses during postprocessing with objcopy
21 lines
345 B
Text
21 lines
345 B
Text
INCLUDE ../common/ldscript.common
|
|
|
|
ENTRY(Vector)
|
|
SECTIONS
|
|
{
|
|
.start : { obj/start.o(.text) } >osimage
|
|
.text : {
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
} >osimage
|
|
.rodata : {
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
} >osimage
|
|
.data : { *(.data) } >ram
|
|
__bss_start__ = .;
|
|
.bss : { *(.bss) } >ram
|
|
__bss_end__ = .;
|
|
}
|