完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
你好,我是verilog /逻辑设计的新手。
我不确定问题属于哪里,如果不是,请告诉我,谢谢 我想用D触发器构建一个3位计数器 我在阅读了“逻辑设计的基本原理(Charles H. Roth)”一书后写了这个程序。 但计数器的输出始终是未知状态“xxx”,而不是预期值,例如。 000-> 001-> 010 - > ....等。 我无法弄清楚问题是什么。 如果你有任何关于解决问题的信息,你能告诉我如何解决它吗? 我附上了我的源文件 谢谢 counter.v 2 KB 以上来自于谷歌翻译 以下为原文 hello , I'm a newbie on verilog/logic design. I'm not sure where the problem belongs to , if not here , please let me know , thank you I wanna build a 3-bit counter by using D flip-flop and I wrote the program after reading the chapter from book "fundamental of logic design (by Charles H. Roth)". But the output of the counter has always been unknown state "xxx", not an expected value , ex. 000->001->010->....etc. I can't figure out what the problem is. can you tell me how to fix it if you have any information about solving the problem ? I attach my source file thank you counter.v 2 KB |
|
相关推荐
2个回答
|
|
metalalive写道:
你好,我是verilog /逻辑设计的新手。 我不确定问题属于哪里,如果不是,请告诉我,谢谢 我想用D触发器构建一个3位计数器 我在阅读了“逻辑设计的基本原理(Charles H. Roth)”一书后写了这个程序。 但计数器的输出始终是未知状态“xxx”,而不是预期值,例如。 000-> 001-> 010 - > ....等。 我无法弄清楚问题是什么。 如果你有任何关于解决问题的信息,你能告诉我如何解决它吗? 我附上了我的源文件 你有一个声明: 分配q = 3'b000; 并且您还使用q向量的各个位作为低级模块edge_triggered_Dflipflop的输出。 你不能这样做。 问问自己为什么。 ----------------------------是的,我这样做是为了谋生。 以上来自于谷歌翻译 以下为原文 metalalive wrote:You have a statement: assign q = 3'b000; and you also use the individual bits of the q vector as outputs of the lower-level module edge_triggered_Dflipflop. You can't do that. Ask yourself why. ----------------------------Yes, I do this for a living. |
|
|
|
您是在尝试学习FPGA(硬件)设计,还是在尝试学习Verilog语言?
不管。 使用Verilog推断从NAND门构建的锁存器和寄存器是不明智的,并且误用了该语言。 选择一个不同的教科书。 只需浏览XST语言模板,您就可以了解更多信息,更好地学习,更好地学习。 运行ISE Navigator,单击灯泡图标,浏览许多编码示例。 这是在Verilog中推断出简单的边沿触发D触发器的方法: reg reg_Q = 0; //一个单比特寄存器,初始状态为'0' 总是@(posedge reg_CLOCK)reg_Q 这就是在Verilog中推断出一个简单的3位二进制计数器的方法: reg [2:0] counter = 0; //一个3位计数器,初始状态为'0' 总是@(posedge reg_CLOCK)柜台 你越早离开门级设计(除非绝对必要),你越早设计系统而不是计数器。 来自新用户论坛README线程: 设计技巧: 我是FPGA设计的初学者 - 我从哪里开始? 在线培训教程等:链接#1链接#2线程#1线程#2线程#3 VHDL / Verilog教程和书籍建议线程#1链接#1线程#2线程#3 FPGA设计书推荐线程#1 - 鲍勃埃尔金德 签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。 阅读手册或用户指南。 你读过手册了吗? 你能找到手册吗?2。 搜索论坛(并搜索网页)以寻找类似的主题。 不要在多个论坛上发布相同的问题。 不要在别人的主题上发布新主题或问题,开始新的主题!5。 学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。 提供有用的详细信息(请与网页,数据表链接).7。 您的代码中的评论不需要支付额外费用。 我没有支付论坛帖子的费用。 如果我写一篇好文章,那么我一无所获。 以上来自于谷歌翻译 以下为原文 Are you trying to learn FPGA (hardware) design, or are you trying to learn the Verilog language? No matter. Using Verilog to infer latches and registers built from NAND gates is unwise and a mis-use of the language. Choose a different textbook. You can learn more, learn better, and learn more correctly merely by browsing through the XST Language Templates. Run the ISE Navigator, click on the light-bulb icon, and browse through the many many coding examples. This is how a simple edge-triggered D-flipflop is inferred in Verilog: reg reg_Q = 0; // a single-bit register, initial state is '0' always @(posedge reg_CLOCK) reg_Q <= reg_DIN; And this is how a simple 3-bit binary counter is inferred in Verilog: reg [2:0] counter = 0; // a 3-bit counter, initial state is '0' always @(posedge reg_CLOCK) counter <= counter + 1; The sooner you leave gate-level design behind (except where absolutely necessary), the sooner you will be designing systems rather than counters. From the New Users Forum README thread: Design skills: I'm a beginner with FPGA designs - where do I start? Online training tutorials and more: link#1 link#2 thread#1 thread#2 thread#3 VHDL/Verilog tutorials and book recommendations thread#1 link#1 thread#2 thread#3 FPGA design book recommendations thread#1 -- 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. |
|
|
|
只有小组成员才能发言,加入小组>>
2414 浏览 7 评论
2821 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2292 浏览 9 评论
3371 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2458 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
1068浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
577浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
437浏览 1评论
1999浏览 0评论
722浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-19 15:45 , Processed in 1.220124 second(s), Total 80, Slave 64 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号