From 51d2e297756e9c29e8d3d7d970f194be71958bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20L=C3=B6ffler?= Date: Thu, 26 Jan 2023 00:30:30 +0100 Subject: [PATCH] better addition and cc setting --- src/emulator/instructions/arithmetic.rs | 49 ++++++++++++------------- src/emulator/main.rs | 8 ++-- 2 files changed, 27 insertions(+), 30 deletions(-) diff --git a/src/emulator/instructions/arithmetic.rs b/src/emulator/instructions/arithmetic.rs index aaf88ac..f3d5696 100644 --- a/src/emulator/instructions/arithmetic.rs +++ b/src/emulator/instructions/arithmetic.rs @@ -1,57 +1,54 @@ use crate::structs::{get_register_pair, set_register, set_register_pair}; use crate::{get_register, EmulatorState, Register}; -/// Sets the condition code flags according to `result`. `flags` parameter -/// indicates which flags will be set, 0b1111 will set all (Z, S, C, P) -/// while 0b1000 will only set Z. -fn set_cc(state: &mut EmulatorState, result: u16, flags: u8) { - if flags & 0b1000 > 0 { - state.cc.z = (result & 0xff) == 0; - } - if flags & 0b0100 > 0 { - state.cc.s = (result & 0x80) > 0; - } - if flags & 0b0010 > 0 { - state.cc.c = result > 0xff; - } - if flags & 0b0001 > 0 { - state.cc.p = (result & 0xff).count_ones() % 2 == 0; - } +/// Sets the condition code flags according to `result`. +/// Does not set the carry flag and will always set the Z, S and P flags. +#[inline(always)] +fn set_cc(state: &mut EmulatorState, result: u8) { + state.cc.z = result == 0; + state.cc.s = result & 0x80 > 0; + state.cc.p = result.count_ones() % 2 == 0; } /// Add values of `register` and `A`, add +1 if carry arg is set (either false or state.cc.c) -pub fn add(register: Register, carry: bool, state: &mut EmulatorState) { - let result = get_register(register, state) as u16 + state.a as u16 + u16::from(carry); - set_cc(state, result, 0b1111); - state.a = (result & 0xff) as u8; +pub fn add_reg(register: Register, carry: bool, state: &mut EmulatorState) { + add(get_register(register, state), carry, state); } /// Add values of input byte and `A`, add +1 if carry arg is set (either false or state.cc.c) -pub fn adi(byte: u8, carry: bool, state: &mut EmulatorState) { - let result = state.a as u16 + byte as u16 + u16::from(carry); - set_cc(state, result, 0b1111); - state.a = result as u8; +pub fn add(byte: u8, carry: bool, state: &mut EmulatorState) { + let (a, first) = state.a.overflowing_add(byte); + let (result, second) = a.overflowing_add(carry as u8); + + state.cc.c = first != second; + set_cc(state, result); + state.a = result; } /// Double precision add - Add B&C, D&E or H&L to H&L pub fn dad(register: Register, state: &mut EmulatorState) { let num = get_register_pair(register, state); let (result, overflow) = num.overflowing_add(u16::from_le_bytes([state.l, state.h])); + + // this is the only 16-bit arithmetic function that sets the other flags + state.cc.z = result == 0; + state.cc.s = result & 0x8000 > 0; state.cc.c = overflow; + state.cc.p = result.count_ones() % 2 == 0; set_register_pair(register, result, state); } /// Increase register pub fn inr(register: Register, state: &mut EmulatorState) { let (result, _) = get_register(register, state).overflowing_add(1); - set_cc(state, result as u16, 0b1101); + set_cc(state, result); set_register(register, result, state); } /// Decrease register pub fn dcr(register: Register, state: &mut EmulatorState) { let (result, _) = get_register(register, state).overflowing_sub(1); - set_cc(state, result as u16, 0b1101); + set_cc(state, result); set_register(register, result, state); } diff --git a/src/emulator/main.rs b/src/emulator/main.rs index 014dd33..29ea48f 100644 --- a/src/emulator/main.rs +++ b/src/emulator/main.rs @@ -111,10 +111,10 @@ fn tick(state: &mut EmulatorState) { 0x2b => arithmetic::dcx(Register::H, state), 0x3b => arithmetic::dcx(Register::SP, state), - 0x80..=0x87 => arithmetic::add(register_from_num(instruction & 0xf), false, state), // ADD - 0x88..=0x8f => arithmetic::add(register_from_num(instruction & 0xf), state.cc.c, state), // ADC - 0xc6 => arithmetic::adi(next_byte(), false, state), // ADI - 0xce => arithmetic::adi(next_byte(), state.cc.c, state), // ACI + 0x80..=0x87 => arithmetic::add_reg(register_from_num(instruction & 0xf), false, state), // ADD + 0x88..=0x8f => arithmetic::add_reg(register_from_num(instruction & 0xf), state.cc.c, state), // ADC + 0xc6 => arithmetic::add(next_byte(), false, state), // ADI + 0xce => arithmetic::add(next_byte(), state.cc.c, state), // ACI _ => not_implemented(state), }