Skip to content

Commit cd9bc71

Browse files
committed
i_sel
1 parent ec494c8 commit cd9bc71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mux4.veryl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ module Mux4 #(
44
param Width: u32 = 32,
55
) (
66
i_data: input logic<Width> [4],
7-
i_s : input logic<2> ,
7+
i_sel : input logic<2> ,
88
o_data: output logic<Width> ,
99
) {
10-
assign o_data = i_data[i_s];
10+
assign o_data = i_data[i_sel];
1111
}
1212

1313
#[test(mux4)]

0 commit comments

Comments
 (0)