URL
https://opencores.org/ocsvn/encore/encore/trunk
Subversion Repositories encore
[/] [encore/] [trunk/] [fpmult/] [src/] [sp.vhd] - Rev 8
Go to most recent revision | Compare with Previous | Blame | View Log
-- megafunction wizard: %In-System Sources and Probes% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: altsource_probe -- ============================================================ -- File Name: sp.vhd -- Megafunction Name(s): -- altsource_probe -- -- Simulation Library Files(s): -- altera_mf -- ============================================================ -- ************************************************************ -- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE! -- -- 10.1 Build 153 11/29/2010 SJ Web Edition -- ************************************************************ --Copyright (C) 1991-2010 Altera Corporation --Your use of Altera Corporation's design tools, logic functions --and other software and tools, and its AMPP partner logic --functions, and any output files from any of the foregoing --(including device programming or simulation files), and any --associated documentation or information are expressly subject --to the terms and conditions of the Altera Program License --Subscription Agreement, Altera MegaCore Function License --Agreement, or other applicable license agreement, including, --without limitation, that your use is for the sole purpose of --programming logic devices manufactured by Altera and sold by --Altera or its authorized distributors. Please refer to the --applicable agreement for further details. LIBRARY ieee; USE ieee.std_logic_1164.all; LIBRARY altera_mf; USE altera_mf.all; ENTITY sp IS PORT ( probe : IN STD_LOGIC_VECTOR (510 DOWNTO 0); source : OUT STD_LOGIC_VECTOR (127 DOWNTO 0) ); END sp; ARCHITECTURE SYN OF sp IS SIGNAL sub_wire0 : STD_LOGIC_VECTOR (127 DOWNTO 0); COMPONENT altsource_probe GENERIC ( enable_metastability : STRING; instance_id : STRING; probe_width : NATURAL; sld_auto_instance_index : STRING; sld_instance_index : NATURAL; source_initial_value : STRING; source_width : NATURAL; lpm_type : STRING ); PORT ( probe : IN STD_LOGIC_VECTOR (510 DOWNTO 0); source : OUT STD_LOGIC_VECTOR (127 DOWNTO 0) ); END COMPONENT; BEGIN source <= sub_wire0(127 DOWNTO 0); altsource_probe_component : altsource_probe GENERIC MAP ( enable_metastability => "NO", instance_id => "SP", probe_width => 511, sld_auto_instance_index => "YES", sld_instance_index => 0, source_initial_value => " 0", source_width => 128, lpm_type => "altsource_probe" ) PORT MAP ( probe => probe, source => sub_wire0 ); END SYN; -- ============================================================ -- CNX file retrieval info -- ============================================================ -- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II" -- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all -- Retrieval info: CONSTANT: ENABLE_METASTABILITY STRING "NO" -- Retrieval info: CONSTANT: INSTANCE_ID STRING "SP" -- Retrieval info: CONSTANT: PROBE_WIDTH NUMERIC "511" -- Retrieval info: CONSTANT: SLD_AUTO_INSTANCE_INDEX STRING "YES" -- Retrieval info: CONSTANT: SLD_INSTANCE_INDEX NUMERIC "0" -- Retrieval info: CONSTANT: SOURCE_INITIAL_VALUE STRING " 0" -- Retrieval info: CONSTANT: SOURCE_WIDTH NUMERIC "128" -- Retrieval info: USED_PORT: probe 0 0 511 0 INPUT NODEFVAL "probe[510..0]" -- Retrieval info: USED_PORT: source 0 0 128 0 OUTPUT NODEFVAL "source[127..0]" -- Retrieval info: CONNECT: @probe 0 0 511 0 probe 0 0 511 0 -- Retrieval info: CONNECT: source 0 0 128 0 @source 0 0 128 0 -- Retrieval info: GEN_FILE: TYPE_NORMAL sp.vhd TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL sp.inc FALSE -- Retrieval info: GEN_FILE: TYPE_NORMAL sp.cmp TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL sp.bsf TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL sp_inst.vhd FALSE -- Retrieval info: LIB_FILE: altera_mf
Go to most recent revision | Compare with Previous | Blame | View Log