3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

sim/formalff: Clock handling for yw cosim

This commit is contained in:
Jannis Harder 2023-01-11 17:52:25 +01:00
parent 7ddec5093f
commit d6c7aa0e3d
5 changed files with 274 additions and 33 deletions

View file

@ -69,8 +69,8 @@ struct ReadWitness
struct Clock {
IdPath path;
int offset;
bool is_posedge;
bool is_negedge;
bool is_posedge = false;
bool is_negedge = false;
};
struct Signal {