
FPGA编程
amugou
这个作者很懒,什么都没留下…
展开
-
关于OpenMips
1、编译,参见《自己动手写CPU》P97mips-linux-as.exe -mips32 inst_rom.s -o inst_rom.o2、如何查看Section信息,参见《自己动手写CPU》P99mips-linux-readelf.exe -S inst_rom.o3、链接mips-linux-ld.exe -T ram.ld inst_rom.o -o in原创 2015-04-30 11:17:09 · 835 阅读 · 0 评论 -
UARTt的三种实现形式
UARTt的三种实现形式,使用FIFO和不使用FIFO原创 2015-04-30 10:59:53 · 503 阅读 · 0 评论 -
TestBench笔记
'timescale 1ns/1ps //时间单位1ns,时间精度1ps$readmemh("memimg.dat",mem); //将memimg.dat内容读取到mem$dumpfile("regfile.vcd"); //新建一个文件$dumpvars(0,regfile); //将实例化的regfile模块的变量从0时刻导出到regfile.v原创 2015-04-30 11:29:21 · 458 阅读 · 0 评论 -
如何处理跨时钟域
跨时钟域数据传递原文链接:http://www.fpga4fun.com/CrossClockDomain1.html翻译 2015-05-04 18:51:47 · 934 阅读 · 0 评论