This commit is contained in:
pjht 2017-02-28 17:40:44 -06:00
parent bd53fe8783
commit a1a2f60666

14
verilog Executable file
View File

@ -0,0 +1,14 @@
if test $# -eq 0; then
echo "Usage: verilog [OPTIONS]... FILE [DUMPFILE]"
echo "-h: Display this help"
elif test $1 == "-h"; then
echo "Usage: verilog [OPTIONS]... FILE [DUMPFILE]"
echo "-h: Display this help"
elif test $# -eq 2; then
iverilog $1
vvp a.out
gtkwave $2
else
iverilog $1
vvp a.out
fi