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: BCD to Excess 3 and Excess 3 to BCD Dataflow Modelling

Verilog: 4 to 2 Encoder Behavioral Modelling using Case Statement with Testbench Code

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

VLSI: 8-3 Encoder Dataflow Modelling with Testbench