mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-28 14:53:37 +00:00
filterlib, read_liberty: add loopy retention cell formal equivalence test
This commit is contained in:
parent
b3112bf025
commit
bfc957ee2d
8 changed files with 152 additions and 12 deletions
|
|
@ -58,7 +58,6 @@ module dff (D, CLK, RESET, PRESET, Q, QN);
|
|||
IQ <= 1;
|
||||
end
|
||||
else begin
|
||||
// D
|
||||
IQ <= D;
|
||||
end
|
||||
end
|
||||
|
|
@ -70,7 +69,6 @@ module dff (D, CLK, RESET, PRESET, Q, QN);
|
|||
IQN <= 1;
|
||||
end
|
||||
else begin
|
||||
// ~(D)
|
||||
IQN <= ~(D);
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue