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