LoginSignup
1
0

More than 1 year has passed since last update.

UbuntuにVerilogの開発環境を構築するための備忘録メモ

必要なアプリケーションのインストール

Verilogのソースから回路図を生成してくれるTKGateがMacでは動作しないため、Ubuntuマシーンに環境構築することに。。。

sudo apt install -y iverilog gtkwave tkgate

verisimuコマンドの作成

以下の内容を.bashrcに追記

function verisimu() {
    IFS=' '
    filename=$1
    testname=$2
    iverilog ${filename} ${testname}
    vvp a.out
    list=(${filename//./' '})
    vcdname=${list[0]}
    gtkwave ${vcdname}.vcd
}

Reference

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0