Posts

Showing posts from 2021

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              ...

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