OpenCores
URL https://opencores.org/ocsvn/hpdmc/hpdmc/trunk

Subversion Repositories hpdmc

[/] [hpdmc/] [trunk/] [hpdmc_ddr32/] [test/] [obuft.v] - Blame information for rev 21

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 21 lekernel
///////////////////////////////////////////////////////////////////////////////
2
// Copyright (c) 1995/2004 Xilinx, Inc.
3
// All Right Reserved.
4
///////////////////////////////////////////////////////////////////////////////
5
// Modified for HPDMC simulation, based on Xilinx 05/23/07 revision
6
///////////////////////////////////////////////////////////////////////////////
7
 
8
`timescale  1 ps / 1 ps
9
 
10
 
11
module OBUFT (O, I, T);
12
 
13
    parameter CAPACITANCE = "DONT_CARE";
14
    parameter integer DRIVE = 12;
15
    parameter IOSTANDARD = "DEFAULT";
16
    parameter SLEW = "SLOW";
17
 
18
    output O;
19
    input  I, T;
20
 
21
    bufif0 T1 (O, I, T);
22
 
23
    initial begin
24
 
25
        case (CAPACITANCE)
26
 
27
            "LOW", "NORMAL", "DONT_CARE" : ;
28
            default : begin
29
                          $display("Attribute Syntax Error : The attribute CAPACITANCE on OBUFT instance %m is set to %s.  Legal values for this attribute are DONT_CARE, LOW or NORMAL.", CAPACITANCE);
30
                          $finish;
31
                      end
32
 
33
        endcase
34
 
35
    end
36
 
37
endmodule
38
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.