Set block size to 1kB. Block size is set via plusarg +dlen=NNN

This commit is contained in:
Nikolay Puzanov
2023-06-15 23:08:50 +03:00
parent 7e96777b89
commit 7afbe06799
15 changed files with 212 additions and 94 deletions

View File

@@ -1,3 +1,9 @@
#!/usr/bin/env bash
vsim -batch -voptargs=+acc=npr -do "run -all" -quiet -lib testbench top
if [ -n "$1" ]; then
dlen_arg="+dlen=$1"
else
dlen_arg=""
fi
vsim -batch -voptargs=+acc=npr -do "run -all" -quiet $dlen_arg -lib testbench top