Skip to content

Commit

Permalink
Fix wrong extended byte for set N, r8
Browse files Browse the repository at this point in the history
Fixes #17
  • Loading branch information
ISSOtm authored Jan 27, 2022
1 parent b3d9d05 commit 6615e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ function determineSetType(operand) {
}

byteStream.push(203);
byteStream.push(196 + bit * 8 + reg);
byteStream.push(192 + bit * 8 + reg);
return 2;
}

Expand Down

0 comments on commit 6615e6f

Please sign in to comment.