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

17 lines
173 B
Plaintext

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