0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vistaでquartus その32

Posted at

概要

vistaでquartusやってみた。
serialのecho、やってみた。

写真

無題.jpg

無題.jpg

サンプルコード

module test2(input clk, input rst, input rx, output tx);
	wire [7:0] data2,
		char;
	wire empty;
	wire get;
	wire rd;
	wire put;
	wire rdy;
	putc p(.clk(clk), .rst(rst), .start(start), .char(data2), .tx(tx));
	agent2 t(.clk(clk), .rst(rst), .empty(empty), .get(get), .start(start));
	fifo f(.clk(clk), .rst(rst), .put(put), .get(get), .data(char), .data2(data2), .empty(empty));
	rs_rx u(.clk(clk), .rst(rst), .rx(rx), .rx_RD(rd), .out(char), .rx_RDY(rdy));
	agent0 m(.clk(clk), .rst(rst), .rdy(rdy), .put(put), .rd(rd));
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?