|
|
|
# (C) 2001-2015 Altera Corporation. All rights reserved.
|
|
# Your use of Altera Corporation's design tools, logic functions and
|
|
# other software and tools, and its AMPP partner logic functions, and
|
|
# any output files any of the foregoing (including device programming
|
|
# or simulation files), and any associated documentation or information
|
|
# are expressly subject to the terms and conditions of the Altera
|
|
# Program License Subscription Agreement, Altera MegaCore Function
|
|
# License Agreement, or other applicable license agreement, including,
|
|
# without limitation, that your use is for the sole purpose of
|
|
# programming logic devices manufactured by Altera and sold by Altera
|
|
# or its authorized distributors. Please refer to the applicable
|
|
# agreement for further details.
|
|
|
|
# ACDS 14.0 200 linux 2015.01.04.13:35:35
|
|
|
|
# ----------------------------------------
|
|
# ncsim - auto-generated simulation script
|
|
|
|
# ----------------------------------------
|
|
# initialize variables
|
|
TOP_LEVEL_NAME="pll_pal"
|
|
QSYS_SIMDIR="./../"
|
|
QUARTUS_INSTALL_DIR="/home/markw/fpga/altera/14.0/quartus/"
|
|
SKIP_FILE_COPY=0
|
|
SKIP_DEV_COM=0
|
|
SKIP_COM=0
|
|
SKIP_ELAB=0
|
|
SKIP_SIM=0
|
|
USER_DEFINED_ELAB_OPTIONS=""
|
|
USER_DEFINED_SIM_OPTIONS="-input \"@run 100; exit\""
|
|
|
|
# ----------------------------------------
|
|
# overwrite variables - DO NOT MODIFY!
|
|
# This block evaluates each command line argument, typically used for
|
|
# overwriting variables. An example usage:
|
|
# sh <simulator>_setup.sh SKIP_ELAB=1 SKIP_SIM=1
|
|
for expression in "$@"; do
|
|
eval $expression
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: This command line argument, \"$expression\", is/has an invalid expression." >&2
|
|
exit $?
|
|
fi
|
|
done
|
|
|
|
# ----------------------------------------
|
|
# initialize simulation properties - DO NOT MODIFY!
|
|
ELAB_OPTIONS=""
|
|
SIM_OPTIONS=""
|
|
if [[ `ncsim -version` != *"ncsim(64)"* ]]; then
|
|
:
|
|
else
|
|
:
|
|
fi
|
|
|
|
# ----------------------------------------
|
|
# create compilation libraries
|
|
mkdir -p ./libraries/work/
|
|
mkdir -p ./libraries/altera/
|
|
mkdir -p ./libraries/lpm/
|
|
mkdir -p ./libraries/sgate/
|
|
mkdir -p ./libraries/altera_mf/
|
|
mkdir -p ./libraries/altera_lnsim/
|
|
mkdir -p ./libraries/cyclonev/
|
|
|
|
# ----------------------------------------
|
|
# copy RAM/ROM files to simulation directory
|
|
|
|
# ----------------------------------------
|
|
# compile device library files
|
|
if [ $SKIP_DEV_COM -eq 0 ]; then
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_syn_attributes.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_standard_functions.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/alt_dspbuilder_package.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_europa_support_lib.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_primitives_components.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_primitives.vhd" -work altera
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/220pack.vhd" -work lpm
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/220model.vhd" -work lpm
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/sgate_pack.vhd" -work sgate
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/sgate.vhd" -work sgate
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_mf_components.vhd" -work altera_mf
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_mf.vhd" -work altera_mf
|
|
ncvlog -sv "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_lnsim.sv" -work altera_lnsim
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/altera_lnsim_components.vhd" -work altera_lnsim
|
|
ncvlog "$QUARTUS_INSTALL_DIR/eda/sim_lib/cadence/cyclonev_atoms_ncrypt.v" -work cyclonev
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/cyclonev_atoms.vhd" -work cyclonev
|
|
ncvhdl -v93 "$QUARTUS_INSTALL_DIR/eda/sim_lib/cyclonev_components.vhd" -work cyclonev
|
|
fi
|
|
|
|
# ----------------------------------------
|
|
# compile design files in correct order
|
|
if [ $SKIP_COM -eq 0 ]; then
|
|
ncvhdl -v93 "$QSYS_SIMDIR/pll_pal.vho"
|
|
fi
|
|
|
|
# ----------------------------------------
|
|
# elaborate top level design
|
|
if [ $SKIP_ELAB -eq 0 ]; then
|
|
ncelab -access +w+r+c -namemap_mixgen -relax $ELAB_OPTIONS $USER_DEFINED_ELAB_OPTIONS $TOP_LEVEL_NAME
|
|
fi
|
|
|
|
# ----------------------------------------
|
|
# simulate
|
|
if [ $SKIP_SIM -eq 0 ]; then
|
|
eval ncsim -licqueue $SIM_OPTIONS $USER_DEFINED_SIM_OPTIONS $TOP_LEVEL_NAME
|
|
fi
|