Latest Post

Ads

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

Ads

Popular posts from this blog

VLSI: BCD to Excess 3 and Excess 3 to BCD Dataflow Modelling

Full Subtractor Verilog Code in Structural/Gate Level Modelling with Testbench

VLSI: 4-1 MUX Dataflow Modelling with Testbench

VLSI: Half Subtractor and Full Subtractor Gate Level Modelling

VLSI: 1-4 DEMUX (Demultiplexer) Dataflow Modelling with Testbench