19 lines
477 B
Makefile
19 lines
477 B
Makefile
# -----------------------------------------------------------
|
|
include $(VHDL_HOME)/defs.mk
|
|
# -----------------------------------------------------------
|
|
include jcpu_core.inc
|
|
|
|
SRCS += $(JCPU_CORE_SRCS)
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993.vhd
|
|
SRCS += $(LIB_PATH)/PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd
|
|
SRCS += ../src/itest_irom.vhdl
|
|
SRCS += ../src/tb_cpu_itest.vhd
|
|
|
|
# Compile
|
|
TARGET := cpu_itest
|
|
ENTITY := tb_cpu
|
|
WAVE_FORMAT := ghw
|
|
|
|
include $(VHDL_MAKE_HOME)/ghdl.mk
|
|
|