作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道基本的`include“filename.v”命令。但是,我试图包含另一个文件夹中的模块。现在,该模块还包括同一文件夹中存在的其他模块。但是,当我尝试在最顶层运行该模块时,出现错误。
C:\Users\Dell\Desktop\MIPS>iverilog mips.v
./IF/stage_if.v:2: Include file instruction_memory_if.v not found
No top level modules, and no -s option.
在这里,我正在尝试制作一个MIPS处理器,它包含在文件“mips.v”中。该文件的第一个语句是“`include“IF/stage_if.v”。并且,在 IF 文件夹中,存在许多文件,我已将它们包含在 stage_if.v 中,其中一个是“instruction_memory_if.v”。下面是目录层次图。
-IF
instruction_memory_if.v
stage_if.v
+ID
+EX
+MEM
+WB
mips.v
最佳答案
您需要使用 -I
标志告诉 iverilog
在哪里查找。
在top.v
中:
`include "foo.v"
program top;
initial begin
foo();
end
endprogram
在foo/foo.v
中:
task foo;
$display("This was printed in the foo module");
endtask
可以使用以下命令运行:
iverilog -g2012 top.v -I foo/
vvp a.out
>>> This was printed in the foo module
关于mips - 如何在 icarus verilog 中包含文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47449489/
我是一名优秀的程序员,十分优秀!