摘要:
Initial InstallThe Xilinx Integrated Software Environment (ISE)13.3is the first version that is supported byXilinxto run under RHEL/CentOS 6.x.If you have purchased a Xilinx development kit likethe SP605, the software should be on a DVD in the kit. However, it’s usually not the “latest & greates 阅读全文
摘要:
int Sqrt8(int a) { int i,c; int b = 0; if(a<=0x1000) { a<<=8; for(i = 0x40000000; i !=0; i >>= 2) { c = i + b; b >>= 1; if(c <= a) { a -= c; ... 阅读全文
摘要:
在使用ISE时候,我们经常在translate阶段会碰到这种错误,NgdBuild:604- logical block 'U5/U0' with type 'DCM0' could not be resolved. A pin name misspelling can cause this, a missing edif or ngc file, or the misspelling of a type name. Symbol 'DCM0' is not supported in target 'spartan3e'. 这是因 阅读全文
摘要:
曾经尝试过新建XilinxCoreLib库,然后把floating_point_v5_0_comp 添加进去,结果:不行。曾经尝试手动生成floating_point的IP核,然后把一堆东西添加进ISE,结果:不行。官方说法为:To work around this issue, the library files must be included in the current project and compiled again。感悟良久,突然感觉来了,在top moudle上右键点击Manual Compile Order,调整编译文件和编译顺序,遂解决之。 阅读全文
摘要:
FIFO和双端口RAM都是高级存储器.FIFO1.什么是FIFO?FIFO是英文First In First Out 的缩写,是一种先进先出的数据缓存器,他与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入某个指定的地址。2.什么情况下用FIFO?FIFO一般用于不同时钟域之间的数据传输,比如FIFO的一端时AD数据采集,另一端时计算机的PCI总线,假设其AD采集的速率为16位 100K SPS,那么每秒的数据量为100K×16bit=1.6Mb 阅读全文