Advertisement
kekellner

MUX_ALU.v

Nov 16th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module MUX_ALU (
  2.     input [7:0] _0,
  3.     input [7:0] _1,
  4.     input S,
  5.     output [7:0] Y
  6. );
  7.  
  8.     assign Y = S ? _1 : _0;
  9. endmodule
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement