mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
19 lines
268 B
Bash
19 lines
268 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This called by genscripts_extra.sh
|
||
|
|
||
|
SCRIPT_NAME=elf32msp430
|
||
|
TEMPLATE_NAME=generic
|
||
|
EXTRA_EM_FILE=genelf
|
||
|
OUTPUT_FORMAT="elf32-msp430"
|
||
|
MACHINE=
|
||
|
MAXPAGESIZE=1
|
||
|
EMBEDDED=yes
|
||
|
|
||
|
ARCH=msp:14
|
||
|
ROM_START=0x8000
|
||
|
ROM_SIZE=0x7fe0
|
||
|
RAM_START=0x0200
|
||
|
RAM_SIZE=1K
|
||
|
STACK=0x600
|