LoginSignup
0
0

More than 3 years have passed since last update.

概要

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

環境

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

写真

image

image

verilogコード

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));
    mpu2_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