We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed4e0a2 commit 9b169e5Copy full SHA for 9b169e5
src/top.v
@@ -19,7 +19,6 @@ module tt_um_cpu_top (
19
);
20
21
// All output pins must be assigned. If not used, assign to 0.
22
- assign uo_out = ui_in + uio_in; // Example: ou_out is the sum of ui_in and uio_in
23
assign uio_out = 0;
24
assign uio_oe = 0;
25
@@ -76,11 +75,11 @@ module tt_um_cpu_top (
76
75
.inst_done(inst_done),
77
.acc_bits(out_result)
78
79
- assign uo_out = out_result;
+ assign uo_out = out_result;
80
assign uio_out = 8'b0;
81
assign uio_oe = 8'b0;
82
83
// List all unused inputs to prevent warnings
84
- wire _unused = &{ena, clk, rst_n, 1'b0};
+ wire _unused = &{ena, 1'b0};
85
86
endmodule
0 commit comments