Skip to content

Commit 2261d38

Browse files
update mux selects
1 parent fa070f6 commit 2261d38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/control_unit.v

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ module control_unit (
138138
b0_sel <= 2'd2; // not used
139139
b1_sel <= 2'd1; // input3
140140
end
141-
default: begin
142-
a0_sel <= 2'd0;
143-
a1_sel <= 2'd0;
144-
b0_sel <= 2'd0;
145-
b1_sel <= 2'd0;
141+
default: begin // by default turn everything off, i.e. set systolic inputs to 0
142+
a0_sel <= 2'd2;
143+
a1_sel <= 2'd2;
144+
b0_sel <= 2'd2;
145+
b1_sel <= 2'd2;
146146
end
147147
endcase
148148
end

0 commit comments

Comments
 (0)