CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 嵌入式/单片机编程 VHDL编程 搜索资源 - 数据缓存

搜索资源列表

  1. fifo

    0下载:
  2. FIFO 是一种先进先出数据缓存器,这是一个同步FIFO的VHDL源程序,将FIFO分成几个模块进行设计,最后用顶层文件进行模块化设计。-FIFO is a FIFO buffer, which is a synchronous FIFO in VHDL source code, will be divided into several modules FIFO design, top-level files Finally, the modular design.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-30
    • 文件大小:4596
    • 提供者:刀刀
  1. pingpang

    0下载:
  2. 关于乒乓操作的,对于数据缓存有很大的用处-On the ping-pong operation of data cache for the great usefulness of
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-28
    • 文件大小:167240
    • 提供者:敬亮
  1. LCD

    0下载:
  2. 基于FPGA_EP2C8的lcd控制器,显示字符,初学者使用-module lcd_driver(clk,rst,LCD_DATA,RS,RW,EN) input clk,rst //rst is the signal of reset,active low(0). output RS,RW,EN //R
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-30
    • 文件大小:877654
    • 提供者:翁俊杰
  1. FPGA_AD

    1下载:
  2. 基于 Cyclone EP1C6240C8 FPGA的ADS2807接口程序,主要用来使用FPGA控制ADS2807的采集。 采用FPGA来模拟ADS2807的时序来实现控制功能。 提供采样频率控制、AD通道转换、采样数据缓存等功能。-Cyclone EP1C6240C8 FPGA-based interface program of the ADS2807, ADS2807 is mainly used to control the use of FPGA collection. AD
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-28
    • 文件大小:246908
    • 提供者:icemoon1987
  1. vhdl

    0下载:
  2. 该系统通过顶层模块,调用7底层模块实现。7大模块底层模块为:理想信源数据接收模块,理想信源数据缓存模块,LAPS成帧模块,加扰并发送LAPS帧模块,接收LAPS帧并解扰模块,接收LAPS帧数据缓存模块,解帧并发送数据给理想信源模块。另,还有一个fifo模块,以便两个缓存模块调用。-The system top-level module, called 7, the bottom module. Bottom-7 module module: the ideal source of data re
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-02
    • 文件大小:6126
    • 提供者:mao
  1. FIFO-APP-IN-ASIC

    0下载:
  2. FIFO在ASIC中的设计应用,用于图像滤波处理,解决了ASIC中图像处理过程中数据缓存的需求,有一定实用价值-FIFO in the ASIC Design and application for image filtering, image processing ASIC to resolve the data caching process needs a certain practical value
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-03
    • 文件大小:260490
    • 提供者:tutu
  1. FIFO

    0下载:
  2. 运用Verilog 语言对FPGA实现同步的FIFO的数据缓存和传输功能。-FPGA Verilog language used to synchronize the FIFO data buffer and transmission functions.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-31
    • 文件大小:432620
    • 提供者:张伟
  1. EDAhelper

    0下载:
  2. 因而,SDRAM常作为数据缓存应用于高速数据传输系统中。目前,许多嵌入式设备的大容量、高速度存储器都采用SDRAM来实现,而且大多都是用专用芯片完成其控制电路,这不但提高了设计成本,而且使系统的硬件电路变得复杂。随着FPGA在嵌入式系统中的广泛应用,如果我们能够结合具体的需要,利用FPGA来设计自己的SDRAM控制器,这些问题就迎刃而解了-During University I studied computer networks have some knowledge about compute
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-07
    • 文件大小:75516
    • 提供者:宁欣
  1. fifo_module

    0下载:
  2. 基于vhdl的FIFO建模,主要是用于输入输出数据缓存-Vhdl-based FIFO modeling is mainly used for input and output data cache
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-12
    • 文件大小:1905
    • 提供者:李佳伟
  1. FIFO

    0下载:
  2. FIFO是英文First In First Out 的缩写,是一种先进先出的数据缓存器,他与普通存 储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写 入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存 储器那样可以由地址线决定读取或写入某个指定的地址-FIFO is the abbreviation of the English First In First Out, a FIFO data buffer, the differen
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-02
    • 文件大小:351423
    • 提供者:李海军
  1. syn_FIFO

    0下载:
  2. 同步FIFO,主要用于数据缓存,给异步FIFO打下基础,是个不错学习例子,在ncverilog中仿真通过-Synchronous FIFO, mainly used for the data cache, and lay the foundation to the asynchronous FIFO, is a good example of learning through simulation in ncverilog
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-11-20
    • 文件大小:1183
    • 提供者:liangldai
  1. eetop.cn_emif_brg

    2下载:
  2. fpga与DSP通过emif接口通信,fpga内部通过fifo进行数据缓存-fpga with the DSP through emif interface communication, fpga internal data cache by fifo
  3. 所属分类:VHDL编程

    • 发布日期:2013-12-24
    • 文件大小:4185
    • 提供者:gao
  1. asynchronous-FIFO-verilog

    0下载:
  2. FIFO是英文First In First Out 的缩写,是一种先进先出的数据缓存器,他与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单-FIFO is an abbreviation of the English First In First Out, is a first-in, first-out data buffer, the difference between him and ordinary memory is external read and write add
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-11-09
    • 文件大小:14636
    • 提供者:chenkun
  1. FPGA_sram_fifo

    0下载:
  2. 普通数据传输源码,采用SRAM虚拟FIFO做数据缓存。该虚拟FIFO只做外部数据上传到电脑的数据缓存。-Ordinary data transmission source, using SRAM virtual FIFO data cache. The virtual FIFO only the external data uploaded to the computer data cache.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-11-14
    • 文件大小:1412213
    • 提供者:Henry
  1. pingpong_operation_FIFO

    0下载:
  2. 通过fifo实现乒乓操作的功能,具有数据缓存的作用,特别适用于高低速的数据传输-Ping-pong operation realized by fifo function has the effect of data cache, especially suitable for high speed data transmission
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-05-08
    • 文件大小:1906369
    • 提供者:钟朗朗
  1. ad7606_control

    3下载:
  2. ad7606 fpga接口 程序 ,实现ad7606的串口 读写,数据缓存-ad7606 controller,writen by verilog.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2014-11-17
    • 文件大小:1024
    • 提供者:wewew
  1. Dual-port-RAM-data-acquisition

    0下载:
  2. 利用传统方法设计的高速数据采集系统由于集成度低、电路复杂,高速运行电路干扰大,电路可靠性低,难以满足高速数据采集工作的要求。应用FPGA可以把数据采集电路中的数据缓存、控制时序逻辑、地址译码、总线接口等电路全部集成进一片芯片中,高集成性增强了系统的稳定性,为高速数据采集提供了理想的解决方案。-Using traditional methods of high-speed data acquisition system design due to low integration, circuit
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-07
    • 文件大小:98832
    • 提供者:wu
  1. Synchronous-FIFO

    0下载:
  2. FIFO是英文FIRST-IN-FIRST-OUT的缩写,是一种先进先出的数据缓存器,它与普通存储器的区别是没有外部读写地址线,这样使用起来非常方便,但是缺点是只能顺序读写数据,其数据地址由内部读写指针自动加1完成 FIFO的主要功能是基于对双口RAM的读写控制来完成的,根据双口RAM的数据存储状况产生空满信号。双口RAM指的就是能同时对RAM进行读写操作的RAM存储器 -FIFO is an abbreviation of the English FIRST-IN-FIRST-OUT,
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-14
    • 文件大小:4055
    • 提供者:刘东辉
  1. uartfifo

    0下载:
  2. 串口通信例程,使用FIFO数据缓存。Verilog源码,基于FPGA的uart开发,加深理解。-uart communication
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-12-14
    • 文件大小:255747
    • 提供者:曹振吉
  1. AD_TO_FIFO

    0下载:
  2. A/D采集的数据缓存进入fifo,并通过读信号将FIFO中的数据送入网口(A/D sample data buffer to fifo,and then read enable to ethernet.)
  3. 所属分类:VHDL/FPGA/Verilog

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:preman
« 12 3 »
搜珍网 www.dssz.com