您好,我已经在Ubuntu 16.04上安装了Modelsim 32位版本。我还安装了相关的32位库,它运行良好。(模拟适用于其他项目)
但是,当我尝试在pulpino上运行helloworld时,我遇到了这个问题。
make helloworld // 100% fine
make vcompile // 100% fine
make helloworld.vsim // this gives following issue. in vsim
** Fatal: ** Error: (vsim-3828) Could not link
### 'vsim_auto_compile
I在Ubuntu20.04上安装了Quartus Prime 21.1,运行良好。
I也有ModelSim 20.1.1,它运行良好的
我在Quartus Prime上找到了通往ModelSim的正确路径,它甚至可以识别版本(不幸的是,我不允许把图片放在这里,但相信我,这部分我做对了)。我试过两种变体:
( a) /home/domvito55/intelFPGA_lite/20.1/modelsim_ase/bin
和
( b) /home/domvito55/intelFPGA_lite/20.1/modelsim_ase/linuxaloem
,但是当我试图从Quartus内部运行Mod
我试图在Ubuntu18.04中执行Modelsim/Questa,但它返回以下错误消息:
Error in startup script:
Initialization problem, exiting.
Initialization problem, exiting.
while executing
"InitializeINIFile quietly"
invoked from within
"ncFyP12 -+"
(file "/mtitcl/vsim/vsim" line 1)
** Fatal: Rea
背景:安装了QUARTUSv16.0的ModelSim v10.4d
我是一个卡丹斯敏锐的用户,现在必须通过导师ModelSim,但在使用ModelSim时,我无法在将所有信号数据添加到波形窗口之前找到获取它们的方法。
例如,
在.do(tcl) ModelSim模拟脚本中,典型的流可以是:
1,vcom : compile all sources files and testbench
2,vsim : load testbench for simulation
3,view structure/signals/wave : open some windows
4,add wave : ad
当我单击按钮Run functional Simulation下时,我会看到以下错误:
Determining the location of the ModelSim executable...
Using: C:\altera\13.1\modelsim_ase\win32aloem
To specify a ModelSim executable directory, select: Tools -> Options -> EDA Tool Options
Note: if both ModelSim-Altera and ModelSim executables are a
使用此代码时:
library IEEE;
use IEEE.Std_logic_1164.all;
use IEEE.Numeric_STD.all;
entity CLOCKDIVIDER_TB is
end entity CLOCKDIVIDER_TB;
architecture BENCH of CLOCKDIVIDER_TB is
--declare component
component ClockDivider
Port(
CLK : IN STD_LOGIC;
RST : IN ST
背景:随quartus v16.0一起安装的ModelSim v10.4d
我用ModelSim写了一个.do文件来模拟我的设计。
我的.do文件中的步骤如下:
1- vcom *.vhd : compile all sources files and testbench
2- vsim work.my_tb : load testbench for simulation
3- log * -r : tell modelsim to record everything
4- run xx us : run simulation for a certain time
然后我手动将信号添加到波形窗
我目前使用的是modelsim SE 5.8e。它不支持SystemVerilog。我需要使用SystemVerilog来设计和验证我的项目。你知道哪个版本的Modelsim能很好地支持sytemverilog的设计和验证子集吗?我之前使用过VCS,并试图找到它,如果我可以使用Modelsim代替VCS进行模拟。
提前感谢!