Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module mux_structural (
- input [1:0] sel_bi
- , input [3:0] data_bi
- , output q_o
- );
- assign q_o = data_bi[sel_bi];
- endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement