gpt4 book ai didi

mips - 如何在 icarus verilog 中包含文件?

转载 作者:行者123 更新时间:2023-12-02 20:34:55 24 4
gpt4 key购买 nike

我知道基本的`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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com