charvibannur / 4-bit-register-verilog

Designed and implemented a four-bit Register with Four D flip–flops and Four 4 × 1 Multiplexers with mode selection inputs s1 and s0. The Register operates according to the values of select lines, if s1s0=00, no change, s1s0=01 complement output, s1s0=10, shift the bits to the right, & s1s0=11, shift the bits to left.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

4-bit-register-verilog

A verilog program that mimics the circuitry of a 4-bit register implemented with four 4x1 multiplexers and four D-Flipflops.
The register operates according to the value of the select lines as shown below:-

s1    s0     Output
0    0     No change
0    1     Complement Output
1    0     Shift the bits to the right
1    1     Shift the bits to the left
'Load' input is used to enable the D-FlipFlop.
'Reset' used to remove don't care states and set the initial values of the flip flops to 0.

The lib.v file contains the code for the basic gates, D-flip flop and a 2x1 multiplexer. The reg.v contains code for the 4-bit register and four 4x1 multiplexers. The reg_tb files contains the input test bench values used by the program as input.

Steps to run the code:-

Open command prompt in the location where the files are stored and type the following commands to run the code

iverilog -o reg_v lib.v reg.v reg_tb.v  
vvp reg_v  
gtkwave tb_file.vcd 

image

Team Members :

Charvi Bannur : https://github.com/charvibannur

Chaitra Bhat : https://github.com/Chaitra-Bhat383

Ankitha C : https://github.com/Ankithac45

Nireeksha D Rai : https://github.com/Nireekshadrai

About

Designed and implemented a four-bit Register with Four D flip–flops and Four 4 × 1 Multiplexers with mode selection inputs s1 and s0. The Register operates according to the values of select lines, if s1s0=00, no change, s1s0=01 complement output, s1s0=10, shift the bits to the right, & s1s0=11, shift the bits to left.


Languages

Language:Verilog 100.0%