URL
https://opencores.org/ocsvn/2d_game_console/2d_game_console/trunk
Subversion Repositories 2d_game_console
[/] [2d_game_console/] [trunk/] [Processor_Quartus/] [IP_DIVIDE.vhd] - Rev 2
Compare with Previous | Blame | View Log
-- megafunction wizard: %LPM_DIVIDE% -- GENERATION: STANDARD -- VERSION: WM1.0 -- MODULE: LPM_DIVIDE -- ============================================================ -- File Name: IP_DIVIDE.vhd -- Megafunction Name(s): -- LPM_DIVIDE -- -- Simulation Library Files(s): -- lpm -- ============================================================ -- ************************************************************ -- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE! -- -- 17.0.0 Build 595 04/25/2017 SJ Lite Edition -- ************************************************************ --Copyright (C) 2017 Intel Corporation. All rights reserved. --Your use of Intel 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 Intel Program License --Subscription Agreement, the Intel Quartus Prime License Agreement, --the Intel 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 Intel and sold by Intel or its --authorized distributors. Please refer to the applicable --agreement for further details. LIBRARY ieee; USE ieee.std_logic_1164.all; LIBRARY lpm; USE lpm.all; ENTITY IP_DIVIDE IS PORT ( clock : IN STD_LOGIC ; denom : IN STD_LOGIC_VECTOR (15 DOWNTO 0); numer : IN STD_LOGIC_VECTOR (15 DOWNTO 0); quotient : OUT STD_LOGIC_VECTOR (15 DOWNTO 0); remain : OUT STD_LOGIC_VECTOR (15 DOWNTO 0) ); END IP_DIVIDE; ARCHITECTURE SYN OF ip_divide IS SIGNAL sub_wire0 : STD_LOGIC_VECTOR (15 DOWNTO 0); SIGNAL sub_wire1 : STD_LOGIC_VECTOR (15 DOWNTO 0); COMPONENT lpm_divide GENERIC ( lpm_drepresentation : STRING; lpm_hint : STRING; lpm_nrepresentation : STRING; lpm_pipeline : NATURAL; lpm_type : STRING; lpm_widthd : NATURAL; lpm_widthn : NATURAL ); PORT ( clock : IN STD_LOGIC ; denom : IN STD_LOGIC_VECTOR (15 DOWNTO 0); numer : IN STD_LOGIC_VECTOR (15 DOWNTO 0); quotient : OUT STD_LOGIC_VECTOR (15 DOWNTO 0); remain : OUT STD_LOGIC_VECTOR (15 DOWNTO 0) ); END COMPONENT; BEGIN quotient <= sub_wire0(15 DOWNTO 0); remain <= sub_wire1(15 DOWNTO 0); LPM_DIVIDE_component : LPM_DIVIDE GENERIC MAP ( lpm_drepresentation => "SIGNED", lpm_hint => "LPM_REMAINDERPOSITIVE=TRUE", lpm_nrepresentation => "SIGNED", lpm_pipeline => 4, lpm_type => "LPM_DIVIDE", lpm_widthd => 16, lpm_widthn => 16 ) PORT MAP ( clock => clock, denom => denom, numer => numer, quotient => sub_wire0, remain => sub_wire1 ); END SYN; -- ============================================================ -- CNX file retrieval info -- ============================================================ -- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone IV E" -- Retrieval info: PRIVATE: PRIVATE_LPM_REMAINDERPOSITIVE STRING "TRUE" -- Retrieval info: PRIVATE: PRIVATE_MAXIMIZE_SPEED NUMERIC "-1" -- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0" -- Retrieval info: PRIVATE: USING_PIPELINE NUMERIC "1" -- Retrieval info: PRIVATE: VERSION_NUMBER NUMERIC "2" -- Retrieval info: PRIVATE: new_diagram STRING "1" -- Retrieval info: LIBRARY: lpm lpm.lpm_components.all -- Retrieval info: CONSTANT: LPM_DREPRESENTATION STRING "SIGNED" -- Retrieval info: CONSTANT: LPM_HINT STRING "LPM_REMAINDERPOSITIVE=TRUE" -- Retrieval info: CONSTANT: LPM_NREPRESENTATION STRING "SIGNED" -- Retrieval info: CONSTANT: LPM_PIPELINE NUMERIC "4" -- Retrieval info: CONSTANT: LPM_TYPE STRING "LPM_DIVIDE" -- Retrieval info: CONSTANT: LPM_WIDTHD NUMERIC "16" -- Retrieval info: CONSTANT: LPM_WIDTHN NUMERIC "16" -- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT NODEFVAL "clock" -- Retrieval info: USED_PORT: denom 0 0 16 0 INPUT NODEFVAL "denom[15..0]" -- Retrieval info: USED_PORT: numer 0 0 16 0 INPUT NODEFVAL "numer[15..0]" -- Retrieval info: USED_PORT: quotient 0 0 16 0 OUTPUT NODEFVAL "quotient[15..0]" -- Retrieval info: USED_PORT: remain 0 0 16 0 OUTPUT NODEFVAL "remain[15..0]" -- Retrieval info: CONNECT: @clock 0 0 0 0 clock 0 0 0 0 -- Retrieval info: CONNECT: @denom 0 0 16 0 denom 0 0 16 0 -- Retrieval info: CONNECT: @numer 0 0 16 0 numer 0 0 16 0 -- Retrieval info: CONNECT: quotient 0 0 16 0 @quotient 0 0 16 0 -- Retrieval info: CONNECT: remain 0 0 16 0 @remain 0 0 16 0 -- Retrieval info: GEN_FILE: TYPE_NORMAL IP_DIVIDE.vhd TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL IP_DIVIDE.inc FALSE -- Retrieval info: GEN_FILE: TYPE_NORMAL IP_DIVIDE.cmp TRUE -- Retrieval info: GEN_FILE: TYPE_NORMAL IP_DIVIDE.bsf FALSE -- Retrieval info: GEN_FILE: TYPE_NORMAL IP_DIVIDE_inst.vhd FALSE -- Retrieval info: LIB_FILE: lpm