-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathhalf_adder_test.v
executable file
·49 lines (37 loc) · 1.09 KB
/
half_adder_test.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
`timescale 1ns / 1ps
/*
Group Members: Luis Calderon and Warren Seto
Lab Name: Introduction to Xilinx (Lab 1)
Project Name: eng312_proj1
Design Name: half_adder_test.v
Design Description: Verilog Test Fixture created by ISE for module: half_adder
*/
module half_adder_test;
// Input Registers:
reg iA;
reg iB;
// Output Registers:
wire oSUM;
wire oCARRY;
// Instantiate the Unit Under Test (UUT)
half_adder uut
(
.iA(iA),
.iB(iB),
.oSUM(oSUM),
.oCARRY(oCARRY)
);
// The code below tests the half-adder by manually changing the values of each input register
initial begin
// Set the both input registers as 0 as a default
iA = 0;
iB = 0;
// For five seconds, set one register to 1 while leaving the other as its default 0
#5 iA = 0; iB = 1;
// For five seconds, set the other register to 1 while flipping the other to its default 0
#5 iA = 1; iB = 0;
// For five seconds, set both registers to 1
#5 iA = 1; iB = 1;
end
initial #25 $finish; // The test should run for a total of 25 nanoseconds
endmodule