1ade065130
Since all MCUs now have their own specific linker script (courtesy of TI) there is no need for these emulations and so this patch removes them. * Makefile.am: Remove obsolete MSP430 emulations. * configure.tgt: Likewise. * emulparams/msp430all.sh: Likewise. * Makefile.in: Regenerate.
31 lines
488 B
Bash
31 lines
488 B
Bash
#!/bin/sh
|
|
|
|
# This called by genscripts_extra.sh
|
|
|
|
MSP430_NAME=${EMULATION_NAME}
|
|
|
|
SCRIPT_NAME=elf32msp430
|
|
TEMPLATE_NAME=generic
|
|
EXTRA_EM_FILE=genelf
|
|
OUTPUT_FORMAT="elf32-msp430"
|
|
MACHINE=
|
|
MAXPAGESIZE=1
|
|
EMBEDDED=yes
|
|
|
|
if [ "${MSP430_NAME}" = "msp430" ] ; then
|
|
ARCH=msp:14
|
|
ROM_START=0x8000
|
|
ROM_SIZE=0x7fe0
|
|
RAM_START=0x0200
|
|
RAM_SIZE=1K
|
|
STACK=0x600
|
|
fi
|
|
|
|
if [ "${MSP430_NAME}" = "msp430X" ] ; then
|
|
ARCH=MSP430x43
|
|
ROM_START=0x02000
|
|
ROM_SIZE=0x0dfe0
|
|
RAM_START=0x10000
|
|
RAM_SIZE=0x30000
|
|
STACK=0x600
|
|
fi
|