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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [bin/] [rtlsim.sh] - Diff between revs 73 and 94

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 73 Rev 94
#!/bin/bash
#!/bin/bash
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Copyright (C) 2001 Authors
# Copyright (C) 2001 Authors
#
#
# This source file may be used and distributed without restriction provided
# This source file may be used and distributed without restriction provided
# that this copyright statement is not removed from the file and that any
# that this copyright statement is not removed from the file and that any
# derivative work contains the original copyright notice and the associated
# derivative work contains the original copyright notice and the associated
# 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.
#
#
# 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.
#
#
# You should have received a copy of the GNU Lesser General Public License
# 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,
# along with this source; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#
#
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
#
#
# File Name: rtlsim.sh
# File Name: rtlsim.sh
#
#
# Author(s):
# Author(s):
#             - Olivier Girard,    olgirard@gmail.com
#             - Olivier Girard,    olgirard@gmail.com
 
#             - Mihai M.,          mmihai@delajii.net
#
#
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# $Rev: 73 $
# $Rev: 94 $
# $LastChangedBy: olivier.girard $
# $LastChangedBy: olivier.girard $
# $LastChangedDate: 2010-08-03 21:26:39 +0200 (Tue, 03 Aug 2010) $
# $LastChangedDate: 2011-02-24 21:33:35 +0100 (Thu, 24 Feb 2011) $
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
 
 
###############################################################################
###############################################################################
#                            Parameter Check                                  #
#                            Parameter Check                                  #
###############################################################################
###############################################################################
EXPECTED_ARGS=3
EXPECTED_ARGS=3
if [ $# -ne $EXPECTED_ARGS ]; then
if [ $# -ne $EXPECTED_ARGS ]; then
  echo "ERROR    : wrong number of arguments"
  echo "ERROR    : wrong number of arguments"
  echo "USAGE    : rtlsim.sh <verilog stimulus file> <memory file> <submit file>"
  echo "USAGE    : rtlsim.sh <verilog stimulus file> <memory file> <submit file>"
  echo "Example  : rtlsim.sh ./stimulus.v            pmem.mem      ../src/submit.f"
  echo "Example  : rtlsim.sh ./stimulus.v            pmem.mem      ../src/submit.f"
 
  echo "MYVLOG env keeps simulator name iverilog/cver/verilog/ncverilog"
  exit 1
  exit 1
fi
fi
 
 
 
 
###############################################################################
###############################################################################
#                     Check if the required files exist                       #
#                     Check if the required files exist                       #
###############################################################################
###############################################################################
 
 
if [ ! -e $1 ]; then
if [ ! -e $1 ]; then
    echo "Verilog stimulus file $1 doesn't exist"
    echo "Verilog stimulus file $1 doesn't exist"
    exit 1
    exit 1
fi
fi
if [ ! -e $2 ]; then
if [ ! -e $2 ]; then
    echo "Memory file $2 doesn't exist"
    echo "Memory file $2 doesn't exist"
    exit 1
    exit 1
fi
fi
if [ ! -e $3 ]; then
if [ ! -e $3 ]; then
    echo "Verilog submit file $3 doesn't exist"
    echo "Verilog submit file $3 doesn't exist"
    exit 1
    exit 1
fi
fi
 
 
 
 
###############################################################################
###############################################################################
#                         Start verilog simulation                            #
#                         Start verilog simulation                            #
###############################################################################
###############################################################################
 
 
 
if [ "${MYVLOG:-iverilog}" = iverilog ]; then
 
 
rm -rf simv
rm -rf simv
 
 
NODUMP=${OMSP_NODUMP-0}
    NODUMP=${OMSP_NODUMP-0}
if [ $NODUMP -eq 1 ]
    if [ $NODUMP -eq 1 ]
  then
      then
    iverilog -o simv -c $3 -D NODUMP
        iverilog -o simv -c $3 -D NODUMP
  else
      else
    iverilog -o simv -c $3
        iverilog -o simv -c $3
fi
    fi
 
 
./simv
./simv
 
else
 
 
 
    NODUMP=${OMSP_NODUMP-0}
 
    if [ $NODUMP -eq 1 ] ; then
 
       vargs="+define+NODUMP"
 
    else
 
       vargs=""
 
    fi
 
 
 
   case $MYVLOG in
 
    cver* )
 
       vargs="$vargs +define+VXL" ;;
 
    verilog* )
 
       vargs="$vargs +define+VXL" ;;
 
    ncverilog* )
 
       vargs="$vargs +access+r" ;;
 
    vsim )
 
       # Modelsim
 
       if [ -d work ]; then  vdel -all; fi
 
       vlib work
 
       exec vlog +acc=prn -f $3 $vargs -R -c -do "run -all"
 
   esac
 
 
 
   echo "Running: $MYVLOG -f $3 $vargs"
 
   exec $MYVLOG -f $3 $vargs
 
fi
 
 
 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.