3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 09:34:09 +00:00
yosys/tests/techmap/adff2dff.ys
2021-02-24 01:07:34 +01:00

20 lines
231 B
Plaintext

read_verilog -icells << EOT
module top(...);
input [1:0] D;
input C, R;
output [1:0] Q;
always @(posedge C, posedge R)
if (R)
Q <= 0;
else
Q <= D;
endmodule
EOT
proc
equiv_opt -async2sync techmap -map +/adff2dff.v