Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #7030 from lioncash/emitter
x64Emitter: Amend parameter ordering for WriteModRM()'s prototype
  • Loading branch information
degasus committed May 30, 2018
2 parents f02b2f0 + 81e11b2 commit 6c7e9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/x64Emitter.h
Expand Up @@ -342,7 +342,7 @@ class XEmitter
void CheckFlags();

void Rex(int w, int r, int x, int b);
void WriteModRM(int mod, int rm, int reg);
void WriteModRM(int mod, int reg, int rm);
void WriteSIB(int scale, int index, int base);
void WriteSimple1Byte(int bits, u8 byte, X64Reg reg);
void WriteSimple2Byte(int bits, u8 byte1, u8 byte2, X64Reg reg);
Expand Down

0 comments on commit 6c7e9f7

Please sign in to comment.