Hochladen der vorherigen Laborübungen.

Die Dateien selbst wurden nicht verändert.
This commit is contained in:
2024-02-22 10:42:38 +01:00
parent e114dd98d9
commit 7d9ff524f9
293 changed files with 12180 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# simulation control script for counters testbench
# prepare working library
file delete -force work
vlib work
vmap work work
# compile testbench
vlog tb_n_bit_counter.v
# compile design under test
vlog ../src/n_bit_counter.v
# execute simulation
vsim -c -t ps tb_n_bit_counter
# display simulation waveforms
do wave_counter.tcl
# run simulation for 500ns
run 500 ns