URL
https://opencores.org/ocsvn/openmsp430/openmsp430/trunk
Subversion Repositories openmsp430
[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [bin/] [asm2ihex.sh] - Rev 53
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/sh #------------------------------------------------------------------------------ # Copyright (C) 2001 Authors # # This source file may be used and distributed without restriction provided # that this copyright statement is not removed from the file and that any # derivative work contains the original copyright notice and the associated # disclaimer. # # This source file is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # This source is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public # License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this source; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # #------------------------------------------------------------------------------ # # File Name: asm2ihex.sh # # Author(s): # - Olivier Girard, olgirard@gmail.com # #------------------------------------------------------------------------------ # $Rev: 33 $ # $LastChangedBy: olivier.girard $ # $LastChangedDate: 2009-12-29 19:18:00 +0100 (Tue, 29 Dec 2009) $ #------------------------------------------------------------------------------ ############################################################################### # Parameter Check # ############################################################################### EXPECTED_ARGS=5 if [ $# -ne $EXPECTED_ARGS ]; then echo "ERROR : wrong number of arguments" echo "USAGE : asm2ihex.sh <test name> <test assembler file> <definition file> <prog mem size> <data mem size>" echo "Example : asm2ihex.sh c-jump_jge ../src/c-jump_jge.s43 ../bin/template.def 2048 128" exit 1 fi ############################################################################### # Check if definition & assembler files exist # ############################################################################### if [ ! -e $2 ]; then echo "Assembler file doesn't exist: $2" exit 1 fi if [ ! -e $3 ]; then echo "Linker definition file template doesn't exist: $3" exit 1 fi ############################################################################### # Generate the linker definition file # ############################################################################### DMEM_SIZE=$5 PMEM_SIZE=$4 PMEM_BASE=$((0x10000-$PMEM_SIZE)) cp $3 ./pmem.def sed -i "s/PMEM_BASE/$PMEM_BASE/g" pmem.def sed -i "s/PMEM_SIZE/$PMEM_SIZE/g" pmem.def sed -i "s/DMEM_SIZE/$DMEM_SIZE/g" pmem.def ############################################################################### # Compile, link & generate IHEX file # ############################################################################### msp430-as -alsm $2 -o $1.o > $1.l43 msp430-objdump -xdsStr $1.o >> $1.l43 msp430-ld -T ./pmem.def $1.o -o $1.elf msp430-objcopy -O ihex $1.elf $1.ihex
Go to most recent revision | Compare with Previous | Blame | View Log