123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- -- megafunction wizard: %ALTSQRT%
- -- GENERATION: STANDARD
- -- VERSION: WM1.0
- -- MODULE: ALTSQRT
- -- ============================================================
- -- File Name: alt_sqrt.vhd
- -- Megafunction Name(s):
- -- ALTSQRT
- --
- -- Simulation Library Files(s):
- -- altera_mf
- -- ============================================================
- -- ************************************************************
- -- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
- --
- -- 22.1std.2 Build 922 07/20/2023 SC Lite Edition
- -- ************************************************************
- --Copyright (C) 2023 Intel Corporation. All rights reserved.
- --Your use of Intel Corporation's design tools, logic functions
- --and other software and tools, and any 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 Intel Program License
- --Subscription Agreement, the Intel Quartus Prime License Agreement,
- --the Intel FPGA IP License Agreement, or other applicable license
- --agreement, including, without limitation, that your use is for
- --the sole purpose of programming logic devices manufactured by
- --Intel and sold by Intel or its authorized distributors. Please
- --refer to the applicable agreement for further details, at
- --https://fpgasoftware.intel.com/eula.
- LIBRARY ieee;
- USE ieee.std_logic_1164.all;
- LIBRARY altera_mf;
- USE altera_mf.all;
- ENTITY alt_sqrt IS
- PORT
- (
- clk : IN STD_LOGIC ;
- radical : IN STD_LOGIC_VECTOR (47 DOWNTO 0);
- q : OUT STD_LOGIC_VECTOR (23 DOWNTO 0);
- remainder : OUT STD_LOGIC_VECTOR (24 DOWNTO 0)
- );
- END alt_sqrt;
- ARCHITECTURE SYN OF alt_sqrt IS
- SIGNAL sub_wire0 : STD_LOGIC_VECTOR (23 DOWNTO 0);
- SIGNAL sub_wire1 : STD_LOGIC_VECTOR (24 DOWNTO 0);
- COMPONENT altsqrt
- GENERIC (
- pipeline : NATURAL;
- q_port_width : NATURAL;
- r_port_width : NATURAL;
- width : NATURAL;
- lpm_type : STRING
- );
- PORT (
- clk : IN STD_LOGIC ;
- radical : IN STD_LOGIC_VECTOR (47 DOWNTO 0);
- q : OUT STD_LOGIC_VECTOR (23 DOWNTO 0);
- remainder : OUT STD_LOGIC_VECTOR (24 DOWNTO 0)
- );
- END COMPONENT;
- BEGIN
- q <= sub_wire0(23 DOWNTO 0);
- remainder <= sub_wire1(24 DOWNTO 0);
- ALTSQRT_component : ALTSQRT
- GENERIC MAP (
- pipeline => 16,
- q_port_width => 24,
- r_port_width => 25,
- width => 48,
- lpm_type => "ALTSQRT"
- )
- PORT MAP (
- clk => clk,
- radical => radical,
- q => sub_wire0,
- remainder => sub_wire1
- );
- END SYN;
- -- ============================================================
- -- CNX file retrieval info
- -- ============================================================
- -- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone IV E"
- -- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
- -- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
- -- Retrieval info: CONSTANT: PIPELINE NUMERIC "16"
- -- Retrieval info: CONSTANT: Q_PORT_WIDTH NUMERIC "24"
- -- Retrieval info: CONSTANT: R_PORT_WIDTH NUMERIC "25"
- -- Retrieval info: CONSTANT: WIDTH NUMERIC "48"
- -- Retrieval info: USED_PORT: clk 0 0 0 0 INPUT NODEFVAL "clk"
- -- Retrieval info: USED_PORT: q 0 0 24 0 OUTPUT NODEFVAL "q[23..0]"
- -- Retrieval info: USED_PORT: radical 0 0 48 0 INPUT NODEFVAL "radical[47..0]"
- -- Retrieval info: USED_PORT: remainder 0 0 25 0 OUTPUT NODEFVAL "remainder[24..0]"
- -- Retrieval info: CONNECT: @clk 0 0 0 0 clk 0 0 0 0
- -- Retrieval info: CONNECT: @radical 0 0 48 0 radical 0 0 48 0
- -- Retrieval info: CONNECT: q 0 0 24 0 @q 0 0 24 0
- -- Retrieval info: CONNECT: remainder 0 0 25 0 @remainder 0 0 25 0
- -- Retrieval info: GEN_FILE: TYPE_NORMAL alt_sqrt.vhd TRUE
- -- Retrieval info: GEN_FILE: TYPE_NORMAL alt_sqrt.inc FALSE
- -- Retrieval info: GEN_FILE: TYPE_NORMAL alt_sqrt.cmp TRUE
- -- Retrieval info: GEN_FILE: TYPE_NORMAL alt_sqrt.bsf FALSE
- -- Retrieval info: GEN_FILE: TYPE_NORMAL alt_sqrt_inst.vhd FALSE
- -- Retrieval info: LIB_FILE: altera_mf
|