mirror of
https://github.com/JefferyLi0903/MMC.git
synced 2025-02-06 10:28:22 +08:00
23 lines
351 B
Plaintext
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 |