亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

integer

integer,整數/整型數,與小數/浮點數相對,是編程語言的基本數據類型之一,用以指示變量的數據類型,有時也用于常量(變量、表達式)的強制數據類型轉換。整型數據的長度及其取值范圍并不固定,受編譯環境影響。在不同的編程語言中做此類型聲明時,具體實現方式也可能會有所區別。
  • A thesis on developing multiple-precision integer libraries for cryptographic and other uses.

    A thesis on developing multiple-precision integer libraries for cryptographic and other uses.

    標簽: multiple-precision cryptographic developing libraries

    上傳時間: 2014-01-10

    上傳用戶:xiaohuanhuan

  • 關于FPGA流水線設計的論文

    關于FPGA流水線設計的論文\r\nThis work investigates the use of very deep pipelines for\r\nimplementing circuits in FPGAs, where each pipeline\r\nstage is limited to a single FPGA logic element (LE). The\r\narchitecture and VHDL design of a parameterized integer\r\na

    標簽: FPGA 流水線 論文

    上傳時間: 2013-09-03

    上傳用戶:wl9454

  • 寄存器和環路濾波器的設計

    The MAX2870 ultra-wideband phase-locked loop (PLL) and voltagecontrol oscillator (VCO) can operate in both integer-N and fractional-Nmodes, similar to the Analog Devices ADF4350 wideband synthesizer.This application note compares the MAX2870 and ADF4350 registers andloop filter design in detail. Users who already familiar with ADF4350 canuse this application note as a quick design reference.

    標簽: 寄存器 環路濾波器

    上傳時間: 2014-12-23

    上傳用戶:變形金剛

  • ADC轉換器技術用語 (A/D Converter Defi

    ANALOG INPUT BANDWIDTH is a measure of the frequencyat which the reconstructed output fundamental drops3 dB below its low frequency value for a full scale input. Thetest is performed with fIN equal to 100 kHz plus integer multiplesof fCLK. The input frequency at which the output is −3dB relative to the low frequency input signal is the full powerbandwidth.APERTURE JITTER is the variation in aperture delay fromsample to sample. Aperture jitter shows up as input noise.APERTURE DELAY See Sampling Delay.BOTTOM OFFSET is the difference between the input voltagethat just causes the output code to transition to the firstcode and the negative reference voltage. Bottom Offset isdefined as EOB = VZT–VRB, where VZT is the first code transitioninput voltage and VRB is the lower reference voltage.Note that this is different from the normal Zero Scale Error.CONVERSION LATENCY See PIPELINE DELAY.CONVERSION TIME is the time required for a completemeasurement by an analog-to-digital converter. Since theConversion Time does not include acquisition time, multiplexerset up time, or other elements of a complete conversioncycle, the conversion time may be less than theThroughput Time.DC COMMON-MODE ERROR is a specification which appliesto ADCs with differential inputs. It is the change in theoutput code that occurs when the analog voltages on the twoinputs are changed by an equal amount. It is usually expressed in LSBs.

    標簽: Converter Defi ADC 轉換器

    上傳時間: 2013-11-12

    上傳用戶:pans0ul

  • HDL的可綜合設計簡介

    本文簡單探討了verilog HDL設計中的可綜合性問題,適合HDL初學者閱讀     用組合邏輯實現的電路和用時序邏輯實現的   電路要分配到不同的進程中。   不要使用枚舉類型的屬性。   integer應加范圍限制。    通常的可綜合代碼應該是同步設計。   避免門級描述,除非在關鍵路徑中。

    標簽: HDL 綜合設計

    上傳時間: 2013-10-21

    上傳用戶:smallfish

  • 西門子S7-300 PLC模擬量轉換

    Analog Inputs and Outputs in an S7 PLC are represented in the PLC as a 16-bit integer. Over the nominal span of the analog input or output, the value of this integer will range between - 27648 and +27648. However, it is easier to use the analog values if they are scaled to the same units and ranges as the process being controlled. This applications tip describes methods for scaling analog values to and from engineering units.

    標簽: 300 PLC 西門子 模擬量

    上傳時間: 2013-11-17

    上傳用戶:3294322651

  • MPLAB C30用戶指南(英文)

    MPLAB C30用戶指南(英文) HIGHLIGHTSThe information covered in this chapter is as follows:• About this Guide• Recommended Reading• Troubleshooting• The Microchip Web Site• Development Systems Customer Notification Service• Customer Support Document LayoutThe document layout is as follows:• Chapter 1: Compiler Overview – describes MPLAB C30, development tools andfeature set.• Chapter 2: Differences between MPLAB C30 and ANSI C – describes thedifferences between the C language supported by MPLAB C30 syntax and thestandard ANSI-89 C.• Chapter 3: Using MPLAB C30 – describes how to use the MPLAB C30 compilerfrom the command line.• Chapter 4: MPLAB C30 Runtime Environment – describes the MPLAB C30runtime model, including information on sections, initialization, memory models, thesoftware stack and much more.• Chapter 5: Data Types – describes MPLAB C30 integer, floating point and pointerdata types.• Chapter 6: Device Support Files – describes the MPLAB C30 header and registerdefinition files, as well as how to use with SFR’s.• Chapter 7: Interrupts – describes how to use interrupts.• Chapter 8: Mixing Assembly Language and C Modules – provides guidelines tousing MPLAB C30 with MPLAB ASM30 assembly language modules.

    標簽: MPLAB C30 用戶 英文

    上傳時間: 2013-10-21

    上傳用戶:13925096126

  • 狀態機設計

    狀態機設計:8.1.1 數據類型定義語句TYPE語句的用法如下:TYPE 數據類型名IS 數據類型定義OF 基本數據類型;或TYPE 數據類型名IS 數據類型定義;TYPE st1 IS ARRAY ( 0 TO 15 ) OF STD_LOGIC ;TYPE week IS (sun,mon,tue,wed,thu,fri,sat) ; 8.1.1 數據類型定義語句TYPE m_state IS ( st0,st1,st2,st3,st4,st5 ) ;SIGNAL present_state,next_state : m_state ;TYPE BOOLEAN IS (FALSE,TRUE) ;TYPE my_logic IS ( '1' ,'Z' ,'U' ,'0' ) ;SIGNAL s1 : my_logic ;s1 <= 'Z' ;SUBTYPE 子類型名IS 基本數據類型RANGE 約束范圍;SUBTYPE digits IS integer RANGE 0 to 9 ;

    標簽: 狀態

    上傳時間: 2013-11-05

    上傳用戶:nem567397

  • MPC106 PCI Bridge/Memory Contr

    In this document, the term Ô60xÕ is used to denote a 32-bit microprocessor from the PowerPC architecture family that conforms to the bus interface of the PowerPC 601ª, PowerPC 603ª, or PowerPC 604 microprocessors. Note that this does not include the PowerPC 602ª microprocessor which has a multiplexed address/data bus. 60x processors implement the PowerPC architecture as it is speciÞed for 32-bit addressing, which provides 32-bit effective (logical) addresses, integer data types of 8, 16, and 32 bits,and ßoating-point data types of 32 and 64 bits (single-precision and double-precision).1.1 Overview The MPC106 provides an integrated high-bandwidth, high-performance, TTL-compatible interface between a 60x processor, a secondary (L2) cache or additional (up to four total) 60x processors, the PCI bus,and main memory. This section provides a block diagram showing the major functional units of the 106 and describes brießy how those units interact.Figure 1 shows the major functional units within the 106. Note that this is a conceptual block diagram intended to show the basic features rather than an attempt to show how these features are physically implemented on the device.

    標簽: Bridge Memory Contr MPC

    上傳時間: 2013-10-08

    上傳用戶:18711024007

  • 各種功能的計數器實例(VHDL源代碼)

    各種功能的計數器實例(VHDL源代碼):ENTITY counters IS  PORT  (   d  : IN  integer RANGE 0 TO 255;   clk  : IN BIT;   clear : IN BIT;   ld  : IN BIT;   enable : IN BIT;   up_down : IN BIT;   qa  : OUT  integer RANGE 0 TO 255;   qb  : OUT  integer RANGE 0 TO 255;   qc  : OUT  integer RANGE 0 TO 255;   qd  : OUT  integer RANGE 0 TO 255;   qe  : OUT  integer RANGE 0 TO 255;   qf  : OUT  integer RANGE 0 TO 255;   qg  : OUT  integer RANGE 0 TO 255;   qh  : OUT  integer RANGE 0 TO 255;   qi  : OUT  integer RANGE 0 TO 255;

    標簽: VHDL 計數器 源代碼

    上傳時間: 2014-11-30

    上傳用戶:半熟1994

主站蜘蛛池模板: 彰化县| 安义县| 长治县| 昌江| 龙江县| 南城县| 南京市| 资源县| 资中县| 衢州市| 铜鼓县| 页游| 拉孜县| 武隆县| 惠州市| 土默特左旗| 平乡县| 若尔盖县| 封开县| 台安县| 石棉县| 商南县| 清苑县| 磐石市| 乡城县| 蒙山县| 平度市| 平江县| 东至县| 唐河县| 苏州市| 定结县| 突泉县| 渝中区| 泰兴市| 兴文县| 广灵县| 方正县| 盐边县| 卢龙县| 克什克腾旗|