Verilogcode
Verilogcode
ASYNCHRONOUS COUNTER
input rst,en;
input clk;
output [3:0] q;
reg [3:0] q;
initial
begin
q=4'b0000;
end
begin
if (rst==0)
q=4'b0000;
if (en==1)
q=q+1;
else
q=4'b1111;
end
endmodule
module asc11_v;
// Inputs
reg rst;
reg clk;
reg en;
// Outputs
wire [3:0] q;
Verilog code Test bench code
asc uut (
.rst(rst),
.clk(clk),
.q(q)
);
initial begin
// Initialize Inputs
rst = 0;
clk = 0;
en=0;
end
Endmodule
D-FLIPFLOP
input d;
input clk;
input rst;
output q;
output qb;
reg q,qb;
begin
Verilog code Test bench code
if(rst==1)
q=1'b0;
else
q=d;
qb=~q;
end
endmodule
module dff1_v;
// Inputs
reg d;
reg clk;
reg rst;
// Outputs
wire q;
wire qb;
dff uut (
.d(d),
.clk(clk),
.rst(rst),
.q(q),
.qb(qb)
);
initial begin
Verilog code Test bench code
// Initialize Inputs
d = 0;
clk = 0;
rst = 0;
#100 rst=0;
#100 d=1;
#100 d=0;
#100 rst=0;
#100 d=1;
#100 d=0;
end
always
#50 clk=~clk;
endmodule
INVERTER
input a;
output b;
Verilog code Test bench code
assign b=~a;
endmodule
module inverter11_v;
// Inputs
reg a;
// Outputs
wire b;
inverter1 uut (
.a(a),
.b(b)
);
initial begin
// Initialize Inputs
a = 0;
#100;
a=1;
#100;
end
endmodule
JK FLIPFLOP
input j;
input k,rst;
input clk;
output q;
output qb;
reg q,qb;
begin
if(rst==0)
q=1'bz;
else begin
case({j,k})
2'b00:q=q;
2'b01:q=1'b0;
2'b10:q=1'b1;
default:q=~q;
endcase
end
qb=~q;
end
Verilog code Test bench code
endmodule
module jknew_v;
// Inputs
reg j;
reg k;
reg clk;
reg rst;
// Outputs
wire q;
wire qb;
jkff uut (
.j(j),
.k(k),
.clk(clk),
.q(q),
.qb(qb),
.rst(rst)
);
initial begin
// Initialize Inputs
j = 0;
k = 0;
Verilog code Test bench code
clk = 0;
rst = 0;
#100 rst=1;
end
endmodule
PARALLEL ADDER
input [2:0] a;
input [2:0] b;
output [3:0] y;
reg [3:0] y;
y=a+b;
end
Verilog code Test bench code
endmodule
module parr1_v;
// Inputs
reg [2:0] a;
reg [2:0] b;
// Outputs
wire [3:0] y;
parre uut (
.a(a),
.b(b),
.y(y)
);
initial begin
// Initialize Inputs
a = 0;
b = 0;
#100;
end
Verilog code Test bench code
initial begin
a=3'b001;b=3'b001;
#10
a=3'b011; b=3'b111;
#100 $stop;
end
endmodule
SERIAL ADDER
input a;
input b;
input start;
input clk;
output ready;
reg sum,carry,ready;
integer count;
initial count = 8;
begin
if(start)
begin
end
else
Verilog code Test bench code
begin
if(count<8)
begin
count=count+1;
sum=a^b^carry;
carry=(a&b)|(a&carry)|(b&carry);
result={sum,result[7:1]};
end
end
if(count==8)
ready=1;
else
ready=0;
end
endmodule
module saaad_v;
// Inputs
reg a;
reg b;
reg start;
reg clk;
// Outputs
wire ready;
sad uut (
.a(a),
.b(b),
.start(start),
.clk(clk),
.ready(ready),
.result(result)
);
initial begin
// Initialize Inputs
a = 0;
b = 0;
start = 1;
clk = 0;
#100;
#100
start=0;
clk=1;
a=1;
b=1;
Verilog code Test bench code
end
endmodule
RS FLIPFLOP
input s;
input r;
input clk;
output q;
output qb;
reg q,qb;
always @(r,s,clk)
begin
if(clk==1)
begin
case({s,r})
2'b00: q=q;
2'b01: q=0;
2'b10: q=1;
default: q=1'bz;
endcase
end
Verilog code Test bench code
qb=~q;
end
endmodule
module srff1_v;
// Inputs
reg s;
reg r;
reg clk;
// Outputs
wire q;
wire qb;
srff uut (
.s(s),
.r(r),
.clk(clk),
.q(q),
.qb(qb)
);
initial begin
// Initialize Inputs
clk=0;
Verilog code Test bench code
s=0;
r=0;
end
endmodule
input clk;
input rst;
output [3:0] q;
reg [3:0] q;
initial
begin
q=4'b0000;
end
begin
if(rst==1)
Verilog code Test bench code
q=q+1;
else
q=4'b0000;
end
endmodule
module sync_v;
// Inputs
reg rst;
reg clk;
// Outputs
wire [3:0] q;
asc uut (
.rst(rst),
.clk(clk),
.q(q)
);
initial begin
// Initialize Inputs
rst = 0;
clk = 0;
Verilog code Test bench code
#10 rst=1;
end
endmodule
T FLIPFLOP
input t;
input clk;
input rst;
output q;
output qb;
reg q,qb;
begin
if(rst==0)
q=1'bz;
else
case(t)
1'b0:q=q;
default:q=~t;
endcase
Verilog code Test bench code
qb=~q;
end
endmodule
module tff111_v;
// Inputs
reg t;
reg clk;
reg rst;
// Outputs
wire q;
wire qb;
tff11 uut (
.t(t),
.clk(clk),
.rst(rst),
.q(q),
.qb(qb)
);
initial begin
// Initialize Inputs
Verilog code Test bench code
t = 0;
clk = 0;
rst = 0;
#100 rst=1;
#100 t=1;
t=0;
#100 t=1;
end
endmodule
TRANSMISSION GATE
input x;
input xb;
input i;
output o;
reg o;
always @ (i or x)
begin
Verilog code Test bench code
o=i;
else
o=1'bz;
end
endmodule
module tg11_v;
// Inputs
reg x;
reg xb;
reg i;
// Outputs
wire o;
tg uut (
.x(x),
.xb(xb),
.i(i),
.o(o)
);
initial begin
// Initialize Inputs
Verilog code Test bench code
x = 0;
xb = 0;
i = 0;
#100 i=0;
#10 i=1;
end
endmodule
TRI-STATE BUFFER
input a;
input b;
output y;
reg y;
always@(a,b)
begin
if(b==1'b1)
y=a;
else
y=1'bz;
Verilog code Test bench code
end
endmodule
module buf_v;
// Inputs
reg a;
reg b;
// Outputs
wire y;
tristate1 uut (
.a(a),
.b(b),
.y(y)
);
initial begin
// Initialize Inputs
a = 0;
b = 0;
#100 a=0;
Verilog code Test bench code
#100 b=1;
#100 a=1;
#100 b=1;
end
endmodule
input a;
input b;
output not1;
output and1;
output nand1;
output or1;
output nor1;
output exor1;
output exnor1;
assign not1=~a;
assign and1=a&b;
assign nand1=~(a&b);
assign or1=a|b;
assign nor1=~(a|b);
assign exor1=a^b;
assign exnor1=~(a^b);
Verilog code Test bench code
endmodule
module uni1_v;
// Inputs
reg a;
reg b;
// Outputs
wire not1;
wire and1;
wire nand1;
wire or1;
wire nor1;
wire exor1;
wire exnor1;
uni uut (
.a(a),
.b(b),
.not1(not1),
.and1(and1),
.nand1(nand1),
.or1(or1),
.nor1(nor1),
.exor1(exor1),
.exnor1(exnor1)
);
Verilog code Test bench code
initial begin
// Initialize Inputs
a = 0;
b = 0;
end
endmodule
input j;
input k;
input clk;
output q;
output qb;
reg tq,q,qb;
always @ (clk)
begin
if(!clk)
Verilog code Test bench code
begin
tq=1'b0;
tq=1'b1;
tq=~tq;
end
if(clk)
begin
q=tq;
qb=~tq;
end
end
endmodule
module msjkff1_v;
// Inputs
reg j;
reg k;
reg clk;
// Outputs
wire q;
wire qb;
Verilog code Test bench code
msjk1 uut (
.j(j),
.k(k),
.clk(clk),
.q(q),
.qb(qb)
);
initial begin
// Initialize Inputs
j = 0;
k = 0;
clk = 0;
end
endmodule