Bugs mux2
From HDLBits
exams/review2015_fsmonehotPrevious
Nextbugs_nand3
This 8-bit wide 2-to-1 multiplexer doesn't work. Fix the bug(s).
Module Declaration
module top_module (
input sel,
input [7:0] a,
input [7:0] b,
output [7:0] out );
exams/review2015_fsmonehotPrevious
Nextbugs_nand3