From 5b64ccfdeee6c75f70487c1ea153ec3e1fb26cd1 Mon Sep 17 00:00:00 2001 From: robin Date: Wed, 19 Apr 2023 13:33:53 +0200 Subject: fixed VLO/VHI primitves (#185) --- library/wrapper/primitives.v | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/library/wrapper/primitives.v b/library/wrapper/primitives.v index 95edf7a..c93ae11 100644 --- a/library/wrapper/primitives.v +++ b/library/wrapper/primitives.v @@ -1,13 +1,13 @@ `timescale 1 ns / 1 ps -module vhi ( z ); - output z ; - supply1 VSS; - buf (z , VSS); -endmodule +module VHI ( Z ); + output Z ; + supply1 VDD; + buf (Z , VDD); +endmodule -module vlo ( z ); - output z; - supply1 VSS; - buf (z , VSS); +module VLO ( Z ); + output Z; + supply0 VSS; + buf (Z , VSS); endmodule -- cgit v1.2.3