mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 14:34:51 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@20228 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
478 B
Bash
26 lines
478 B
Bash
# If you change this file, please also look at files which source this one:
|
|
# h8300helf.sh h8300self.sh
|
|
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-h8300"
|
|
TEXT_START_ADDR=0x100
|
|
MAXPAGESIZE=2
|
|
TARGET_PAGE_SIZE=128
|
|
ARCH=h8300
|
|
TEMPLATE_NAME=elf32
|
|
EMBEDDED=yes
|
|
STACK_ADDR=0xfefc
|
|
TINY_READONLY_SECTION=".tinyrodata :
|
|
{
|
|
*(.tinyrodata)
|
|
} =0"
|
|
TINY_DATA_SECTION=".tinydata 0xff8000 :
|
|
{
|
|
*(.tinydata)
|
|
_tinydata = .;
|
|
}"
|
|
TINY_BSS_SECTION=".tinybss : AT (_tinydata)
|
|
{
|
|
*(.tinybss)
|
|
}"
|