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

Subversion Repositories virtual_rs232_terminal_with_lvds_lcd

[/] [virtual_rs232_terminal_with_lvds_lcd/] [trunk/] [rtl/] [ipcore_dir/] [fontrom.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 racerxdl
/*******************************************************************************
2
*     This file is owned and controlled by Xilinx and must be used             *
3
*     solely for design, simulation, implementation and creation of            *
4
*     design files limited to Xilinx devices or technologies. Use              *
5
*     with non-Xilinx devices or technologies is expressly prohibited          *
6
*     and immediately terminates your license.                                 *
7
*                                                                              *
8
*     XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"            *
9
*     SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR                  *
10
*     XILINX DEVICES.  BY PROVIDING THIS DESIGN, CODE, OR INFORMATION          *
11
*     AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION              *
12
*     OR STANDARD, XILINX IS MAKING NO REPRESENTATION THAT THIS                *
13
*     IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,                  *
14
*     AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE         *
15
*     FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY DISCLAIMS ANY                 *
16
*     WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE                  *
17
*     IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR           *
18
*     REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF          *
19
*     INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS          *
20
*     FOR A PARTICULAR PURPOSE.                                                *
21
*                                                                              *
22
*     Xilinx products are not intended for use in life support                 *
23
*     appliances, devices, or systems. Use in such applications are            *
24
*     expressly prohibited.                                                    *
25
*                                                                              *
26
*     (c) Copyright 1995-2009 Xilinx, Inc.                                     *
27
*     All rights reserved.                                                     *
28
*******************************************************************************/
29
// The synthesis directives "translate_off/translate_on" specified below are
30
// supported by Xilinx, Mentor Graphics and Synplicity synthesis
31
// tools. Ensure they are correct for your synthesis tool(s).
32
 
33
// You must compile the wrapper file fontrom.v when simulating
34
// the core, fontrom. When compiling the wrapper file, be sure to
35
// reference the XilinxCoreLib Verilog simulation library. For detailed
36
// instructions, please refer to the "CORE Generator Help".
37
 
38
`timescale 1ns/1ps
39
 
40
module fontrom(
41
        clka,
42
        addra,
43
        douta);
44
 
45
 
46
input clka;
47
input [10 : 0] addra;
48
output [7 : 0] douta;
49
 
50
// synthesis translate_off
51
 
52
      BLK_MEM_GEN_V4_1 #(
53
                .C_ADDRA_WIDTH(11),
54
                .C_ADDRB_WIDTH(11),
55
                .C_ALGORITHM(1),
56
                .C_BYTE_SIZE(9),
57
                .C_COMMON_CLK(0),
58
                .C_DEFAULT_DATA("0"),
59
                .C_DISABLE_WARN_BHV_COLL(0),
60
                .C_DISABLE_WARN_BHV_RANGE(0),
61
                .C_FAMILY("spartan3"),
62
                .C_HAS_ENA(0),
63
                .C_HAS_ENB(0),
64
                .C_HAS_INJECTERR(0),
65
                .C_HAS_MEM_OUTPUT_REGS_A(0),
66
                .C_HAS_MEM_OUTPUT_REGS_B(0),
67
                .C_HAS_MUX_OUTPUT_REGS_A(0),
68
                .C_HAS_MUX_OUTPUT_REGS_B(0),
69
                .C_HAS_REGCEA(0),
70
                .C_HAS_REGCEB(0),
71
                .C_HAS_RSTA(0),
72
                .C_HAS_RSTB(0),
73
                .C_HAS_SOFTECC_INPUT_REGS_A(0),
74
                .C_HAS_SOFTECC_INPUT_REGS_B(0),
75
                .C_HAS_SOFTECC_OUTPUT_REGS_A(0),
76
                .C_HAS_SOFTECC_OUTPUT_REGS_B(0),
77
                .C_INITA_VAL("0"),
78
                .C_INITB_VAL("0"),
79
                .C_INIT_FILE_NAME("fontrom.mif"),
80
                .C_LOAD_INIT_FILE(1),
81
                .C_MEM_TYPE(3),
82
                .C_MUX_PIPELINE_STAGES(0),
83
                .C_PRIM_TYPE(1),
84
                .C_READ_DEPTH_A(2048),
85
                .C_READ_DEPTH_B(2048),
86
                .C_READ_WIDTH_A(8),
87
                .C_READ_WIDTH_B(8),
88
                .C_RSTRAM_A(0),
89
                .C_RSTRAM_B(0),
90
                .C_RST_PRIORITY_A("CE"),
91
                .C_RST_PRIORITY_B("CE"),
92
                .C_RST_TYPE("SYNC"),
93
                .C_SIM_COLLISION_CHECK("ALL"),
94
                .C_USE_BYTE_WEA(0),
95
                .C_USE_BYTE_WEB(0),
96
                .C_USE_DEFAULT_DATA(1),
97
                .C_USE_ECC(0),
98
                .C_USE_SOFTECC(0),
99
                .C_WEA_WIDTH(1),
100
                .C_WEB_WIDTH(1),
101
                .C_WRITE_DEPTH_A(2048),
102
                .C_WRITE_DEPTH_B(2048),
103
                .C_WRITE_MODE_A("WRITE_FIRST"),
104
                .C_WRITE_MODE_B("WRITE_FIRST"),
105
                .C_WRITE_WIDTH_A(8),
106
                .C_WRITE_WIDTH_B(8),
107
                .C_XDEVICEFAMILY("aspartan3a"))
108
        inst (
109
                .CLKA(clka),
110
                .ADDRA(addra),
111
                .DOUTA(douta),
112
                .RSTA(),
113
                .ENA(),
114
                .REGCEA(),
115
                .WEA(),
116
                .DINA(),
117
                .CLKB(),
118
                .RSTB(),
119
                .ENB(),
120
                .REGCEB(),
121
                .WEB(),
122
                .ADDRB(),
123
                .DINB(),
124
                .DOUTB(),
125
                .INJECTSBITERR(),
126
                .INJECTDBITERR(),
127
                .SBITERR(),
128
                .DBITERR(),
129
                .RDADDRECC());
130
 
131
 
132
// synthesis translate_on
133
 
134
// XST black box declaration
135
// box_type "black_box"
136
// synthesis attribute box_type of fontrom is "black_box"
137
 
138
endmodule
139
 

powered by: WebSVN 2.1.0

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