Game Boy: Half-carry flag and 16-bit instructions (especially opcode 0xE8)

前端 未结 2 1756
感情败类
感情败类 2021-02-19 08:47

Like so many others, I am writing a Game Boy emulator and I have a couple of questions regarding the instruction 0xE8 (ADD SP, n with an 8-bit immediate).

I

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-19 09:08

    The SM83 CPU core used in Game Boy almost certainly has a 8-bit ALU, which means 16-bit ALU operations are actually composed of two 8-bit operations. Like a normal Z80 CPU, it also has a dedicated 16-bit increment/decrement/load unit, which can handle certain 16-bit operations quickly but can't update the flags. Basically:

    • if flags are updated, a 16-bit operation definitely involves the ALU, so it actually uses two 8-bit ALU operations under the hood
    • if flags are not updated, and the 16-bit operation is just +1 / -1 / load, it's done with the 16-bit incrementer unit

    So, whenever you're dealing with flags, try to think in terms of 8-bit operations (low byte first, then the high byte) if you want to reason about the operation.

    1. How does the half-carry flag behave in opcode 0xE8?

    As pointed out in the other answer, H is set when there's a carry from bit 3. (And C is set when there's a carry from bit 7).

    Here's an interesting thought exercise: if SP=$FFFF and you execute ADD SP, -1, you get SP=$FFFE and both H and C are set. Can you understand why?

    Due to how signed numbers work, the low byte operation is in this case basically just a normal addition. -1 = $FF, so it's calculating $FF+ $FF.

    Hint above ↑

    1. How is the opcode 0xE8 implemented in the physical hardware?

    We don't yet have a full understanding of it at the lowest possible level, but I know that there are two 8-bit operations. With my Game Boy testbench system I've confirmed that there's first an ALU operation that updates the flags (H, C) but not SP, then some other operation, and finally SP is updated atomically in one go. This suggests that ADD SP, e might actually calculate the result into some temporary register (for example, a real Z80 has an invisible WZ temporary register for some ALU operations) in two separate 8-bit operations, and then load SP from it.

    I think ADD HL, BC is a bit more interesting example...with my testbench I've confirmed that it updates L first and then H, and flags are updated twice. This means that it literally executes something like

    ADD L, C
    ADC H, B
    

    The latter 8-bit operation updates the flags, so we never see the resulting flags of ADD L, C. But the half-carry flag might be temporarily set if there's a carry from L bit 3!

    1. Which is right, that half-carry occurs from bit 7 to bit 8 or that half-carry occurs from bit 11 to bit 12 (in the case of 16-bit instructions)?

    It depends on the instruction, but the flags are always updated based on the same bit positions if you think in terms of 8-bit values...it just varies whether we're talking about the high or low byte of the 16-bit value. Bit 11 is just bit 3 of the high byte.

    • ADD SP, e: H from bit 3, C from bit 7 (flags from low byte op)
    • LD HL, SP+e: H from bit 3, C from bit 7 (flags from low byte op)
    • ADD HL, rr: H from bit 11, C from bit 15 (flags from high byte op)
    • INC rr: no flag updates (executed by the 16-bit inc/dec unit)
    • DEC rr: no flag updates (executed by the 16-bit inc/dec unit)

提交回复
热议问题