예제 #1
0
파일: cpu.py 프로젝트: 5lipper/weasel
 def __init__(self, condFunc, characteristics=0, label=""):
     ConditionalInstruction.__init__(self, condFunc, characteristics, label)
예제 #2
0
파일: cpu.py 프로젝트: 5lipper/weasel
 def __init__(self, regMask, negative=0, characteristics=0, label=""):
     self.regMask = regMask
     self.negative = negative
     ConditionalInstruction.__init__(self, self.COND_FUNC, characteristics, label)