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 1 year has passed since last update.

高位合成言語 PipelineC その2

Posted at

概要

高位合成言語 PipelineCを見つけたので、やってみた。
blink.cのテストベンチ、書いてみた。

サンプルコード


module test;
	reg clk;
	wire out;
	top u(.clk_33p33(clk), .blink_return_output(out));
	initial
	begin
		clk = 0;
	#10000
		$finish;
	end
	always
	#1
		clk = ~clk;
	initial
	begin
		$dumpfile("test.vcd");
		$dumpvars(0, u);
	end
endmodule

写真

image.png

以上。

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?