Quartus II 13.0 安裝及modelsim仿真問題解決

Quartus II 13.0 安裝及問題解決

建議按照這篇博客安裝Quartus II 13.0

https://blog.csdn.net/weixin_43862765/article/details/99305902

按照這篇博客安裝好Quartus13.0後,仿真時出現了

ModelSim-Altera was not found. Please install ModelSim-Altera which is included with the Quartus II installer, or use the Quartus II Simulator instead by selecting “Simulation > Options > Quartus II Simulator”

ModelSim-Altera was not found. Please install ModelSim-Altera which is included with the Quartus II installer, or use the Quartus II Simulator instead by selecting “Simulation > Options > Quartus II Simulator” 問題。

這是由於沒有modelsim導致的,因此需要下載modelsim然後安裝在Quartus目錄下,就可以正常仿真了。
可以用這個博客給的網盤鏈接下載modelsim。http://blog.sina.com.cn/s/blog_c0e651900102vral.html

測試Quartus是否好使

  1. 新建一個工程
  2. 在該工程下新建一個verilog HDL文件
  3. 在該文件下寫一個簡單的加法器代碼
module test(A,B,Sum,Carry);
input A,B;
output Sum,Carry;

assign #2 Sum = A^B;
assign #5 Carry = A & B;
endmodule
  1. 編譯運行,沒有報錯說明Quartus安裝成功

  2. 再新建一個VWF文件,就是波形文件

  3. 插入節點:

    1. 右鍵點擊左側空白欄,選擇insert node or bus

    2. 會跳出一個方框,點擊node finder

    3. 又跳出一個方框,在filter選項選中pin:all,點擊list,會列出所有引腳

    4. 再點擊>>將所有引腳選擇好,點擊確定

    5. 現在會發現左側欄有四個引腳的名字,現在run timing simulation,就會出現正常波形了

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章