mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-23 12:59:15 +00:00
11 lines
203 B
Text
11 lines
203 B
Text
read_verilog << EOT
|
|
module top(input clk, arst, d, output reg q);
|
|
always @(posedge clk or posedge arst)
|
|
if (arst) q <= 0;
|
|
else q <= d;
|
|
endmodule
|
|
EOT
|
|
proc
|
|
async2sync
|
|
dump w:\$auto\$async2sync*
|
|
|