Files

17 lines
181 B
Plaintext
Raw Permalink Normal View History

2021-02-23 21:23:26 +01:00
read_verilog -icells << EOT
module top(...);
input [1:0] D;
input C;
output [1:0] Q;
always @(posedge C)
Q <= D;
endmodule
EOT
proc
2022-08-30 13:56:05 +02:00
equiv_opt -assert techmap -map +/dff2ff.v