Implements SBCS instruction#20
Merged
Merged
Conversation
Adds the SBCS (Subtract with Carry) instruction to the instruction decoder and arithmetic operations. This instruction performs subtraction with carry, taking into account the carry flag in the CPSR. A new opcode rule is added to the instruction decoder to map the instruction. Additionally, a test case is added to verify the instruction's correctness.
begeistert
requested changes
Feb 2, 2026
5 tasks
Implementing test when R0 should be 0 and also checking the substraction of negative result.
Fix the subtract-with-carry (SBC) operation in ArithmeticOps.cs to use AddWithFlags with the two's-complement operand and an explicit carry value. Previously the code attempted to compute SBC by subtracting (valRm + (1 - C)) via SubWithFlags, which produced incorrect flag behavior and was harder to reason about. Changes: - read carry into a local uint (carry = C ? 1 : 0) - call AddWithFlags(cpu, rdn, ~valRm, carry) to implement rdn - rm - (1 - C) using two's-complement addition This makes the implementation correct for borrow/carry handling and aligns with canonical SBC semantics while preserving CPU flags.
|
begeistert
approved these changes
Feb 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Adds the SBCS (Subtract with Carry) instruction to the instruction decoder and arithmetic operations.
This instruction performs subtraction with carry, taking into account the carry flag in the CPSR. A new opcode rule is added to the instruction decoder to map the instruction. Additionally, a test case is added to verify the instruction's correctness.
Description
Type of change
Checklist
dotnet test)Screenshots / Hex Dumps (Optional)