git-svn-id: http://moon:8086/svn/vhdl/trunk@1509 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-03-24 10:10:41 +00:00
parent 36e1738f34
commit 018cb85f4b
6 changed files with 167 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
include ../../../lib/FIFO/ghdl/fifo_sync.inc
ROOT_PATH := ../../..
LIB_PATH := $(ROOT_PATH)/lib
MOD_PATH := $(LIB_PATH)/JBUS
SRCS += $(LIB_PATH)/misc/utils_pkg.vhd
SRCS += $(FIFO_SYNC_SRCS)
SRCS += $(MOD_PATH)/src/busmaster_types.vhd
SRCS += $(MOD_PATH)/src/busmaster_sync.vhd
SRCS += $(MOD_PATH)/src/tb_busmaster_sync.vhd
# Compile
TARGET := tb_busmaster_sync
ENTITY := tb_busmaster_sync
WITH_VCD := y
RUN_TIME := 40us
include $(ROOT_PATH)/Common/make/ghdl.mk