21 lines
859 B
PHP
21 lines
859 B
PHP
# -----------------------------------------------------------
|
|
include $(VHDL_MAKE_HOME)/defs.mk
|
|
# -----------------------------------------------------------
|
|
include $(LIB_PATH)/FIFO/ghdl/fifo_sync.inc
|
|
include $(LIB_PATH)/FIFO/ghdl/fifo_async.inc
|
|
# -----------------------------------------------------------
|
|
PKG_NAME := EMAC_TX
|
|
|
|
# -----------------------------------------------------------
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/misc/utils_pkg.vhd
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/rams/sim/src/dpram_1w1r2c_ro.vhd
|
|
$(PKG_NAME)_SRCS += $(FIFO_SYNC_SRCS)
|
|
$(PKG_NAME)_SRCS += $(FIFO_ASYNC_SRCS)
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/emac/src/piso.vhd
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/emac/src/crc32.vhd
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/emac/src/emac_types.vhd
|
|
$(PKG_NAME)_SRCS += $(LIB_PATH)/emac/src/emac_tx.vhd
|
|
|
|
# -----------------------------------------------------------
|
|
|