10 lines
346 B
Batchfile
10 lines
346 B
Batchfile
@ECHO OFF
|
|
set GHDL_STD=08
|
|
set GHDL_FLAGS=-v --std=%GHDL_STD% --workdir=ghdl
|
|
set GHDL_FLAGS_IEEE=-v --std=%GHDL_STD% --workdir=ghdl --ieee=standard
|
|
|
|
ECHO Build automatically outdated files and construct design
|
|
ghdl -m %GHDL_FLAGS_IEEE% gc_d_decoder_tb
|
|
ghdl -m %GHDL_FLAGS_IEEE% -fsynopsys fifo_async_tb
|
|
ghdl -m %GHDL_FLAGS_IEEE% -fsynopsys top_tb
|