mirror of
https://github.com/supleed2/ELEC40006-P1-CW.git
synced 2024-11-10 02:05:48 +00:00
179 lines
4.7 KiB
Plaintext
179 lines
4.7 KiB
Plaintext
|
/*<simulation_settings>
|
||
|
<ftestbench_cmd>quartus_eda --gen_testbench --tool=modelsim_oem --format=verilog --write_settings_files=off CPUProject -c CPUProject --vector_source="C:/Users/Benjamin/Desktop/CPUProject/Waveform.vwf" --testbench_file="C:/Users/Benjamin/Desktop/CPUProject/simulation/qsim/Waveform.vwf.vt"</ftestbench_cmd>
|
||
|
<ttestbench_cmd>quartus_eda --gen_testbench --tool=modelsim_oem --format=verilog --write_settings_files=off CPUProject -c CPUProject --vector_source="C:/Users/Benjamin/Desktop/CPUProject/Waveform.vwf" --testbench_file="C:/Users/Benjamin/Desktop/CPUProject/simulation/qsim/Waveform.vwf.vt"</ttestbench_cmd>
|
||
|
<fnetlist_cmd>quartus_eda --write_settings_files=off --simulation --functional=on --flatten_buses=off --tool=modelsim_oem --format=verilog --output_directory="C:/Users/Benjamin/Desktop/CPUProject/simulation/qsim/" CPUProject -c CPUProject</fnetlist_cmd>
|
||
|
<tnetlist_cmd>quartus_eda --write_settings_files=off --simulation --functional=off --flatten_buses=off --timescale=1ps --tool=modelsim_oem --format=verilog --output_directory="C:/Users/Benjamin/Desktop/CPUProject/simulation/qsim/" CPUProject -c CPUProject</tnetlist_cmd>
|
||
|
<modelsim_script>onerror {exit -code 1}
|
||
|
vlib work
|
||
|
vlog -work work CPUProject.vo
|
||
|
vlog -work work Waveform.vwf.vt
|
||
|
vsim -novopt -c -t 1ps -L cycloneive_ver -L altera_ver -L altera_mf_ver -L 220model_ver -L sgate_ver -L altera_lnsim_ver work.CPUProject_vlg_vec_tst
|
||
|
vcd file -direction CPUProject.msim.vcd
|
||
|
vcd add -internal CPUProject_vlg_vec_tst/*
|
||
|
vcd add -internal CPUProject_vlg_vec_tst/i1/*
|
||
|
proc simTimestamp {} {
|
||
|
echo "Simulation time: $::now ps"
|
||
|
if { [string equal running [runStatus]] } {
|
||
|
after 2500 simTimestamp
|
||
|
}
|
||
|
}
|
||
|
after 2500 simTimestamp
|
||
|
run -all
|
||
|
quit -f
|
||
|
</modelsim_script>
|
||
|
<modelsim_script_timing>onerror {exit -code 1}
|
||
|
vlib work
|
||
|
vlog -work work CPUProject.vo
|
||
|
vlog -work work Waveform.vwf.vt
|
||
|
vsim -novopt -c -t 1ps -L cycloneive_ver -L altera_ver -L altera_mf_ver -L 220model_ver -L sgate_ver -L altera_lnsim_ver work.CPUProject_vlg_vec_tst
|
||
|
vcd file -direction CPUProject.msim.vcd
|
||
|
vcd add -internal CPUProject_vlg_vec_tst/*
|
||
|
vcd add -internal CPUProject_vlg_vec_tst/i1/*
|
||
|
proc simTimestamp {} {
|
||
|
echo "Simulation time: $::now ps"
|
||
|
if { [string equal running [runStatus]] } {
|
||
|
after 2500 simTimestamp
|
||
|
}
|
||
|
}
|
||
|
after 2500 simTimestamp
|
||
|
run -all
|
||
|
quit -f
|
||
|
</modelsim_script_timing>
|
||
|
<hdl_lang>verilog</hdl_lang>
|
||
|
</simulation_settings>*/
|
||
|
/*
|
||
|
WARNING: Do NOT edit the input and output ports in this file in a text
|
||
|
editor if you plan to continue editing the block that represents it in
|
||
|
the Block Editor! File corruption is VERY likely to occur.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||
|
Your use of Intel Corporation's design tools, logic functions
|
||
|
and other software and tools, and any partner logic
|
||
|
functions, and any output files from 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 Intel Program License
|
||
|
Subscription Agreement, the Intel Quartus Prime License Agreement,
|
||
|
the Intel FPGA IP License Agreement, or other applicable license
|
||
|
agreement, including, without limitation, that your use is for
|
||
|
the sole purpose of programming logic devices manufactured by
|
||
|
Intel and sold by Intel or its authorized distributors. Please
|
||
|
refer to the applicable agreement for further details, at
|
||
|
https://fpgasoftware.intel.com/eula.
|
||
|
*/
|
||
|
|
||
|
HEADER
|
||
|
{
|
||
|
VERSION = 1;
|
||
|
TIME_UNIT = ns;
|
||
|
DATA_OFFSET = 0.0;
|
||
|
DATA_DURATION = 1000.0;
|
||
|
SIMULATION_TIME = 0.0;
|
||
|
GRID_PHASE = 0.0;
|
||
|
GRID_PERIOD = 10.0;
|
||
|
GRID_DUTY_CYCLE = 50;
|
||
|
}
|
||
|
|
||
|
SIGNAL("X")
|
||
|
{
|
||
|
VALUE_TYPE = NINE_LEVEL_BIT;
|
||
|
SIGNAL_TYPE = SINGLE_BIT;
|
||
|
WIDTH = 1;
|
||
|
LSB_INDEX = -1;
|
||
|
DIRECTION = INPUT;
|
||
|
PARENT = "";
|
||
|
}
|
||
|
|
||
|
SIGNAL("Y")
|
||
|
{
|
||
|
VALUE_TYPE = NINE_LEVEL_BIT;
|
||
|
SIGNAL_TYPE = SINGLE_BIT;
|
||
|
WIDTH = 1;
|
||
|
LSB_INDEX = -1;
|
||
|
DIRECTION = INPUT;
|
||
|
PARENT = "";
|
||
|
}
|
||
|
|
||
|
SIGNAL("Z")
|
||
|
{
|
||
|
VALUE_TYPE = NINE_LEVEL_BIT;
|
||
|
SIGNAL_TYPE = SINGLE_BIT;
|
||
|
WIDTH = 1;
|
||
|
LSB_INDEX = -1;
|
||
|
DIRECTION = OUTPUT;
|
||
|
PARENT = "";
|
||
|
}
|
||
|
|
||
|
TRANSITION_LIST("X")
|
||
|
{
|
||
|
NODE
|
||
|
{
|
||
|
REPEAT = 1;
|
||
|
NODE
|
||
|
{
|
||
|
REPEAT = 50;
|
||
|
LEVEL 0 FOR 10.0;
|
||
|
LEVEL 1 FOR 10.0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TRANSITION_LIST("Y")
|
||
|
{
|
||
|
NODE
|
||
|
{
|
||
|
REPEAT = 1;
|
||
|
NODE
|
||
|
{
|
||
|
REPEAT = 25;
|
||
|
LEVEL 0 FOR 20.0;
|
||
|
LEVEL 1 FOR 20.0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TRANSITION_LIST("Z")
|
||
|
{
|
||
|
NODE
|
||
|
{
|
||
|
REPEAT = 1;
|
||
|
LEVEL X FOR 1000.0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
DISPLAY_LINE
|
||
|
{
|
||
|
CHANNEL = "X";
|
||
|
EXPAND_STATUS = COLLAPSED;
|
||
|
RADIX = Binary;
|
||
|
TREE_INDEX = 0;
|
||
|
TREE_LEVEL = 0;
|
||
|
}
|
||
|
|
||
|
DISPLAY_LINE
|
||
|
{
|
||
|
CHANNEL = "Y";
|
||
|
EXPAND_STATUS = COLLAPSED;
|
||
|
RADIX = Binary;
|
||
|
TREE_INDEX = 1;
|
||
|
TREE_LEVEL = 0;
|
||
|
}
|
||
|
|
||
|
DISPLAY_LINE
|
||
|
{
|
||
|
CHANNEL = "Z";
|
||
|
EXPAND_STATUS = COLLAPSED;
|
||
|
RADIX = Binary;
|
||
|
TREE_INDEX = 2;
|
||
|
TREE_LEVEL = 0;
|
||
|
}
|
||
|
|
||
|
TIME_BAR
|
||
|
{
|
||
|
TIME = 0;
|
||
|
MASTER = TRUE;
|
||
|
}
|
||
|
;
|