This website requires JavaScript.
Explore
Help
Sign In
brice
/
RISC-V_Verilog
Watch
1
Star
0
Fork
You've already forked RISC-V_Verilog
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b3fd2a827d
RISC-V_Verilog
/
rtl
/
mux2_1.v
7 lines
132 B
Verilog
Raw
Blame
History
module
mux2_1
(
input
[
31
:
0
]
A
,
B
,
input
S
,
output
[
31
:
0
]
O
)
;
assign
O
=
S
?
B
:
A
;
endmodule
Reference in New Issue
View Git Blame
Copy Permalink