50 lines
606 B
Plaintext
50 lines
606 B
Plaintext
|
OUTPUT_FORMAT("coff-shl")
|
||
|
OUTPUT_ARCH(sh)
|
||
|
MEMORY
|
||
|
{
|
||
|
ram : o = 0x0c010000, l = 16M
|
||
|
}
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
*(.text)
|
||
|
*(.strings)
|
||
|
_etext = . ;
|
||
|
} > ram
|
||
|
.tors :
|
||
|
{
|
||
|
___ctors = . ;
|
||
|
*(.ctors)
|
||
|
___ctors_end = . ;
|
||
|
___dtors = . ;
|
||
|
*(.dtors)
|
||
|
___dtors_end = . ;
|
||
|
} > ram
|
||
|
.data :
|
||
|
{
|
||
|
*(.data)
|
||
|
_edata = . ;
|
||
|
} > ram
|
||
|
.bss :
|
||
|
{
|
||
|
_bss_start = . ;
|
||
|
*(.bss)
|
||
|
*(COMMON)
|
||
|
_end = . ;
|
||
|
} > ram
|
||
|
.stack :
|
||
|
{
|
||
|
_stack = . ;
|
||
|
*(.stack)
|
||
|
} > ram
|
||
|
.stab 0 (NOLOAD) :
|
||
|
{
|
||
|
*(.stab)
|
||
|
}
|
||
|
.stabstr 0 (NOLOAD) :
|
||
|
{
|
||
|
*(.stabstr)
|
||
|
}
|
||
|
}
|