tcfix.tfi
802 Bytes
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
// TOOL: vlog2tf
// DATE: 10/17/03 13:14:46
// TITLE: Lattice Semiconductor Corporation
// MODULE: tcfix
// DESIGN: tcfix
// FILENAME: tcfix.tfi
// PROJECT: tcfix
// VERSION: 1.0
// NOTE: DO NOT EDIT THIS FILE
// This file is auto generated by the ispLEVER
// Inputs
reg D0;
reg CLE;
reg WE;
reg RE;
reg CEI;
// Outputs
wire CEO;
// Bidirs
// Instantiate the UUT
tcfix UUT (
.D0(D0),
.CLE(CLE),
.WE(WE),
.RE(RE),
.CEI(CEI),
.CEO(CEO)
);
// Initialize Inputs
`ifdef auto_init
initial begin
D0 = 0;
CLE = 0;
WE = 0;
RE = 0;
CEI = 0;
end
`endif