diff options
Diffstat (limited to 'FPGA/display/lpm_constant_1.vhd')
-rw-r--r-- | FPGA/display/lpm_constant_1.vhd | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/FPGA/display/lpm_constant_1.vhd b/FPGA/display/lpm_constant_1.vhd new file mode 100644 index 0000000..e335a61 --- /dev/null +++ b/FPGA/display/lpm_constant_1.vhd | |||
@@ -0,0 +1,109 @@ | |||
1 | -- megafunction wizard: %LPM_CONSTANT% | ||
2 | -- GENERATION: STANDARD | ||
3 | -- VERSION: WM1.0 | ||
4 | -- MODULE: LPM_CONSTANT | ||
5 | |||
6 | -- ============================================================ | ||
7 | -- File Name: lpm_constant_1.vhd | ||
8 | -- Megafunction Name(s): | ||
9 | -- LPM_CONSTANT | ||
10 | -- | ||
11 | -- Simulation Library Files(s): | ||
12 | -- lpm | ||
13 | -- ============================================================ | ||
14 | -- ************************************************************ | ||
15 | -- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE! | ||
16 | -- | ||
17 | -- 13.0.1 Build 232 06/12/2013 SP 1 SJ Web Edition | ||
18 | -- ************************************************************ | ||
19 | |||
20 | |||
21 | --Copyright (C) 1991-2013 Altera Corporation | ||
22 | --Your use of Altera Corporation's design tools, logic functions | ||
23 | --and other software and tools, and its AMPP partner logic | ||
24 | --functions, and any output files from any of the foregoing | ||
25 | --(including device programming or simulation files), and any | ||
26 | --associated documentation or information are expressly subject | ||
27 | --to the terms and conditions of the Altera Program License | ||
28 | --Subscription Agreement, Altera MegaCore Function License | ||
29 | --Agreement, or other applicable license agreement, including, | ||
30 | --without limitation, that your use is for the sole purpose of | ||
31 | --programming logic devices manufactured by Altera and sold by | ||
32 | --Altera or its authorized distributors. Please refer to the | ||
33 | --applicable agreement for further details. | ||
34 | |||
35 | |||
36 | LIBRARY ieee; | ||
37 | USE ieee.std_logic_1164.all; | ||
38 | |||
39 | LIBRARY lpm; | ||
40 | USE lpm.all; | ||
41 | |||
42 | ENTITY lpm_constant_1 IS | ||
43 | PORT | ||
44 | ( | ||
45 | result : OUT STD_LOGIC_VECTOR (6 DOWNTO 0) | ||
46 | ); | ||
47 | END lpm_constant_1; | ||
48 | |||
49 | |||
50 | ARCHITECTURE SYN OF lpm_constant_1 IS | ||
51 | |||
52 | SIGNAL sub_wire0 : STD_LOGIC_VECTOR (6 DOWNTO 0); | ||
53 | |||
54 | |||
55 | |||
56 | COMPONENT lpm_constant | ||
57 | GENERIC ( | ||
58 | lpm_cvalue : NATURAL; | ||
59 | lpm_hint : STRING; | ||
60 | lpm_type : STRING; | ||
61 | lpm_width : NATURAL | ||
62 | ); | ||
63 | PORT ( | ||
64 | result : OUT STD_LOGIC_VECTOR (6 DOWNTO 0) | ||
65 | ); | ||
66 | END COMPONENT; | ||
67 | |||
68 | BEGIN | ||
69 | result <= sub_wire0(6 DOWNTO 0); | ||
70 | |||
71 | LPM_CONSTANT_component : LPM_CONSTANT | ||
72 | GENERIC MAP ( | ||
73 | lpm_cvalue => 127, | ||
74 | lpm_hint => "ENABLE_RUNTIME_MOD=NO", | ||
75 | lpm_type => "LPM_CONSTANT", | ||
76 | lpm_width => 7 | ||
77 | ) | ||
78 | PORT MAP ( | ||
79 | result => sub_wire0 | ||
80 | ); | ||
81 | |||
82 | |||
83 | |||
84 | END SYN; | ||
85 | |||
86 | -- ============================================================ | ||
87 | -- CNX file retrieval info | ||
88 | -- ============================================================ | ||
89 | -- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II" | ||
90 | -- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0" | ||
91 | -- Retrieval info: PRIVATE: JTAG_ID STRING "NONE" | ||
92 | -- Retrieval info: PRIVATE: Radix NUMERIC "2" | ||
93 | -- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0" | ||
94 | -- Retrieval info: PRIVATE: Value NUMERIC "127" | ||
95 | -- Retrieval info: PRIVATE: nBit NUMERIC "7" | ||
96 | -- Retrieval info: PRIVATE: new_diagram STRING "1" | ||
97 | -- Retrieval info: LIBRARY: lpm lpm.lpm_components.all | ||
98 | -- Retrieval info: CONSTANT: LPM_CVALUE NUMERIC "127" | ||
99 | -- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO" | ||
100 | -- Retrieval info: CONSTANT: LPM_TYPE STRING "LPM_CONSTANT" | ||
101 | -- Retrieval info: CONSTANT: LPM_WIDTH NUMERIC "7" | ||
102 | -- Retrieval info: USED_PORT: result 0 0 7 0 OUTPUT NODEFVAL "result[6..0]" | ||
103 | -- Retrieval info: CONNECT: result 0 0 7 0 @result 0 0 7 0 | ||
104 | -- Retrieval info: GEN_FILE: TYPE_NORMAL lpm_constant_1.vhd TRUE | ||
105 | -- Retrieval info: GEN_FILE: TYPE_NORMAL lpm_constant_1.inc FALSE | ||
106 | -- Retrieval info: GEN_FILE: TYPE_NORMAL lpm_constant_1.cmp TRUE | ||
107 | -- Retrieval info: GEN_FILE: TYPE_NORMAL lpm_constant_1.bsf TRUE FALSE | ||
108 | -- Retrieval info: GEN_FILE: TYPE_NORMAL lpm_constant_1_inst.vhd FALSE | ||
109 | -- Retrieval info: LIB_FILE: lpm | ||