Skip to content

Commit

Permalink
Grants is now a wire (not reg)
Browse files Browse the repository at this point in the history
  • Loading branch information
aolofsson committed Aug 29, 2024
1 parent e4dd8cf commit 9c0c0d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions umi/sumi/rtl/umi_arbiter.v
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ module umi_arbiter
parameter TARGET = "DEFAULT" // SIM, ASIC, FPGA, ...
)
(// controls
input clk,
input nreset,
input [1:0] mode, // [00]=priority,[01]=roundrobin,[1x]=reserved
input [N-1:0] mask, // 1 = disable request, 0 = enable request
input [N-1:0] requests, // incoming requests
output reg [N-1:0] grants // outgoing grants
input clk,
input nreset,
input [1:0] mode, // [00]=priority,[01]=roundrobin,[1x]=reserved
input [N-1:0] mask, // 1 = disable request, 0 = enable request
input [N-1:0] requests, // incoming requests
output [N-1:0] grants // outgoing grants
);

wire collision;
Expand Down

0 comments on commit 9c0c0d6

Please sign in to comment.