Skip to content

Commit

Permalink
Revert ValueProvider changes from machine.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
antis81 committed Jul 16, 2023
1 parent 66b579d commit 7832c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ AsmResult Machine::assemble(Instruction const& instr)
if (arg.mode == Mode::ZP_REL) {
// Handle 65c02 bbrX & rmbX opcodes
auto bit = arg.val >> 24;
arg.val = arg.val & 0xffffff;
arg.val &= 0xffffff;
arg.opcode = arg.opcode + std::to_string(bit);
}

Expand Down

0 comments on commit 7832c97

Please sign in to comment.