From a4dd533c7ffd9c851c52f0b777fac8013b4a55b3 Mon Sep 17 00:00:00 2001 From: slack Date: Sun, 2 Oct 2011 17:29:56 +0200 Subject: [PATCH] Fixed zero flag in ADD HL, r16 --- core/opcodes.h | 1 - 1 file changed, 1 deletion(-) 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; \ -- 2.34.1