Q2:One-hot FSM equations

江左子固發表於2024-04-16

題目網站

module top_module (
    input [5:0] y,
    input w,
    output Y1,
    output Y3
);

    assign Y1 = y[0] & w;
    assign Y3 = (y[1] | y[2] | y[4] | y[5]) & ~w;
    
endmodule

相關文章