mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
2bfed17db2
Use the correct physical addresses in the memory map, and instead translate the addresses during postprocessing with objcopy
13 lines
228 B
Text
13 lines
228 B
Text
INCLUDE ../common/ldscript.common
|
|
|
|
SECTIONS
|
|
{
|
|
fpgaimage : {
|
|
obj/fpgaimg.o(.text) *(.text)
|
|
*(.rodata)
|
|
} >fpgaimage
|
|
.data : { *(.data) } >ram
|
|
__bss_start__ = .;
|
|
.bss : { *(.bss) } >ram
|
|
__bss_end__ = .;
|
|
}
|