Skip to content

Commit

Permalink
fixes Or32 instructions being recorded as And32
Browse files Browse the repository at this point in the history
  • Loading branch information
tess-eract committed May 7, 2024
1 parent f7dc9ce commit 1aa80c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alu_u32/src/bitwise/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ where
state
.bitwise_u32_mut()
.operations
.push(Operation::And32(a, b, c));
.push(Operation::Or32(a, b, c));
state.cpu_mut().push_bus_op(imm, opcode, ops);
}
}

0 comments on commit 1aa80c9

Please sign in to comment.