Latest Post

VLSI: 4-2 Encoder Dataflow Modelling

Image result for 4-2 encoder


module Four_Two_Encoder(
    input a0,
    input a1,
    input a2,
    input a3,
    output e0,
    output e1,
    output v
    );

assign e0 = a1 | a3;
assign e1 = a2 | a3;
assign v = a0;

endmodule

Popular posts from this blog

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

VLSI: 4-1 MUX Dataflow Modelling with Testbench

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

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

VLSI: Half Subtractor and Full Subtractor Gate Level Modelling