Skip to content

Commit

Permalink
fix rsb
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTarados committed Dec 10, 2023
1 parent 7f0911a commit 739ccb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/render_logic/armv4/instructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ class armv4_Operator_Lists{
return sum;
}, "0010", language);

let rsub_operator = new armv4_Data_proc_operator("RSB", [4,6,7,8,9], (a,b,s,nzcv)=>{ sub_operator.f(b,a,s)}, "0011");
let rsub_operator = new armv4_Data_proc_operator("RSB", [4,6,7,8,9], (a,b,s,nzcv)=>{ sub_operator.f(b,a,s)}, "0011", language);

let sbc_operator = new armv4_Data_proc_operator("SBC", [4,6,7,8,9], (a,b,s,nzcv)=>{
a = get_unsigned_value(a)
Expand Down

1 comment on commit 739ccb0

@TheTarados
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Solves #3.

Please sign in to comment.