mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-22 13:47:44 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
318 B
Raku
15 lines
318 B
Raku
/* Memory region overflow tests: one region, first output sect fits,
|
|
second doesn't. */
|
|
|
|
MEMORY {
|
|
bss (rwx) : ORIGIN = 0, LENGTH = 0
|
|
r1 (rwx) : ORIGIN = 0x1000, LENGTH = 20
|
|
}
|
|
_start = 0x1000;
|
|
SECTIONS {
|
|
.bss : { *(.bss) } > bss
|
|
.text : { *(.txt) } > r1
|
|
.data : { *(.dat) } > r1
|
|
/DISCARD/ : { *(*) }
|
|
}
|