diff options
Diffstat (limited to 'library/wrapper/primitives.v')
-rw-r--r-- | library/wrapper/primitives.v | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/library/wrapper/primitives.v b/library/wrapper/primitives.v new file mode 100644 index 0000000..95edf7a --- /dev/null +++ b/library/wrapper/primitives.v @@ -0,0 +1,13 @@ +`timescale 1 ns / 1 ps + +module vhi ( z ); + output z ; + supply1 VSS; + buf (z , VSS); +endmodule + +module vlo ( z ); + output z; + supply1 VSS; + buf (z , VSS); +endmodule |