LoginSignup
0
0

More than 3 years have passed since last update.

vistaでquartus

Last updated at Posted at 2020-06-06

概要

vistaでquartusやってみた。
Lチカの手順。

intelに登録する。

download

quartus ii v13.0

usb blasterのドライバーを入れる。

プロジェクトを作る。

デバイスは、ep2c5t144c8を選ぶ。

verilogを書く。

module ledblink(input clk, input key, output led5, led4, led2);
    reg [26:0] cnt;
    assign led5 = ~cnt[24];
    assign led4 = ~cnt[25];
    assign led2 = ~cnt[26];
    always @(posedge clk, negedge key)
    begin
        if (~key)
            cnt <= 'b0;
        else
            cnt <= cnt + 1;
    end
endmodule



pin planner

clk pin_17
key pin_144
led5 pin_9
led4 pin_7
led2 pin_3

timing cloks

10ns

timing set input delay

10ns

timing set output delay

10ns

netlist

image

写真

CIMG2955.JPG

以上。

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