From 917184d6356d81ff0ccacff8dae2717822243b22 Mon Sep 17 00:00:00 2001 From: slack Date: Sun, 2 Oct 2011 18:12:34 +0200 Subject: [PATCH] Fixed zero flag in SBC --- core/GameBoy.cc | 4 ++-- core/opcodes.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/GameBoy.cc b/core/GameBoy.cc index bf789fb..f49ffc8 100644 --- a/core/GameBoy.cc +++ b/core/GameBoy.cc @@ -745,7 +745,7 @@ GameBoy::run_status GameBoy::run_cycle() set_flag(ADD_SUB_FLAG); set_flag_if (res < 0, CARRY_FLAG); - set_flag_if (res == 0, ZERO_FLAG); + set_flag_if (regs.A == 0, ZERO_FLAG); set_flag_if (half_res < 0, HALF_CARRY_FLAG); cycles_until_next_instruction = 8; break; @@ -761,7 +761,7 @@ GameBoy::run_status GameBoy::run_cycle() set_flag(ADD_SUB_FLAG); set_flag_if (res < 0, CARRY_FLAG); - set_flag_if (res == 0, ZERO_FLAG); + set_flag_if (regs.A == 0, ZERO_FLAG); set_flag_if (half_res < 0, HALF_CARRY_FLAG); cycles_until_next_instruction = 8; break; diff --git a/core/opcodes.h b/core/opcodes.h index 61c05c8..d5eab5d 100644 --- a/core/opcodes.h +++ b/core/opcodes.h @@ -144,7 +144,7 @@ regs.A = static_cast(res); \ set_flag(ADD_SUB_FLAG); \ set_flag_if (res < 0, CARRY_FLAG); \ - set_flag_if (res == 0, ZERO_FLAG); \ + set_flag_if (regs.A == 0, ZERO_FLAG); \ set_flag_if (half_res < 0, HALF_CARRY_FLAG); \ cycles_until_next_instruction = 4; \ break; \ -- 2.34.1