mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
10 lines
170 B
Text
10 lines
170 B
Text
MEMORY {
|
|
RAM : ORIGIN = 0, LENGTH = 0x4000
|
|
ROM (rx) : ORIGIN = 0x4000, LENGTH = 32k
|
|
}
|
|
|
|
SECTIONS {
|
|
.rodata : { *(.eh_frame) } >ROM
|
|
.data : { } >RAM
|
|
.bss : { } >RAM
|
|
}
|