mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-04 05:11:22 +00:00
Fixed incorrect port name in cells_map.v
This commit is contained in:
parent
c04a3d2763
commit
7498ff8041
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ module GP_DFFS(input D, CLK, nSET, output reg Q);
|
||||||
.SRMODE(1'b1),
|
.SRMODE(1'b1),
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D),
|
.D(D),
|
||||||
.CLK(C),
|
.CLK(CLK),
|
||||||
.nSR(nSET),
|
.nSR(nSET),
|
||||||
.Q(Q)
|
.Q(Q)
|
||||||
);
|
);
|
||||||
|
@ -18,7 +18,7 @@ module GP_DFFR(input D, CLK, nRST, output reg Q);
|
||||||
.SRMODE(1'b0),
|
.SRMODE(1'b0),
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D),
|
.D(D),
|
||||||
.CLK(C),
|
.CLK(CLK),
|
||||||
.nSR(nRST),
|
.nSR(nRST),
|
||||||
.Q(Q)
|
.Q(Q)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue