forked from Abdul-muheet-ghani/VGA-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtb.sv
50 lines (43 loc) · 840 Bytes
/
tb.sv
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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 10/07/2023 04:01:03 PM
// Design Name:
// Module Name: tb
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module tb(
);
logic clk;
always@(*) begin
forever begin
clk = ~clk;
#5;
end
end
Simple_pattern u_Simple_pattern(
.clk(clk),
.o_hsync(),
.o_vsync(),
.o_red(),
.o_green(),
.o_blue()
);
initial begin
clk = 0;
#100000000;
$finish();
end
endmodule