tcfix.tfi 802 Bytes


// 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