File size: 380 Bytes
cb65407 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # This file is public domain, it can be freely copied without restrictions.
# SPDX-License-Identifier: CC0-1.0
TOPLEVEL_LANG ?= verilog
ifeq ($(TOPLEVEL_LANG),verilog)
VERILOG_SOURCES = $(shell pwd)/dff.sv
else ifeq ($(TOPLEVEL_LANG),vhdl)
VHDL_SOURCES = $(shell pwd)/dff.vhdl
endif
MODULE = test_dff
TOPLEVEL = dff
include $(shell cocotb-config --makefiles)/Makefile.sim
|