pipeline refactoring

This commit is contained in:
Blaise Tine
2020-07-19 05:03:47 -04:00
parent 9cf8bf6149
commit 25f66e6490
71 changed files with 2242 additions and 2379 deletions

View File

@@ -1,8 +1,8 @@
module VX_countones #(
parameter N = 10
) (
input wire[N-1:0] valids,
output reg[$clog2(N):0] count
input wire [N-1:0] valids,
output reg [$clog2(N):0] count
);
integer i;