Latest Post

Ads

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

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