-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprocessor_test.v
More file actions
61 lines (49 loc) · 1.14 KB
/
Copy pathprocessor_test.v
File metadata and controls
61 lines (49 loc) · 1.14 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 19:45:47 06/09/2018
// Design Name: Top_module
// Module Name: C:/Users/ASUS/Desktop/FPGA/Processor/Final_processor_without_TBs/processor_test.v
// Project Name: Final_processor
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: Top_module
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module processor_test;
// Inputs
reg com_over;
reg rst;
reg clk;
// Outputs
wire data_out;
// Instantiate the Unit Under Test (UUT)
Top_module uut (
.data_out(data_out),
.com_over(com_over),
.rst(rst),
.clk(clk)
);
initial begin
// Initialize Inputs
com_over = 0;
rst = 1;
clk = 0;
// Wait 100 ns for global reset to finish
#100;
// Add stimulus here
rst = 0;
$finish;
end
always clk = #20 ~clk;
endmodule