LoginSignup
0
0

More than 1 year has passed since last update.

vistaでquartus その19

Last updated at Posted at 2020-07-07

概要

vistaでquartusやってみた。
polyphonyで俺CPU書いてみた。

環境

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

写真

image

image

サンプルコード

module test2(input clk, input rst, output tx);
    wire [7:0] data;
    wire start;
    tx2 tx2(.clk(clk), .rst(rst), .start(start), .data(data), .tx(tx), .busy(busy), .get(get));
    mpu_m m(.clk(clk), .rst(rst), .data(data), .start(start));
endmodule

以上。

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