From 5f1d0b1024981b6ede2988bf8c5812b37c87d0e9 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 25 Feb 2017 10:36:39 +0100 Subject: Add $live and $fair cell types, add support for s_eventually keyword --- techlibs/common/simlib.v | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'techlibs') diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index d0abd3b34..276503fe8 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -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; -- cgit v1.2.3