Game Boy: What constitutes a "half-carry"?

12,057

Solution 1

It's the carry from bit 3 to bit 4, just like the normal carry flag records carry from bit 7. So, e.g. to get the half carry bit in an add:

((a&0xf) + (value&0xf))&0x10

Which gives 0x10 if half carry should be set, 0 otherwise. Getting half carry from the other relevant ops follows naturally - the questions is whether there was carry from the low nibble to the high.

To put things in perspective, the z80 has a 4bit ALU and performs 8bit ops by doing two 4bit ops. So it gets half carry very naturally, as an intermediate result.

DAA is interested in the flag because if half carry is set then two digits that add up to more than 16 were added in the low nibble; that will have correctly produced carry into the upper nibble but will have left the low nibble 6 lower than it should be, since there were six more values between 10, when it should have generated carry, and 16, when it did.

Solution 2

For 16-bit operations, the carry from bit 3 to bit 4 in the register's high byte sets the flag. In other words, bit 11 to bit 12.

(Note the above bits are labeled 0-15, from least to most significant)

See here: http://www.z80.info/z80code.htm

16 bit arithmetic

If  you want to add numbers that are more than the 0-255 that can
be stored in the A register,  then the HL, IX or IY registers can
be used. Thus LD HL,1000H:LD BC,2000H:ADD HL,BC will give

A  CZPSNH  BC   DE   HL   IX   IY  A' CZPSNH' BC'  DE'  HL'  SP
00 000000 2000 0000 3000 0000 0000 00 000000 0000 0000 0000 0000

The flags are set as follows.

C or carry flag          1 if answer >65535 else 0
Z or zero flag           not changed
P flag                   not changed
S or sign flag           not changed
N flag                   0
H or half carry flag     1 if carry from bit 11 to bit 12 else 0
Share:
12,057
Rena
Author by

Rena

Updated on June 03, 2022

Comments

  • Rena
    Rena about 2 years

    The Game Boy Z80 CPU has a half-carry flag, and I can't seem to find much information about when to set/clear it.

    What I understand so far is that any 8-bit add, subtract, shift, or rotate operation (and maybe others?) set it to bit 4 of the result(?), and the DAA instruction sets/uses this somehow. What I'm not sure is how 16-bit instructions affect it and whether it's affected or not by the use of certain registers.

  • Rena
    Rena over 12 years
    Alright, but what about 16-bit operations? Is the half-carry set from the high or low byte?
  • Tommy
    Tommy over 12 years
    The high byte; it's the most recent half carry. And you've probably found it already, but I find datasheets.chipdb.org/Zilog/Z80/z80-documented-0.90.pdf to have a great description of DAA, plus explanations of where half carry comes from in edge cases like CCF (where it's set to old carry, if memory serves).
  • Michael Stum
    Michael Stum over 8 years
    One thing to add that makes it clear to me: Adding e.g., 0x37 and 0x44 will not cause a half-carry because you only look at the lower 4 bits of each byte, add them together, and see if that overflows. 0x0F + 0x01 does, 0x37 + 0x44 does not.
  • S.S. Anne
    S.S. Anne about 4 years
    The GBZ80 (a.k.a. the SM83) has an 8-bit ALU.
  • NoLongerBreathedIn
    NoLongerBreathedIn about 2 years
    This question is about the Game Boy. The Sharp SM83 acts exactly the same, except it doesn't have a primed register set, IX or IY registers, or either P or S flags.