git-svn-id: http://moon:8086/svn/vhdl/trunk@1553 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-03-28 14:19:46 +00:00
parent 619807f898
commit f323c6fd7a
2 changed files with 27 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# -----------------------------------------------------------
include $(VHDL_HOME)/make/defs.mk
# -----------------------------------------------------------
include $(LIB_PATH)/VGA_ctrl/ghdl/vga_backend.inc
include $(LIB_PATH)/FIFO/ghdl/fifo_async.inc
include $(LIB_PATH)/CPUs/JCpu/ghdl/jcpu_core.inc
# -----------------------------------------------------------
SRCS += $(VGA_BACKEND_SRCS)
SRCS += $(FIFO_ASYNC_SRCS)
SRCS += $(JCPU_CORE_SRCS)
SRCS += ../src/main_xrom.vhdl
SRCS += ../src/main_irom.vhdl
SRCS += ../src/cpu_embedded.vhd
SRCS += ../src/vga_ctrl_top.vhd
SRCS += ../src/tb_vga_ctrl.vhd
# -----------------------------------------------------------
# Compile
TARGET := tb_vga_ctrl
ENTITY := tb_vga_ctrl
WITH_VCD := y
RUN_TIME := 1us
include $(VHDL_HOME)/make/ghdl.mk
# -----------------------------------------------------------