GHDL 的 VHDL 分析问题
我编写了一些 vhdl 代码,其中包含半加器的实现。它只有几行代码,没有任何错误。
当我用 ghdl 编译它时,它会生成相应 vhdl 文件的 .o
文件。但是当我执行 ghdl -e filename 时,出现以下错误:
*error: cannot find entity or configuration demo*
*/usr/lib/ghdl/bin/ghdl: compilation error*
有人可以帮忙吗?提前致谢
I have written some vhdl code which contains the implementation of a half adder. It is a few lines of code and has no bugs.
When I compile it with ghdl it produces the .o
file for the corresponding vhdl file. But when I execute ghdl -e filename
, the following error occurs:
*error: cannot find entity or configuration demo*
*/usr/lib/ghdl/bin/ghdl: compilation error*
Can anybody help? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ghdl -e 命令采用实体名称,而不是文件名。
我碰巧有一个 ghdl 例子。它有一个 Makefile,因此只需输入 make 即可对其进行编译,之后您可以运行 tb_adder:
http://kapsi.fi/~jpa/stuff/other/ghdl -example.tar.gz
The ghdl -e command takes the entity name, instead of a file name.
I happened to have a ghdl example lying around. It has a Makefile, so simply typing make should get it compiled, after which you can run tb_adder:
http://kapsi.fi/~jpa/stuff/other/ghdl-example.tar.gz