mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
214 B
Plaintext
19 lines
214 B
Plaintext
ENTRY(_start)
|
|
SECTIONS {
|
|
.text 0xc000 : {
|
|
*(.text)
|
|
}
|
|
.bank1 0x10000 : {
|
|
*(.bank1)
|
|
}
|
|
.bank2 0x14000 : {
|
|
*(.bank2)
|
|
}
|
|
.bank3 0x18000 : {
|
|
*(.bank3)
|
|
}
|
|
.bss 0x2000 : {
|
|
*(.bss)
|
|
}
|
|
}
|