完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我正在使用Xilinx ISE Ver 6.1I我已经编写了许多程序和测试,程序运行正常并给我RTL Schematics以及他们的测试结果。
我已经写了他们的测试,但我怎么能检查我的测试台的代码。例如,这是代码//数据流和带两个输入模块的门模块和2(x1,x2,z1);输入x1,x2;输出z1;线x1 ,x2;导线z1;分配z1 = x1& x2; endmodule ***********************************和这个测试bench1 //和2测试benchmodule和2_tb; reg x1,x2; 5线z1; //显示变量初始$ monitor(“x1 =%b,x2 =%b,z1 =%b”,x1,x2,z1); 10 //应用输入矢量初始值#0 x1 = 1 'b0; x2 = 1'b0; 15#10 x1 = 1'b0; x2 = 1'b1;#10 x1 = 1'b1; 20 x2 = 1'b0;#10 x1 = 1'b1; x2 = 1 'b1; 25#10 $ stop; end //将模块实例化为test benchand2 inst1(30 .x1(x1),。x2(x2),。z1(z1)); endmodule ******** *******************************我如何检查测试并查看Xilinx ISE中的波形 以上来自于谷歌翻译 以下为原文 I am using Xilinx ISE Ver 6.1 I have written many programms and test bences in it The programms are running fine and give me RTL Schematics as well But what abt their test bences. I have written their test bences but how can i check the code of my test bench. For example this is code //dataflow and gate with two inputs module and2 (x1, x2, z1); input x1, x2; output z1; wire x1, x2; wire z1; assign z1 = x1 & x2; endmodule *********************************** and this test bench 1 //and2 test bench module and2_tb; reg x1, x2; 5 wire z1; //display variables initial $monitor ("x1 = %b, x2 = %b, z1 = %b", x1, x2, z1); 10 //apply input vectors initial begin #0 x1 = 1'b0; x2 = 1'b0; 15 #10 x1 = 1'b0; x2 = 1'b1; #10 x1 = 1'b1; 20 x2 = 1'b0; #10 x1 = 1'b1; x2 = 1'b1; 25 #10 $stop; end //instantiate the module into the test bench and2 inst1 ( 30 .x1(x1), .x2(x2), .z1(z1) ); endmodule *************************************** how can i check test becnh and see waveforms in Xilinx ISE |
|
相关推荐
10个回答
|
|
你问了同样的问题,awillen回答了3或4个帖子。
答案仍然是一样的。 ISE Webpack无需任何费用。 您必须付费才能获得其他版本的许可。 请参阅比较矩阵的设计工具页面。 如果Webpack版本支持您所定位的设备,那么请务必从Webpack开始。 如果您需要其他功能或设备支持,它很容易在以后升级。 - 鲍勃埃尔金德 签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。 阅读手册或用户指南。 你读过手册了吗? 你能找到手册吗?2。 搜索论坛(并搜索网页)以寻找类似的主题。 不要在多个论坛上发布相同的问题。 不要在别人的主题上发布新主题或问题,开始新的主题!5。 学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。 提供有用的详细信息(请与网页,数据表链接).7。 您的代码中的评论不需要支付额外费用。 我没有支付论坛帖子的费用。 如果我写一篇好文章,那么我一无所获。 在原帖中查看解决方案 以上来自于谷歌翻译 以下为原文 You asked this same question, and it was answered 3 or 4 posts ago by awillen. The answer is still the same. ISE Webpack costs you nothing. You must pay to license the other versions. See the design tools page for the comparison matrix. If the device you are targeting is supported by the Webpack edition, then by all means start with the Webpack. It's simple enough to upgrade later, if you need additional features or device support. -- Bob Elkind SIGNATURE: README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369 Summary: 1. Read the manual or user guide. Have you read the manual? Can you find the manual? 2. Search the forums (and search the web) for similar topics. 3. Do not post the same question on multiple forums. 4. Do not post a new topic or question on someone else's thread, start a new thread! 5. Students: Copying code is not the same as learning to design. 6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please). 7. You are not charged extra fees for comments in your code. 8. I am not paid for forum posts. If I write a good post, then I have been good for nothing.View solution in original post |
|
|
|
嗨,
你需要一些外部模拟器。 和Modelsim xe一样,如果你仍然可以获得许可证。 否则,您可以尝试安装Modelsim学生版,但是您必须手动编译xilinx库。 当然任何其他模拟器(例如ghdl)也可以。 但是,ISE项目管理器中可能没有工具集成,您必须单独运行该模拟器。 ISE6.1已经过时了。 您还在使用它有一些特殊原因吗? 实际的Webpacks集成了ISIM模拟器。 有一个很好的模拟 Eilert 以上来自于谷歌翻译 以下为原文 Hi, you need some external simulator. Like Modelsim xe, if you still can get a license. Otherwise you can try and install Modelsim student edition, but then you have to compile the xilinx libraries manually. Of course any other simulator (e.g. ghdl) will be ok too. But then there may be no tool integration in the ISE Project manager and you have to run that simulator separately. ISE6.1 is quite outdated. Is there some special reason that you are still using it? Actual Webpacks have the ISIM simulator integrated. Have a nice simulation Eilert |
|
|
|
谢谢你的回复。
你想说如果我安装Xilinx ISE版本10或11,那么我的问题将得到解决。 我对吗??? 其次,我可以免费获得ISE版本10或11。 从Xilinx上下载大小约2 GB的那个,虽然它足以满足我的要求。 非常感谢 以上来自于谷歌翻译 以下为原文 Thanks for ur reply.You want to say that if i install Xilinx ISE ver 10 or 11 th then my problem will be solved. Am i right??? Secondly can i get ISE ver 10 or 11 free of cost. The one which is downloaded of about 2 GB size from Xilinx set, while it suffice my requirement. Thanks a lot |
|
|
|
谢谢你的回复。
你想说如果我安装Xilinx ISE版本10或11,那么我的问题将得到解决。 1.目前的版本是12.3。 你为什么要打扰10或11? 不,艾勒特没有说你的问题会解决。 他说,目前的ISE Webpack(免费下载)包括一个模拟器(ISIM),您可以在其上运行测试平台。 检查ISE包比较以验证支持哪些设备和系列。 - 鲍勃埃尔金德 签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。 阅读手册或用户指南。 你读过手册了吗? 你能找到手册吗?2。 搜索论坛(并搜索网页)以寻找类似的主题。 不要在多个论坛上发布相同的问题。 不要在别人的主题上发布新主题或问题,开始新的主题!5。 学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。 提供有用的详细信息(请与网页,数据表链接).7。 您的代码中的评论不需要支付额外费用。 我没有支付论坛帖子的费用。 如果我写一篇好文章,那么我一无所获。 以上来自于谷歌翻译 以下为原文 Thanks for ur reply.You want to say that if i install Xilinx ISE ver 10 or 11 th then my problem will be solved.1. Current version is 12.3. Why would you bother with 10 or 11? 2. No, Eilert did not say that your problem would be solved. He said that the current ISE Webpack (free download) includes a simulator (ISIM) on which you can run testbenches. Check the ISE package comparison to verify which devices and families are supported. - Bob Elkind SIGNATURE: README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369 Summary: 1. Read the manual or user guide. Have you read the manual? Can you find the manual? 2. Search the forums (and search the web) for similar topics. 3. Do not post the same question on multiple forums. 4. Do not post a new topic or question on someone else's thread, start a new thread! 5. Students: Copying code is not the same as learning to design. 6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please). 7. You are not charged extra fees for comments in your code. 8. I am not paid for forum posts. If I write a good post, then I have been good for nothing. |
|
|
|
好,谢谢
现在我明白了。 如果我安装最新版本12.3,那么我将不需要任何其他软件modelsim或其他运行我的测试台。 这是对的吗?? 以上来自于谷歌翻译 以下为原文 Ok thanks Now i have understood. If i install Latest version 12.3, then i will not require any other software modelsim or other to run my test benches. IS it correct?? |
|
|
|
最新的webpack版本包括ISIM,这是一个相当不错的模拟器,但是
不太适合使用ModelSim。 我目前使用的是许可版本,而我 相信ISIM的免费webpack版本有一些限制,但是 从你的代码片段判断,我认为你要达到这些目标还有很长的路要走 限制。 使用早期版本的Webpack的唯一原因是设备支持 对于从11.1版开始被删除的早期家庭,如果你不是 使用或计划使用这些旧设备,然后一定使用版本12.3 问候, 的Gabor - Gabor 以上来自于谷歌翻译 以下为原文 The latest webpack editions include ISIM, which is a pretty decent simulator but not quite up to snuff with ModelSim. I currently use the licensed version, and I believe there are some limitations on the free webpack edition of ISIM, but judging from your code snippet, I think you are a long way from reaching these limits. The only reason to use an earlier version of Webpack would be device support for earlier families which were dropped starting at release 11.1 If you are not using or planning to use these older devices, then by all means use version 12.3 Regards, Gabor -- Gabor |
|
|
|
yesgszakacsu右边
我在这个领域非常基础,我的代码只包括加法器,解码器,乘法器等 所以我下载免费版12.3并根据您的回答,我不会需要我的测试台的额外软件 以上来自于谷歌翻译 以下为原文 yes gszakacs u r right I am very basic in this field and my codes only include adders,decoder,multipliers etc So i m downloading free version 12.3 and as per ur answer, i will not require additional software for my test benches |
|
|
|
免费版和许可版之间有什么区别
将免费下载的版本将满足我的要求 以上来自于谷歌翻译 以下为原文 What is a difference between free version and licensed version will free version which i download will fulfill my requirements |
|
|
|
您可以在此页面上找到各版本之间的差异:http://www.xilinx.com/tools/designtools.htm
是的,Webpack版包含ISim模拟器。 在模拟大型设计时,它在免费版本中会相当慢,但你远没有遇到这个问题。 请在询问之前先查询您的问题。如果有人回答您的问题,请在“接受为解决方案”标记该帖子。 如果你看到一个特别好的和信息丰富的帖子,考虑给它Kudos(左边的星)。 以上来自于谷歌翻译 以下为原文 You can find the difference between the editions on this page: http://www.xilinx.com/tools/designtools.htm And yes, the Webpack edition contains the ISim simulator. When simulating large designs, it will be rather slow in the free version, but you're far from having this problem. Please google your question before asking it. If someone answers your question, mark the post with "Accept as solution". If you see a particularly good and informative post, consider giving it Kudos (the star on the left). |
|
|
|
|
|
|
|
只有小组成员才能发言,加入小组>>
2380 浏览 7 评论
2797 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2262 浏览 9 评论
3335 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2428 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
755浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
543浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
365浏览 1评论
1960浏览 0评论
681浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 09:50 , Processed in 1.434673 second(s), Total 97, Slave 80 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号