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

Subversion Repositories openmsp430

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /openmsp430/trunk/core/sim/rtl_sim/run
    from Rev 138 to Rev 145
    Reverse comparison

Rev 138 → Rev 145

/run_c
1,5 → 1,9
#!/bin/bash
 
###############################################################################
# Configuration #
###############################################################################
 
# Enable/Disable waveform dumping
OMSP_NODUMP=0
export OMSP_NODUMP
14,6 → 18,35
OMSP_SIMULATOR=iverilog
export OMSP_SIMULATOR
 
###############################################################################
# Parameter Check #
###############################################################################
EXPECTED_ARGS=1
if [ $# -ne $EXPECTED_ARGS ]; then
echo "ERROR : wrong number of arguments"
echo "USAGE : run_c <test name>"
echo "Example : run_c sandbox"
echo ""
echo "Available tests:"
echo -ne " "
ls ../src-c/
echo ""
exit 1
fi
 
../bin/msp430sim_c sandbox
###############################################################################
# Check if the required files exist #
###############################################################################
softdir=../src-c/$1;
 
if [ ! -e $softdir ]; then
echo "ERROR: test directory doesn't exist: $softdir"
echo ""
echo "Available tests:"
echo -ne " "
ls ../src-c/
echo ""
exit 1
fi
 
../bin/msp430sim_c $1

powered by: WebSVN 2.1.0

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