LoginSignup
2
0

More than 3 years have passed since last update.

vistaでquartus その14

Last updated at Posted at 2020-07-02

概要

vistaでquartusやってみた。
karutaでLチカしてみた。

インストール

ubuntu 18.04 64bit

snap install core
snap install karuta

/snap/binに入った。
versionは、0.5.9

環境

windows vista 32bit
quartus ii v13.0
ep2c5t144ボード

写真

CIMG2963.JPG

サンプルコード

shared L object = Kernel.clone();

@ExtIO(output = "led2")
func L.f(b bool) {
  print(b);
}

func L.main() {
  var b bool = false;
  while (true) {
    wait(10000000);
    f(b);
    b = ~b;
  }
}

L.compile();
L.writeHdl("led.v");

以上。

2
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
2
0