From 2ced895b32d4750ee5c1268885d5d01e8ef421c0 Mon Sep 17 00:00:00 2001 From: Sam Crow Date: Wed, 19 Jul 2023 12:15:47 -0700 Subject: [PATCH] add BIAS pin type back to valid types --- compiler/base/hierarchy_spice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/base/hierarchy_spice.py b/compiler/base/hierarchy_spice.py index 4eeaba93..acca174f 100644 --- a/compiler/base/hierarchy_spice.py +++ b/compiler/base/hierarchy_spice.py @@ -737,7 +737,7 @@ class pin_spice(): inst_net is the net object from mod's nets which connects to this pin. """ - valid_pin_types = ["INOUT", "INPUT", "OUTPUT", "POWER", "GROUND"] + valid_pin_types = ["INOUT", "INPUT", "OUTPUT", "POWER", "GROUND", "BIAS"] def __init__(self, name, type, mod): self.name = name