From 901475f64b636d0298cd7db35984651d5c4028dd Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Tue, 23 Mar 2021 16:52:12 +0000 Subject: [PATCH] - added git-svn-id: http://moon:8086/svn/vhdl/trunk@1497 cc03376c-175c-47c8-b038-4cd826a8556b --- .../decimator/CIC/ghdl/cic_decim_pipe.inc | 1 + .../decimator/CIC/ghdl/tb_cic_decim_pipe.gtkw | 31 +++++++++++++++++++ .../decimator/CIC/ghdl/tb_cic_decim_pipe.make | 20 ++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.gtkw create mode 100644 lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.make diff --git a/lib/radio/decimator/CIC/ghdl/cic_decim_pipe.inc b/lib/radio/decimator/CIC/ghdl/cic_decim_pipe.inc index 3bccb07..695c931 100644 --- a/lib/radio/decimator/CIC/ghdl/cic_decim_pipe.inc +++ b/lib/radio/decimator/CIC/ghdl/cic_decim_pipe.inc @@ -6,6 +6,7 @@ CUR_PATH := $(shell dirname $(lastword $(MAKEFILE_LIST))) # ----------------------------------------------------------- SRCS := $(LIB_PATH)/misc/utils_pkg.vhd +SRCS += $(LIB_PATH)/fixed/ieee_proposed/fixed_util_pkg.vhd SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_i_pipe.vhd SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_c_pipe.vhd SRCS += $(LIB_PATH)/radio/decimator/CIC/src/cic_decim_pipe.vhd diff --git a/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.gtkw b/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.gtkw new file mode 100644 index 0000000..257aaf4 --- /dev/null +++ b/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.gtkw @@ -0,0 +1,31 @@ +[*] +[*] GTKWave Analyzer v3.3.104 (w)1999-2020 BSI +[*] Tue Mar 23 16:51:24 2021 +[*] +[dumpfile] "/home/jens/work/vhdl/trunk/lib/radio/decimator/CIC/ghdl/build/tb_cic_decim_pipe/tb_cic_decim_pipe.vcd" +[dumpfile_mtime] "Tue Mar 23 16:51:19 2021" +[dumpfile_size] 1319624 +[savefile] "/home/jens/work/vhdl/trunk/lib/radio/decimator/CIC/ghdl/build/tb_cic_decim_pipe/tb_cic_decim_pipe.gtkw" +[timestart] 0 +[size] 1856 1136 +[pos] -1 -1 +*-33.339577 60100000000 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +[sst_width] 233 +[signals_width] 193 +[sst_expanded] 1 +[sst_vpaned_height] 331 +@28 +tb_cic_decim_pipe.clk +tb_cic_decim_pipe.srst +tb_cic_decim_pipe.vld_in +@8421 +tb_cic_decim_pipe.din[2:-15] +@28 +tb_cic_decim_pipe.vld_out +@8421 +tb_cic_decim_pipe.dout[2:-15] +@8029 +tb_cic_decim_pipe.xr +tb_cic_decim_pipe.yr +[pattern_trace] 1 +[pattern_trace] 0 diff --git a/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.make b/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.make new file mode 100644 index 0000000..acf584f --- /dev/null +++ b/lib/radio/decimator/CIC/ghdl/tb_cic_decim_pipe.make @@ -0,0 +1,20 @@ +include cic_decim_pipe.inc + +ROOT_PATH := ../../../../.. +LIB_PATH := $(ROOT_PATH)/lib + +SRCS += $(CIC_DECIM_PIPE_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 += $(LIB_PATH)/radio/decimator/CIC/src/tb_cic_decim_pipe.vhd + +# Compile +TARGET := tb_cic_decim_pipe +ENTITY := tb_cic_decim_pipe +WITH_VCD := y +RUN_TIME := 75us + +GHDL_OPTS := -P$(LIB_PATH)/fixed/ieee_proposed/build/fixed_pkg/ieee_proposed + +include $(ROOT_PATH)/Common/make/ghdl.mk +