Latest Post

VLSI: 2-4 Decoder Dataflow Modelling

Image result for 2-4 decoder


module Two_Four_Decoder(
    input a0,
    input a1,
    output d0,
    output d1,
    output d2,
    input d3
    );
assign d0 = ((~a0) & (~a1));
assign d1 = ((~a0) & a1);
assign d2 = (a0 & (~a1));
assign d3 = (a0 & a1);

endmodule

Popular posts from this blog