mirror of
https://github.com/alexforencich/verilog-ethernet.git
synced 2025-01-14 06:43:18 +08:00
Remove stall cycle in axis_arb_mux
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
parent
e493c6cdb4
commit
a29282cdda
@ -168,7 +168,7 @@ arb_inst (
|
||||
.grant_encoded(grant_encoded)
|
||||
);
|
||||
|
||||
assign request = (s_axis_tvalid_reg & ~grant) | (s_axis_tvalid & grant);
|
||||
assign request = s_axis_tvalid | (s_axis_tvalid_reg & ~grant);
|
||||
assign acknowledge = grant & s_axis_tvalid_reg & {S_COUNT{m_axis_tready_int_reg}} & (LAST_ENABLE ? s_axis_tlast_reg : {S_COUNT{1'b1}});
|
||||
|
||||
always @* begin
|
||||
|
Loading…
x
Reference in New Issue
Block a user