Posts

Showing posts with the label Decoder

VLSI: 2-4 Decoder Dataflow Modelling

Image
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

Verilog: 8 to 1 Multiplexer (8-1 MUX) Dataflow Modelling with Testbench Code

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

VLSI: 4-1 MUX Dataflow Modelling with Testbench

VLSI: Half Subtractor and Full Subtractor Gate Level Modelling

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