OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [bin/] [asm2ihex.sh] - Diff between revs 111 and 134

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 111 Rev 134
Line 8... Line 8...
# disclaimer.
# disclaimer.
#
#
# This source file is free software; you can redistribute it and/or modify
# 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
# 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
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# (at your option) any later version.1
#
#
# This source is distributed in the hope that it will be useful, but WITHOUT
# This source is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
# License for more details.
Line 27... Line 27...
#
#
# Author(s):
# Author(s):
#             - Olivier Girard,    olgirard@gmail.com
#             - Olivier Girard,    olgirard@gmail.com
#
#
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# $Rev: 111 $
# $Rev: 134 $
# $LastChangedBy: olivier.girard $
# $LastChangedBy: olivier.girard $
# $LastChangedDate: 2011-05-20 22:39:02 +0200 (Fri, 20 May 2011) $
# $LastChangedDate: 2012-03-22 21:31:06 +0100 (Thu, 22 Mar 2012) $
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
 
 
###############################################################################
###############################################################################
#                            Parameter Check                                  #
#                            Parameter Check                                  #
###############################################################################
###############################################################################
EXPECTED_ARGS=6
EXPECTED_ARGS=6
if [ $# -ne $EXPECTED_ARGS ]; then
if [ $# -ne $EXPECTED_ARGS ]; then
  echo "ERROR    : wrong number of arguments"
  echo "ERROR    : wrong number of arguments"
  echo "USAGE    : asm2ihex.sh <test name> <test assembler file> <definition file>   <prog mem size> <data mem size> <peripheral addr space size>"
  echo "USAGE    : asm2ihex.sh <test name> <test assembler file> <linker script>   <prog mem size> <data mem size> <peripheral addr space size>"
  echo "Example  : asm2ihex.sh c-jump_jge  ../src/c-jump_jge.s43 ../bin/template.def 2048            128             512"
  echo "Example  : asm2ihex.sh c-jump_jge  ../src/c-jump_jge.s43 ../bin/template.x 2048            128             512"
  exit 1
  exit 1
fi
fi
 
 
 
 
###############################################################################
###############################################################################
Line 68... Line 68...
DMEM_SIZE=$5
DMEM_SIZE=$5
PMEM_SIZE=$4
PMEM_SIZE=$4
PMEM_BASE=$((0x10000-$PMEM_SIZE))
PMEM_BASE=$((0x10000-$PMEM_SIZE))
STACK_INIT=$((PER_SIZE+0x0080))
STACK_INIT=$((PER_SIZE+0x0080))
 
 
cp  $3  ./pmem.def
cp  $3  ./pmem.x
sed -i "s/PMEM_BASE/$PMEM_BASE/g"    pmem.def
sed -i "s/PMEM_BASE/$PMEM_BASE/g"    pmem.x
sed -i "s/PMEM_SIZE/$PMEM_SIZE/g"    pmem.def
sed -i "s/PMEM_SIZE/$PMEM_SIZE/g"    pmem.x
sed -i "s/DMEM_SIZE/$DMEM_SIZE/g"    pmem.def
sed -i "s/DMEM_SIZE/$DMEM_SIZE/g"    pmem.x
sed -i "s/PER_SIZE/$PER_SIZE/g"      pmem.def
sed -i "s/PER_SIZE/$PER_SIZE/g"      pmem.x
sed -i "s/STACK_INIT/$STACK_INIT/g"  pmem.def
sed -i "s/STACK_INIT/$STACK_INIT/g"  pmem.x
 
 
 
 
###############################################################################
###############################################################################
#                  Compile, link & generate IHEX file                         #
#                  Compile, link & generate IHEX file                         #
###############################################################################
###############################################################################
msp430-as      -alsm         $2     -o $1.o     > $1.l43
msp430-as      -alsm         $2     -o $1.o     > $1.l43
msp430-objdump -xdsStr       $1.o              >> $1.l43
msp430-objdump -xdsStr       $1.o              >> $1.l43
msp430-ld      -T ./pmem.def $1.o   -o $1.elf
msp430-ld      -T ./pmem.x   $1.o   -o $1.elf
msp430-objcopy -O ihex       $1.elf    $1.ihex
msp430-objcopy -O ihex       $1.elf    $1.ihex
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.