Advertisement
AlexanderAntonov

Untitled

Nov 2nd, 2022
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module mux_structural (
  2.     input [1:0] sel_bi
  3.     , input [3:0] data_bi
  4.     , output q_o
  5. );
  6.  
  7. assign q_o = data_bi[sel_bi];
  8.  
  9. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement