We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cdfb3e commit f2cf989Copy full SHA for f2cf989
3 files changed
cpu/testbenches/alu_tb.sv
@@ -6,7 +6,7 @@ module alu_tb;
6
logic carry_in;
7
logic [31:0] a, b;
8
wire [31:0] out;
9
- wire [ 3:0] status;
+ alu_status_t status;
10
11
alu alu0 (.*);
12
cpu/testbenches/cu_tb.sv
@@ -14,7 +14,7 @@ module cu_tb;
14
logic wr;
15
16
logic oe_alu;
17
- logic [3:0] alu_op;
+ alu_op_e alu_op;
18
19
reg_mask_e a_reg_mask;
20
reg_mask_e b_reg_mask;
cpu/testbenches/status_reg_tb.sv
@@ -3,8 +3,8 @@ import reg_pkg::*;
3
module status_reg_tb;
4
logic clk;
5
logic rst = 0;
- tri [5:0] a, b;
- logic [5:0] in;
+ tri status_t a, b;
+ status_t in;
logic oe_a, oe_b, ld;
alu_status_t alu_status_in;
logic ld_alu_status;
0 commit comments