FRET-LibAFL/utils/libafl_jumper/linker_script.ld
Dominik Maier d29b657bf4
Add LibAFL_Jumper util (#2594)
* Add jumper

* Hex Hex

* Fix hex decoding

* Cleanup readme

* Build with musl

* add mips delay slot back

* Added linker script

* More jump

* clippy

* taplo
2024-10-12 13:16:33 +02:00

12 lines
240 B
Plaintext

MEMORY
{
FLASH (rx) : ORIGIN = 0x20001000, LENGTH = 512K
RAM (xrw) : ORIGIN = 0x21000000, LENGTH = 64K
}
SECTIONS
{
.text : { *(.text*) } > FLASH
.rodata : { *(.rodata*) } > FLASH
.bss : { *(.bss*) } > RAM
}