File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
library/util_axis_fifo_asym Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ module util_axis_fifo_asym #(
76
76
// bus width ratio
77
77
localparam RATIO = (RATIO_TYPE) ? S_DATA_WIDTH/ M_DATA_WIDTH : M_DATA_WIDTH/ S_DATA_WIDTH;
78
78
79
- // atomic parameters - NOTE: depth is always defined by the slave attributes
79
+ // atomic parameters - NOTE: depth is defined by the slave attributes by default
80
80
localparam A_WIDTH = (RATIO_TYPE) ? M_DATA_WIDTH : S_DATA_WIDTH;
81
81
localparam A_ADDRESS = (ADDRESS_WIDTH_PERSPECTIVE) ?
82
82
((FIFO_LIMITED) ? ((RATIO_TYPE) ? (ADDRESS_WIDTH- $clog2(RATIO)) : ADDRESS_WIDTH) : ADDRESS_WIDTH) :
@@ -271,14 +271,7 @@ module util_axis_fifo_asym #(
271
271
end
272
272
273
273
endgenerate
274
-
275
- // slave handshake counter
276
-
277
- reg s_axis_tlast_d = 0 ;
278
- always @(posedge s_axis_aclk) begin
279
- s_axis_tlast_d <= s_axis_tlast;
280
- end
281
-
274
+
282
275
generate
283
276
if (RATIO == 1 ) begin
284
277
initial begin
You can’t perform that action at this time.
0 commit comments