MMC/project/simulation/MMC_rtl_sim.do
2022-06-26 16:03:38 +08:00

23 lines
351 B
Plaintext

#
# Create work library
#
vlib work
#
# Compile sources
#
vlog D:/Documents/MMC/project/simulation/MMC_rtl_sim.v
vlog D:/Documents/MMC/project/simulation/CortexM0_SoC_tb.v
#
# Call vsim to invoke simulator
#
vsim -L D:/intelFPGA_pro/21.2/al3_10_ver -gui -novopt work.CortexM0_SoC_tb
#
# Add waves
#
add wave *
#
# Run simulation
#
run 1000ns
#
# End