-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsim.v
59 lines (55 loc) · 1.24 KB
/
sim.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
50
51
52
53
54
55
56
57
58
59
/* ------------------------------------------------ *
* Title : ENC Simulator *
* Project : Pmod ENC Decoder *
* ------------------------------------------------ *
* File : sim.v *
* Author : Yigit Suoglu *
* Last Edit : 05/02/2021 *
* ------------------------------------------------ *
* Description : Simulation code for ENC *
* ------------------------------------------------ */
// `include "Sources/enc.v"
module tb();
reg clk, A, B, rst;
wire dir0, dir1;
always #5 clk <= ~clk;
enc uut(clk,A,B,dir0,dir1,,,,);
initial
begin
$dumpfile("sim.vcd");
$dumpvars(0, clk);
$dumpvars(1, A);
$dumpvars(2, B);
$dumpvars(3, dir0);
$dumpvars(4, dir1);
#40000
$finish;
end
initial
begin
clk <= 1;
A <= 1;
B <= 1;
rst <= 0;
#4
rst <= 1;
#10
rst <= 0;
#10000
A <= 0;
#5000
B <= 0;
#500
A <= 1;
#100
B <= 1;
#10000
B <= 0;
#5000
A <= 0;
#500
B <= 1;
#100
A <= 1;
end
endmodule