mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Add $live and $fair cell types, add support for s_eventually keyword
This commit is contained in:
parent
7af9727f78
commit
5f1d0b1024
14 changed files with 80 additions and 10 deletions
|
@ -1305,6 +1305,22 @@ endmodule
|
|||
|
||||
// --------------------------------------------------------
|
||||
|
||||
module \$live (A, EN);
|
||||
|
||||
input A, EN;
|
||||
|
||||
endmodule
|
||||
|
||||
// --------------------------------------------------------
|
||||
|
||||
module \$fair (A, EN);
|
||||
|
||||
input A, EN;
|
||||
|
||||
endmodule
|
||||
|
||||
// --------------------------------------------------------
|
||||
|
||||
module \$cover (A, EN);
|
||||
|
||||
input A, EN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue