2001-01-10 Kazu Hirata <kazu@hxi.com>
* scripttempl/h8500.sc: Fix formatting. * scripttempl/h8500b.sc: Likewise. * scripttempl/h8500c.sc: Likewise. * scripttempl/h8500m.sc: Likewise. * scripttempl/h8500s.sc: Likewise.
This commit is contained in:
parent
de9d65b5dc
commit
69f069696b
6 changed files with 104 additions and 119 deletions
|
@ -3,6 +3,11 @@
|
||||||
* scripttempl/h8300.sc: Fix formatting. Fix a comment typo.
|
* scripttempl/h8300.sc: Fix formatting. Fix a comment typo.
|
||||||
* scripttempl/h8300h.sc: Fix formatting.
|
* scripttempl/h8300h.sc: Fix formatting.
|
||||||
* scripttempl/h8300s.sc: Likewise.
|
* scripttempl/h8300s.sc: Likewise.
|
||||||
|
* scripttempl/h8500.sc: Likewise.
|
||||||
|
* scripttempl/h8500b.sc: Likewise.
|
||||||
|
* scripttempl/h8500c.sc: Likewise.
|
||||||
|
* scripttempl/h8500m.sc: Likewise.
|
||||||
|
* scripttempl/h8500s.sc: Likewise.
|
||||||
|
|
||||||
2000-01-07 David O'Brien <obrien@BSDi.com>
|
2000-01-07 David O'Brien <obrien@BSDi.com>
|
||||||
|
|
||||||
|
|
|
@ -14,10 +14,10 @@ OUTPUT_ARCH(${ARCH})
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.text ${RELOCATING+ 0x0000 } :
|
.text ${RELOCATING+ 0x0000} :
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
${RELOCATING+ _etext = . ; }
|
${RELOCATING+ _etext = . ; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.data ${RELOCATING+ . } :
|
.data ${RELOCATING+ . } :
|
||||||
|
@ -59,7 +59,3 @@ SECTIONS
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,50 +17,45 @@ SECTIONS
|
||||||
.text ${RELOCATING+ 0x10000} :
|
.text ${RELOCATING+ 0x10000} :
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
|
${RELOCATING+ _etext = . ; }
|
||||||
${RELOCATING+ _etext = . ; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.data ${RELOCATING+ 0x20000} :
|
.data ${RELOCATING+ 0x20000} :
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data)
|
||||||
${RELOCATING+ _edata = . ; }
|
${RELOCATING+ _edata = . ; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.rdata ${RELOCATING+ 0x30000} :
|
.rdata ${RELOCATING+ 0x30000} :
|
||||||
{
|
{
|
||||||
*(.rdata);
|
*(.rdata);
|
||||||
*(.strings)
|
*(.strings)
|
||||||
|
|
||||||
${CONSTRUCTING+${TORS}}
|
${CONSTRUCTING+${TORS}}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bss ${RELOCATING+ 0x40000} :
|
.bss ${RELOCATING+ 0x40000} :
|
||||||
{
|
{
|
||||||
${RELOCATING+ __start_bss = . ; }
|
${RELOCATING+ __start_bss = . ; }
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
${RELOCATING+ _end = . ; }
|
${RELOCATING+ _end = . ; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.stack ${RELOCATING+ 0x50000} :
|
.stack ${RELOCATING+ 0x50000} :
|
||||||
{
|
{
|
||||||
${RELOCATING+ _stack = . ; }
|
${RELOCATING+ _stack = . ; }
|
||||||
*(.stack)
|
*(.stack)
|
||||||
}
|
}
|
||||||
|
|
||||||
.stab 0 ${RELOCATING+(NOLOAD)} :
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
||||||
{
|
{
|
||||||
[ .stab ]
|
[ .stab ]
|
||||||
}
|
}
|
||||||
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
|
||||||
{
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
||||||
[ .stabstr ]
|
{
|
||||||
}
|
[ .stabstr ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,47 +18,44 @@ SECTIONS
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.strings)
|
*(.strings)
|
||||||
${RELOCATING+ _etext = . ; }
|
${RELOCATING+ _etext = . ; }
|
||||||
} ${RELOCATING+ > ram}
|
} ${RELOCATING+ > ram}
|
||||||
|
|
||||||
|
|
||||||
.data 0x20000 :
|
.data 0x20000 :
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data)
|
||||||
${RELOCATING+ _edata = . ; }
|
${RELOCATING+ _edata = . ; }
|
||||||
} ${RELOCATING+ > ram}
|
} ${RELOCATING+ > ram}
|
||||||
|
|
||||||
.rdata 0x30000 :
|
.rdata 0x30000 :
|
||||||
{
|
{
|
||||||
*(.rdata);
|
*(.rdata);
|
||||||
|
|
||||||
${CONSTRUCTING+${TORS}}
|
${CONSTRUCTING+${TORS}}
|
||||||
} ${RELOCATING+ > ram}
|
} ${RELOCATING+ > ram}
|
||||||
|
|
||||||
.bss 0x40000 :
|
.bss 0x40000 :
|
||||||
{
|
{
|
||||||
${RELOCATING+ __start_bss = . ; }
|
${RELOCATING+ __start_bss = . ; }
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
${RELOCATING+ _end = . ; }
|
${RELOCATING+ _end = . ; }
|
||||||
} ${RELOCATING+ >ram}
|
} ${RELOCATING+ >ram}
|
||||||
|
|
||||||
.stack 0x5fff0 :
|
.stack 0x5fff0 :
|
||||||
{
|
{
|
||||||
${RELOCATING+ _stack = . ; }
|
${RELOCATING+ _stack = . ; }
|
||||||
*(.stack)
|
*(.stack)
|
||||||
} ${RELOCATING+ > topram}
|
} ${RELOCATING+ > topram}
|
||||||
|
|
||||||
.stab 0 ${RELOCATING+(NOLOAD)} :
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
||||||
{
|
{
|
||||||
[ .stab ]
|
[ .stab ]
|
||||||
}
|
}
|
||||||
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
|
||||||
{
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
||||||
[ .stabstr ]
|
{
|
||||||
}
|
[ .stabstr ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ SECTIONS
|
||||||
.text ${RELOCATING+ 0x10000} :
|
.text ${RELOCATING+ 0x10000} :
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
${RELOCATING+ _etext = . ; }
|
${RELOCATING+ _etext = . ; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.data ${RELOCATING+ 0x20000} :
|
.data ${RELOCATING+ 0x20000} :
|
||||||
|
@ -31,7 +31,7 @@ SECTIONS
|
||||||
*(.rdata);
|
*(.rdata);
|
||||||
*(.strings)
|
*(.strings)
|
||||||
|
|
||||||
${CONSTRUCTING+${TORS}}
|
${CONSTRUCTING+${TORS}}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bss ${RELOCATING+ . } :
|
.bss ${RELOCATING+ . } :
|
||||||
|
@ -49,8 +49,8 @@ SECTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
.stab 0 ${RELOCATING+(NOLOAD)} :
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
||||||
{
|
{
|
||||||
[ .stab ]
|
[ .stab ]
|
||||||
}
|
}
|
||||||
|
|
||||||
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
||||||
|
@ -59,7 +59,3 @@ SECTIONS
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -14,13 +14,13 @@ OUTPUT_ARCH(${ARCH})
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.text ${RELOCATING+ 0x10000 } :
|
.text ${RELOCATING+ 0x10000} :
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
${RELOCATING+ _etext = . ; }
|
${RELOCATING+ _etext = . ; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.rdata ${RELOCATING+ 0x20000 } :
|
.rdata ${RELOCATING+ 0x20000} :
|
||||||
{
|
{
|
||||||
*(.rdata);
|
*(.rdata);
|
||||||
*(.strings)
|
*(.strings)
|
||||||
|
@ -50,7 +50,7 @@ SECTIONS
|
||||||
|
|
||||||
.stab 0 ${RELOCATING+(NOLOAD)} :
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
||||||
{
|
{
|
||||||
[ .stab ]
|
[ .stab ]
|
||||||
}
|
}
|
||||||
|
|
||||||
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
||||||
|
@ -59,7 +59,3 @@ SECTIONS
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue