예제 #1
0
 def overflow(self):
     return test_bit(self.psr, 21)
예제 #2
0
 def coproc_status(self):
     return test_bit(self.psr,13)
예제 #3
0
 def carry(self):
     return test_bit(self.psr, 20)
예제 #4
0
 def superviser(self):
     return int(test_bit(self.psr,7))
예제 #5
0
 def floating_point_status(self):
     return test_bit(self.psr, 12)
예제 #6
0
 def prev_superviser(self):
     return int(test_bit(self.psr, 6))
예제 #7
0
 def prev_superviser(self):
     return int(test_bit(self.psr,6))
예제 #8
0
 def zero(self):
     return test_bit(self.psr, 22)
예제 #9
0
 def icc(self):
     n = test_bit(self.psr, 23)
     z = test_bit(self.psr, 22)
     v = test_bit(self.psr, 21)
     c = test_bit(self.psr, 20)
     return (n, z, v, c)
예제 #10
0
 def carry(self):
     return test_bit(self.psr, 20)
예제 #11
0
 def overflow(self):
     return test_bit(self.psr, 21)
예제 #12
0
 def coproc_status(self):
     return test_bit(self.psr, 13)
예제 #13
0
 def floating_point_status(self):
     return test_bit(self.psr, 12)
예제 #14
0
 def superviser(self):
     return int(test_bit(self.psr, 7))
예제 #15
0
 def zero(self):
     return test_bit(self.psr, 22)
예제 #16
0
 def traps(self):
     return test_bit(self.psr, 5)
예제 #17
0
 def icc(self):
     n = test_bit(self.psr,23)
     z = test_bit(self.psr,22)
     v = test_bit(self.psr,21)
     c = test_bit(self.psr,20)
     return (n,z,v,c)
예제 #18
0
 def traps(self):
     return test_bit(self.psr, 5)