3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-30 15:00:26 +00:00

Consistent with xilinx

This commit is contained in:
Eddie Hung 2019-06-03 09:23:43 -07:00
parent 2228cef62f
commit 9f44a71715
3 changed files with 4 additions and 4 deletions

View file

@ -145,7 +145,7 @@ endmodule
(* abc_box_id = 1, abc_flop, lib_whitebox *)
module SB_DFF ((* abc_flop_q *) output `SB_DFF_REG, input C, (* abc_flop_d *) input D);
`ifndef ABC_MODEL
`ifndef _ABC
always @(posedge C)
Q <= D;
`else