Use skid buffer on CSR IO bus to stop backpressure delay propagation into csr_unit

This commit is contained in:
Blaise Tine
2020-12-01 12:37:15 -08:00
parent 84a9f1e2d7
commit b677f724aa
7 changed files with 43 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ module VX_countones #(
parameter N = 10,
parameter N_BITS = $clog2(N+1)
) (
input wire [N-1:0] valids,
input wire [N-1:0] valids,
output wire [N_BITS-1:0] count
);
reg [N_BITS-1:0] count_r;