Example #1
0
 def Reg16(self, index, value=None, ix=False, iy=False, af=False):
     if value is None:
         if index == 0:
             return self.BC
         elif index == 1:
             return self.DE
         elif index == 2:
             if not ix and not iy:
                 return self.HL
             elif ix:
                 return self.IX
             elif iy:
                 return self.IY
         elif index == 3 and not af:
             return self.SP
         elif index == 3 and af:
             return self.AF
     else:
         value = Bits.limitTo16Bits(value)
         if index == 0:
             self.BC = value
             return self.BC
         elif index == 1:
             self.DE = value
             return self.DE
         elif index == 2:
             if not ix and not iy:
                 self.HL = value
                 return self.HL
             elif ix:
                 self.IX = value
                 return self.IX
             elif iy:
                 self.IY = value
                 return self.IY
         elif index == 3 and not af:
             self.SP = value
             return self.SP
         elif index == 3 and af:
             self.AF = value
             return self.AF
Example #2
0
 def Reg16(self, index, value=None, ix=False, iy=False, af=False):
     if value is None:
         if index == 0:
             return self.BC
         elif index == 1:
             return self.DE
         elif index == 2:
             if not ix and not iy:
                 return self.HL
             elif ix:
                 return self.IX
             elif iy:
                 return self.IY
         elif index == 3 and not af:
             return self.SP
         elif index == 3 and af:
             return self.AF
     else:
         value = Bits.limitTo16Bits(value)
         if index == 0:
             self.BC = value
             return self.BC
         elif index == 1:
             self.DE = value
             return self.DE
         elif index == 2:
             if not ix and not iy:
                 self.HL = value
                 return self.HL
             elif ix:
                 self.IX = value
                 return self.IX
             elif iy:
                 self.IY = value
                 return self.IY
         elif index == 3 and not af:
             self.SP = value
             return self.SP
         elif index == 3 and af:
             self.AF = value
             return self.AF
Example #3
0
 def BC(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[B] = value >> 8
     self.regs[C] = Bits.limitTo8Bits(value)
Example #4
0
 def DE(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[D] = value >> 8
     self.regs[E] = Bits.limitTo8Bits(value)
Example #5
0
 def DEPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[D] = value >> 8
     self.regsPri[E] = Bits.limitTo8Bits(value)
Example #6
0
 def DEPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[D] = value >> 8
     self.regsPri[E] = Bits.limitTo8Bits(value)
Example #7
0
 def HLPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[H] = value >> 8
     self.regsPri[L] = Bits.limitTo8Bits(value)
Example #8
0
 def AFPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[A] = value >> 8
     self.regsPri[F] = Bits.limitTo8Bits(value)
Example #9
0
 def IX(self, value):
     self.ix = Bits.limitTo16Bits(value)
Example #10
0
 def IX(self, value):
     self.ix = Bits.limitTo16Bits(value)
Example #11
0
 def IY(self, value):
     self.iy = Bits.limitTo16Bits(value)
Example #12
0
 def AFPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[A] = value >> 8
     self.regsPri[F] = Bits.limitTo8Bits(value)
Example #13
0
 def SP(self, value):
     self.sp = Bits.limitTo16Bits(value)
Example #14
0
 def AF(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[A] = value >> 8
     self.regs[F] = Bits.limitTo8Bits(value)
Example #15
0
 def BCPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[B] = value >> 8
     self.regsPri[C] = Bits.limitTo8Bits(value)
Example #16
0
 def BC(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[B] = value >> 8
     self.regs[C] = Bits.limitTo8Bits(value)
Example #17
0
 def BCPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[B] = value >> 8
     self.regsPri[C] = Bits.limitTo8Bits(value)
Example #18
0
 def PC(self, value):
     self.pc = Bits.limitTo16Bits(value)
Example #19
0
 def AF(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[A] = value >> 8
     self.regs[F] = Bits.limitTo8Bits(value)
Example #20
0
 def PC(self, value):
     self.pc = Bits.limitTo16Bits(value)
Example #21
0
 def SP(self, value):
     self.sp = Bits.limitTo16Bits(value)
Example #22
0
 def HLPrim(self, value):
     value = Bits.limitTo16Bits(value)
     self.regsPri[H] = value >> 8
     self.regsPri[L] = Bits.limitTo8Bits(value)
Example #23
0
 def IY(self, value):
     self.iy = Bits.limitTo16Bits(value)
Example #24
0
 def DE(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[D] = value >> 8
     self.regs[E] = Bits.limitTo8Bits(value)
Example #25
0
 def HL(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[H] = value >> 8
     self.regs[L] = Bits.limitTo8Bits(value)
Example #26
0
 def HL(self, value):
     value = Bits.limitTo16Bits(value)
     self.regs[H] = value >> 8
     self.regs[L] = Bits.limitTo8Bits(value)