URL
https://opencores.org/ocsvn/xucpu/xucpu/trunk
Subversion Repositories xucpu
[/] [xucpu/] [trunk/] [src/] [components/] [BRAM/] [Makefile] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
ifeq ($(OS), Windows_NT)
GHDL:=/cygdrive/g/bin/ghdl-0.31-mcode-win32/bin/ghdl
else
GHDL:=/opt/ghdl/ghdl_mcode/translate/ghdldrv/ghdl_mcode
endif
SOURCE:= ../../util/file/hexio.vhdl \
../../components/multiplexer/MUX.vhdl \
generic_memory_block.vhdl \
ram_parts.vhdl \
RAM.vhdl \
tb_generic_ram.vhdl
run: tb_generic
$(GHDL) -r --ieee=synopsys tb_generic_ram \
--wave=tb_generic_ram.ghw \
--stop-time=10us
tb_generic:
$(GHDL) -a $(SOURCE)
$(GHDL) -e tb_generic_ram
# vim: set tw=0:
Go to most recent revision | Compare with Previous | Blame | View Log