Add CellTypes support for $specify2 and $specify3
authorClifford Wolf <clifford@clifford.at>
Mon, 22 Apr 2019 07:29:59 +0000 (09:29 +0200)
committerClifford Wolf <clifford@clifford.at>
Tue, 23 Apr 2019 19:36:59 +0000 (21:36 +0200)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
kernel/celltypes.h
manual/CHAPTER_CellLib.tex

index 0da78c313e90defb9e3bc0db252aabf43c52c4d3..f8c73ed83204254b6377b87b9ebe2700c151dc8a 100644 (file)
@@ -85,6 +85,7 @@ struct CellTypes
                setup_internals_eval();
 
                IdString A = "\\A", B = "\\B", EN = "\\EN", Y = "\\Y";
+               IdString SRC = "\\SRC", DST = "\\DST", DAT = "\\DAT";
 
                setup_type("$tribuf", {A, EN}, {Y}, true);
 
@@ -99,6 +100,8 @@ struct CellTypes
                setup_type("$allconst", pool<RTLIL::IdString>(), {Y}, true);
                setup_type("$allseq", pool<RTLIL::IdString>(), {Y}, true);
                setup_type("$equiv", {A, B}, {Y}, true);
+               setup_type("$specify2", {EN, SRC, DST}, pool<RTLIL::IdString>(), true);
+               setup_type("$specify3", {EN, SRC, DST, DAT}, pool<RTLIL::IdString>(), true);
        }
 
        void setup_internals_eval()
index e64919182bc71e2030906578a1882b3e5ea3da1f..96a30955258230e1571119be8e26f1655445a928 100644 (file)
@@ -465,6 +465,10 @@ Add information about {\tt \$assert}, {\tt \$assume}, {\tt \$live}, {\tt \$fair}
 {\tt \$initstate}, {\tt \$anyconst}, {\tt \$anyseq}, {\tt \$allconst}, {\tt \$allseq} cells.
 \end{fixme}
 
+\begin{fixme}
+Add information about {\tt \$specify2} and {\tt \$specify3} cells.
+\end{fixme}
+
 \begin{fixme}
 Add information about {\tt \$slice} and {\tt \$concat} cells.
 \end{fixme}