mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-14 01:46:16 +00:00
Do not drop async control signals in abc_map.v
This commit is contained in:
parent
09ee96e8c2
commit
344619079d
1 changed files with 16 additions and 12 deletions
|
@ -120,10 +120,11 @@ module FDCE (output reg Q, input C, CE, D, CLR);
|
||||||
.IS_D_INVERTED(IS_D_INVERTED),
|
.IS_D_INVERTED(IS_D_INVERTED),
|
||||||
.IS_CLR_INVERTED(IS_CLR_INVERTED)
|
.IS_CLR_INVERTED(IS_CLR_INVERTED)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(IS_CLR_INVERTED)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(CLR)
|
||||||
// ^^^ Note that async
|
// ^^^ Note that async
|
||||||
// control is disabled
|
// control is not directly
|
||||||
// here but captured by
|
// supported by abc9 but its
|
||||||
|
// behaviour is captured by
|
||||||
// $__ABC9_ASYNC below
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
||||||
|
@ -142,10 +143,11 @@ module FDCE_1 (output reg Q, input C, CE, D, CLR);
|
||||||
FDCE_1 #(
|
FDCE_1 #(
|
||||||
.INIT(INIT)
|
.INIT(INIT)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(1'b0)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(CLR)
|
||||||
// ^^^ Note that async
|
// ^^^ Note that async
|
||||||
// control is disabled
|
// control is not directly
|
||||||
// here but captured by
|
// supported by abc9 but its
|
||||||
|
// behaviour is captured by
|
||||||
// $__ABC9_ASYNC below
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
||||||
|
@ -169,10 +171,11 @@ module FDPE (output reg Q, input C, CE, D, PRE);
|
||||||
.IS_D_INVERTED(IS_D_INVERTED),
|
.IS_D_INVERTED(IS_D_INVERTED),
|
||||||
.IS_PRE_INVERTED(IS_PRE_INVERTED),
|
.IS_PRE_INVERTED(IS_PRE_INVERTED),
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(IS_PRE_INVERTED)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(PRE)
|
||||||
// ^^^ Note that async
|
// ^^^ Note that async
|
||||||
// control is disabled
|
// control is not directly
|
||||||
// here but captured by
|
// supported by abc9 but its
|
||||||
|
// behaviour is captured by
|
||||||
// $__ABC9_ASYNC below
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
||||||
|
@ -189,10 +192,11 @@ module FDPE_1 (output reg Q, input C, CE, D, PRE);
|
||||||
FDPE_1 #(
|
FDPE_1 #(
|
||||||
.INIT(INIT)
|
.INIT(INIT)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(1'b0)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(PRE)
|
||||||
// ^^^ Note that async
|
// ^^^ Note that async
|
||||||
// control is disabled
|
// control is not directly
|
||||||
// here but captured by
|
// supported by abc9 but its
|
||||||
|
// behaviour is captured by
|
||||||
// $__ABC9_ASYNC below
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($abc9_currQ));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue