x64Emitter: RDTSC now without a typo'd name
This commit is contained in:
parent
88af225070
commit
9c4daac3a4
|
@ -1679,7 +1679,7 @@ void XEmitter::FST(int bits, OpArg dest) {WriteFloatLoadStore(bits, floatST, des
|
||||||
void XEmitter::FSTP(int bits, OpArg dest) {WriteFloatLoadStore(bits, floatSTP, dest);}
|
void XEmitter::FSTP(int bits, OpArg dest) {WriteFloatLoadStore(bits, floatSTP, dest);}
|
||||||
void XEmitter::FNSTSW_AX() { Write8(0xDF); Write8(0xE0); }
|
void XEmitter::FNSTSW_AX() { Write8(0xDF); Write8(0xE0); }
|
||||||
|
|
||||||
void XEmitter::RTDSC() { Write8(0x0F); Write8(0x31); }
|
void XEmitter::RDTSC() { Write8(0x0F); Write8(0x31); }
|
||||||
|
|
||||||
// helper routines for setting pointers
|
// helper routines for setting pointers
|
||||||
void XEmitter::CallCdeclFunction3(void* fnptr, u32 arg0, u32 arg1, u32 arg2)
|
void XEmitter::CallCdeclFunction3(void* fnptr, u32 arg0, u32 arg1, u32 arg2)
|
||||||
|
|
|
@ -705,7 +705,7 @@ public:
|
||||||
void VPAND(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
void VPAND(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
||||||
void VPANDN(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
void VPANDN(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
||||||
|
|
||||||
void RTDSC();
|
void RDTSC();
|
||||||
|
|
||||||
// Utility functions
|
// Utility functions
|
||||||
// The difference between this and CALL is that this aligns the stack
|
// The difference between this and CALL is that this aligns the stack
|
||||||
|
|
Loading…
Reference in New Issue