📄 divida.tdf
字号:
-- megafunction wizard: %LPM_DIVIDE%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: divide
-- ============================================================
-- File Name: divida.tdf
-- Megafunction Name(s):
-- divide
-- ============================================================
-- ************************************************************
-- THIS IS A WIZARD GENERATED FILE. DO NOT EDIT THIS FILE!
-- ************************************************************
-- Copyright (C) 1988-2001 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, and any other
-- associated documentation or information provided by Altera or a partner
-- under Altera's Megafunction Partnership Program may be used only to
-- program PLD devices (but not masked PLD devices) from Altera. Any other
-- use of such megafunction design, net list, support information, device
-- programming or simulation file, or any other related documentation or
-- information is prohibited for any other purpose, including, but not
-- limited to modification, reverse engineering, de-compiling, or use with
-- any other silicon devices, unless such use is explicitly licensed under
-- a separate agreement with Altera or a megafunction partner. Title to
-- the intellectual property, including patents, copyrights, trademarks,
-- trade secrets, or maskworks, embodied in any such megafunction design,
-- net list, support information, device programming or simulation file, or
-- any other related documentation or information provided by Altera or a
-- megafunction partner, remains with Altera, the megafunction partner, or
-- their respective licensors. No other licenses, including any licenses
-- needed under any third party's intellectual property, are provided herein.
INCLUDE "divide.inc";
SUBDESIGN divida
(
numerator[15..0] : INPUT;
denominator[15..0] : INPUT;
quotient[15..0] : OUTPUT;
remainder[15..0] : OUTPUT;
)
VARIABLE
divide_component : divide WITH (
WIDTH_N = 16,
WIDTH_D = 16,
WIDTH_Q = 16,
WIDTH_R = 16,
WIDTH_D_MIN = 1,
LPM_PIPELINE = 0,
PIPELINE_DELAY = 0
);
BEGIN
remainder[15..0] = divide_component.remainder[15..0];
quotient[15..0] = divide_component.quotient[15..0];
divide_component.numerator[15..0] = numerator[15..0];
divide_component.denominator[15..0] = denominator[15..0];
END;
-- ============================================================
-- CNX file retrieval info
-- ============================================================
-- Retrieval info: PRIVATE: USER_WIDTH_D_MIN NUMERIC "1"
-- Retrieval info: PRIVATE: USE_DEF_WIDTH_D_MIN NUMERIC "0"
-- Retrieval info: PRIVATE: USE_NO_PIPELINE NUMERIC "1"
-- Retrieval info: PRIVATE: USE_DEF_PIPELINE_DELAY NUMERIC "1"
-- Retrieval info: PRIVATE: STAGE_POS_CUR_SEL NUMERIC "0"
-- Retrieval info: CONSTANT: WIDTH_N NUMERIC "16"
-- Retrieval info: CONSTANT: WIDTH_D NUMERIC "16"
-- Retrieval info: CONSTANT: WIDTH_Q NUMERIC "16"
-- Retrieval info: CONSTANT: WIDTH_R NUMERIC "16"
-- Retrieval info: CONSTANT: WIDTH_D_MIN NUMERIC "1"
-- Retrieval info: CONSTANT: LPM_PIPELINE NUMERIC "0"
-- Retrieval info: CONSTANT: PIPELINE_DELAY NUMERIC "0"
-- Retrieval info: USED_PORT: numerator 0 0 16 0 INPUT NODEFVAL numerator[15..0]
-- Retrieval info: USED_PORT: denominator 0 0 16 0 INPUT NODEFVAL denominator[15..0]
-- Retrieval info: USED_PORT: quotient 0 0 16 0 OUTPUT NODEFVAL quotient[15..0]
-- Retrieval info: USED_PORT: remainder 0 0 16 0 OUTPUT NODEFVAL remainder[15..0]
-- Retrieval info: CONNECT: @numerator 0 0 16 0 numerator 0 0 16 0
-- Retrieval info: CONNECT: @denominator 0 0 16 0 denominator 0 0 16 0
-- Retrieval info: CONNECT: quotient 0 0 16 0 @quotient 0 0 16 0
-- Retrieval info: CONNECT: remainder 0 0 16 0 @remainder 0 0 16 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -