登录
首页 » Windows开发 » Synchronous FIFO for handling synchronous clock domains between the transmission

Synchronous FIFO for handling synchronous clock domains between the transmission

于 2022-02-01 发布 文件大小:2.08 kB
0 176
下载积分: 2 下载次数: 1

代码说明:

同步FIFO用于处理传输之间的同步时钟域

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • winrar rarlng.dll 去广告语言文件
    如果您不喜欢winrar弹出的广告,建议使用此软件。 如果您安装的winrar是从官方网站下载的 英文版,当打开软件的时候 会弹出广告,将此rarlng.dll放入安装目录下,程序的界面将变为中文,同时,不再弹出广告。如果您安装的是winrar汉化版,实际上是winrar的中国代理将原winrar.exe直接修改后的结果,不管是否注册,都会有广告。
    2022-03-04 20:14:48下载
    积分:1
  • I wrote a category c can be directory, as long as the copies on the past can be...
    我所写的一个c++类,可以得到目录,只要复制过去就可以直接运行.-I wrote a category c can be directory, as long as the copies on the past can be directly run.
    2022-05-08 03:39:02下载
    积分:1
  • VBO编程的基本功能实现,VC6环境,提高显示速度
    VBO编程的基本功能实现,VC6环境,提高显示速度-VBO realize the basic functions of programming, VC6 environment, and improve display speed
    2022-01-24 13:18:52下载
    积分:1
  • 使用C++编写的CRC32校验算法,使用了STL库,windows API和汇编等几种方法实现,并能比较它们之间执行的时间。...
    使用C++编写的CRC32校验算法,使用了STL库,windows API和汇编等几种方法实现,并能比较它们之间执行的时间。-The use of C++ Prepared CRC32 checksum algorithm, using the STL library, windows API, and the compilation of several methods, such as to achieve, and compare their execution time.
    2022-08-05 10:56:00下载
    积分:1
  • 利用c++编写的任意波形生器的人机界面,通过并口和下位机相连...
    利用c++编写的任意波形发生器的人机界面,通过并口和下位机相连-c prepared by the use of arbitrary waveform generator man-machine interface, through the parallel port and the next crew Linked
    2022-03-23 06:12:41下载
    积分:1
  • calculation A (n, x, y), 4; Gt; 0, ylt; Gt; 0:00 a.m., with a function call A (n...
    计算A(n,x,y),当n0,y0时,用函数调用A(n,x,y-1)代替,其中B=A(n,x,y-1)。在计算A(n,x,y-1)前,应先将参数n,x,y保存起来,待计算出A(n,x,y-1)的值之后,设其值为B,再回来计算A(n,B,x)。如果计算出A(n,x,y-1)时,仍有y-1>0,又要将n,x,y-1保存起来,去计算A(n,x,y-2),...,直到能计算出值,再返回来计算各中间值反复进行这一过程,直到最后求得最初的函数值-calculation A (n, x, y), 4; Gt; 0, ylt; Gt; 0:00 a.m., with a function call A (n, x, y-1) to replace, B = A (n, x, y-1 ). In the calculation of A (n, x, y-1), before first parameter n, x, y saved, the question calculate A (n, x, y-1) value, based Value B, A calculation of return (n, B , x). If calculated A (n, x, y-1), there is still y-1gt; 0, but also to n, x, y-1 saved, the calculation of A (n, x, y-2 ),..., until value can be calculated and then back to calculate the median repeated the process, until the last strike initial function
    2022-08-21 01:32:18下载
    积分:1
  • 本程序是RS232通讯源代码。
    本程序是rs232通讯的源代码。
    2023-07-08 20:05:04下载
    积分:1
  • Aars s Experimental Platform Experimental instructions
    奥尔斯公司实验平台的实验指导书,很不容易弄到的-Aars s Experimental Platform Experimental instructions
    2022-02-16 06:23:00下载
    积分:1
  • C语言实现贪吃蛇
    //: Snake.c /* * * * * * * * * * * * * * * * * * * * * * * // Project: RedSnake(贪吃蛇) // Author: Problue // Version: 1.0 // Date: 19:55 2012-10-29 * * * * * * * * * * * * * * * * * * * * * * */ #include #include #include #include "pcc32.h" // 定义地图的尺寸及坐标 #define MAP_WIDTH 32 // 地图宽度 #define MAP_HEIGHT 32 // 地图高度 #define OFFSET_X 1 // 地图左右的边距 #define OFFSET_Y 1 // 地图上下的边距 #define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度 #define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度 #define GotoMap(x, y) gotoTextPos((x) * 2, (y)) // 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物 #define BS_SPACE 0 #define BS_SHEAD 1 #define BS_SBODY 2 #define BS_STAIL 3 #define BS_FOOD 4 // 蛇默认长度 #define SNAKE_MIN_LEN 5 // 定义蛇运动方向: 上、下、左、右 #define DIR_UP 1 #define DIR_DOWN 2 #define DIR_LEFT 3
    2022-05-15 19:59:34下载
    积分:1
  • NG文件系统源码,是学习文件系统和虚拟文件系统,以及用户态到核心太文件系统的过程。...
    NG文件系统源码,是学习文件系统和虚拟文件系统,以及用户态到核心太文件系统的过程。-NG-source file system, file system is learning and virtual file system, and user state to the core of the process of file system too.
    2022-07-25 07:55:11下载
    积分:1
  • 696518资源总数
  • 106242会员总数
  • 10今日下载