forget a lower
This commit is contained in:
parent
827b3bd400
commit
773a4b7d97
|
@ -136,7 +136,7 @@ class Inst :
|
||||||
# Warning : the model can not contain capitalized letters
|
# Warning : the model can not contain capitalized letters
|
||||||
if re.search ( "[A-Z]", model ) :
|
if re.search ( "[A-Z]", model ) :
|
||||||
print "[Stratus Warning] Inst : Upper case letters are not supported, the name", model, "is lowered."
|
print "[Stratus Warning] Inst : Upper case letters are not supported, the name", model, "is lowered."
|
||||||
# model = model.lower()
|
model = model.lower()
|
||||||
# Error : spaces are forbidden
|
# Error : spaces are forbidden
|
||||||
if re.search ( " ", model ) :
|
if re.search ( " ", model ) :
|
||||||
err = "\n[Stratus ERROR] Inst : " + name + " the name of the model \"" + model + "\" can not contain a space.\n"
|
err = "\n[Stratus ERROR] Inst : " + name + " the name of the model \"" + model + "\" can not contain a space.\n"
|
||||||
|
@ -310,8 +310,7 @@ class Inst :
|
||||||
else :
|
else :
|
||||||
hurNet = realNet._hur_net[i]
|
hurNet = realNet._hur_net[i]
|
||||||
|
|
||||||
#if mapNet._arity == 1 : tempNet = self._hur_masterCell.getNet ( pin.lower() )
|
if mapNet._arity == 1 : tempNet = self._hur_masterCell.getNet ( pin.lower() )
|
||||||
if mapNet._arity == 1 : tempNet = self._hur_masterCell.getNet ( pin )
|
|
||||||
else : tempNet = self._hur_masterCell.getNet ( pin.lower() + "(" + str(j+lsb) + ")" )
|
else : tempNet = self._hur_masterCell.getNet ( pin.lower() + "(" + str(j+lsb) + ")" )
|
||||||
j += 1
|
j += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue