mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-23 06:07:41 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
301 B
Bash
17 lines
301 B
Bash
. ${srcdir}/emulparams/h8300elf.sh
|
|
ARCH="h8300:h8300sx"
|
|
STACK_ADDR=0x2fefc
|
|
TINY_READONLY_SECTION=".tinyrodata :
|
|
{
|
|
*(.tinyrodata)
|
|
} =0"
|
|
TINY_DATA_SECTION=".tinydata 0xff8000 :
|
|
{
|
|
*(.tinydata)
|
|
${RELOCATING+ _tinydata = .; }
|
|
}"
|
|
TINY_BSS_SECTION=".tinybss : AT (_tinydata)
|
|
{
|
|
*(.tinybss)
|
|
}"
|