Commit 361090f2 authored by Wesley W. Terpstra's avatar Wesley W. Terpstra

tlu: remove unused signals

parent c6838080
...@@ -158,7 +158,6 @@ architecture behavioral of wb_timestamp_latch is ...@@ -158,7 +158,6 @@ architecture behavioral of wb_timestamp_latch is
-- LATCH UNIT(s) -- LATCH UNIT(s)
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- trigger sync chain -- trigger sync chain
signal triggers_synced : channel;
signal triggers_pos_edge_synced : channel; signal triggers_pos_edge_synced : channel;
signal triggers_neg_edge_synced : channel; signal triggers_neg_edge_synced : channel;
-- tm latch registers -- tm latch registers
...@@ -176,8 +175,6 @@ architecture behavioral of wb_timestamp_latch is ...@@ -176,8 +175,6 @@ architecture behavioral of wb_timestamp_latch is
signal rd : channel; signal rd : channel;
signal we : channel; signal we : channel;
signal rd_empty : channel; signal rd_empty : channel;
signal wr_empty : channel;
signal wr_full : channel;
signal rd_count : t_cnt_array; signal rd_count : t_cnt_array;
signal wr_count : t_cnt_array; signal wr_count : t_cnt_array;
...@@ -287,7 +284,7 @@ begin -- behavioral ...@@ -287,7 +284,7 @@ begin -- behavioral
clk_i => ref_clk_i, clk_i => ref_clk_i,
rst_n_i => nRst_i, rst_n_i => nRst_i,
data_i => triggers_i(i), data_i => triggers_i(i),
synced_o => triggers_synced(i), synced_o => open,
npulse_o => triggers_neg_edge_synced(i), npulse_o => triggers_neg_edge_synced(i),
ppulse_o => triggers_pos_edge_synced(i)); ppulse_o => triggers_pos_edge_synced(i));
...@@ -317,8 +314,8 @@ begin -- behavioral ...@@ -317,8 +314,8 @@ begin -- behavioral
clk_wr_i => ref_clk_i, clk_wr_i => ref_clk_i,
d_i => tm_fifo_in(i), d_i => tm_fifo_in(i),
we_i => we(i), we_i => we(i),
wr_empty_o => wr_empty(i), wr_empty_o => open,
wr_full_o => wr_full(i), wr_full_o => open,
wr_almost_empty_o => open, wr_almost_empty_o => open,
wr_almost_full_o => open, wr_almost_full_o => open,
wr_count_o => open, wr_count_o => open,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment