Cleanup of Verilog code

This commit is contained in:
2018-11-24 20:42:48 +01:00
parent 725c9a66e9
commit 7b64e027e8
4 changed files with 13 additions and 10 deletions

View File

@ -12,7 +12,7 @@ TBOUTPUT = vgasquare_tb.vcd #THIS NEEDS TO MATCH THE OUTPUT FILE
# BE CAREFUL WHEN CHANGING ITEMS BELOW THIS LINE
###############################################################################
#TOOL OPTIONS
COFLAGS = -o
COFLAGS = -o
SFLAGS =
SOUTPUT = -lxt #SIMULATOR OUTPUT TYPE
#TOOL OUTPUT
@ -20,7 +20,7 @@ COUTPUT = vgasquare_tb.vpp #COMPILER OUTPUT
###############################################################################
#MAKE DIRECTIVES
check : $(TESTBENCH) $(SRC)
$(COMPILER) -v $(SRC)
$(COMPILER) $(SRC)
simulate: $(COUTPUT)
$(SIMULATOR) $(SFLAGS) $(COUTPUT) $(SOUTPUT)