Posts

Showing posts from March, 2021

Ads

Verilog: SR Flip Flop Behavioral Modelling using If Else Statement with Testbench Code

Image
Verilog Code for SR Flip Flop Behavioral Modelling using If Else with Testbench Code module SR_FF(      input s,r,clock,reset,      output q, qb     ); reg q, qb;  always @ (posedge (clock))      begin           if (reset)               begin                   q <= 0;                   qb <=1;               end             else               begin                   if (s != R)                         begin              ...

Ads

Popular posts from this blog

1 to 4 DEMUX (Demultiplexer) Verilog CodeStructural/Gate Level Modelling with Testbench

VLSI: 2 Bit Magnitude Comparator Dataflow Modelling

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

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

VLSI: Half Subtractor and Full Subtractor Gate Level Modelling