mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
10 lines
212 B
Bash
10 lines
212 B
Bash
|
SCRIPT_NAME=sparccoff
|
||
|
OUTPUT_FORMAT="coff-sparc"
|
||
|
# following are dubious (borrowed from sparc lynx)
|
||
|
TARGET_PAGE_SIZE=0x1000
|
||
|
TEXT_START_ADDR=0
|
||
|
case ${LD_FLAG} in
|
||
|
n|N) TEXT_START_ADDR=0x1000 ;;
|
||
|
esac
|
||
|
ARCH=sparc
|