From: slack Date: Sun, 2 Oct 2011 15:29:56 +0000 (+0200) Subject: Fixed zero flag in ADD HL, r16 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=a4dd533c7ffd9c851c52f0b777fac8013b4a55b3;p=wenboi.git Fixed zero flag in ADD HL, r16 --- diff --git a/core/opcodes.h b/core/opcodes.h index 7333e15..61c05c8 100644 --- a/core/opcodes.h +++ b/core/opcodes.h @@ -224,7 +224,6 @@ int half_res = (regs.HL & 0xFFF) + (regs.reg16 & 0xFFF); \ regs.HL = static_cast(res); \ reset_flag(ADD_SUB_FLAG); \ - set_flag_if (res == 0, ZERO_FLAG); \ set_flag_if (half_res > 0xFFF, HALF_CARRY_FLAG); \ set_flag_if (res > 0xFFFF, CARRY_FLAG); \ cycles_until_next_instruction = 8; \