本文整理汇总了Python中utility.Bits.carryFlag16方法的典型用法代码示例。如果您正苦于以下问题:Python Bits.carryFlag16方法的具体用法?Python Bits.carryFlag16怎么用?Python Bits.carryFlag16使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utility.Bits
的用法示例。
在下文中一共展示了Bits.carryFlag16方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add16
# 需要导入模块: from utility import Bits [as 别名]
# 或者: from utility.Bits import carryFlag16 [as 别名]
def add16(cpu, opcode, logger):
regInd = (opcode & 0x30) >> 4
value = cpu.Reg16(regInd)
oldHL = cpu.HL
cpu.HL = cpu.HL + value
cpu.NFlag = Bits.reset()
cpu.CFlag = Bits.carryFlag16(oldHL, cpu.HL)
cpu.HFlag = Bits.carryFlag16(oldHL, cpu.HL, bits=11)
cpu.m_cycles, cpu.t_states = 3, 11
logger.info("ADD HL, {}".format(IndexToReg.translate16Bit(regInd)))
示例2: add16
# 需要导入模块: from utility import Bits [as 别名]
# 或者: from utility.Bits import carryFlag16 [as 别名]
def add16(cpu, opcode, logger):
logger.info("ADD HL, rr")
regInd = (opcode & 0x30) >> 4
value = 0
if regInd == 0:
value = cpu.BC
elif regInd == 1:
value = cpu.DE
elif regInd == 2:
value = cpu.HL
elif regInd == 3:
value = cpu.SP
oldHL = cpu.HL
cpu.HL = cpu.HL + value
cpu.flags[NF] = False
cpu.flags[CF] = Bits.carryFlag16(oldHL, cpu.HL)
cpu.flags[HF] = Bits.carryFlag16(oldHL, cpu.HL, bits=11)