Fixed typo in x86-64 MEM_CHECK_WRITE_W()/L() functions - Windows XP boots on x86-64 recompiler again.
This commit is contained in:
parent
6692f708ad
commit
03a63ecb88
1 changed files with 2 additions and 2 deletions
|
|
@ -5509,7 +5509,7 @@ static inline void MEM_CHECK_WRITE_W(x86seg *seg)
|
|||
{
|
||||
addbyte(0x83); /*CMP writelookup2[RSI*8],-1*/
|
||||
addbyte(0x3c);
|
||||
addbyte(0xfd);
|
||||
addbyte(0xf5);
|
||||
addlong((uint32_t)(uintptr_t)writelookup2);
|
||||
addbyte(-1);
|
||||
}
|
||||
|
|
@ -5658,7 +5658,7 @@ static inline void MEM_CHECK_WRITE_L(x86seg *seg)
|
|||
{
|
||||
addbyte(0x83); /*CMP writelookup2[RSI*8],-1*/
|
||||
addbyte(0x3c);
|
||||
addbyte(0xfd);
|
||||
addbyte(0xf5);
|
||||
addlong((uint32_t)(uintptr_t)writelookup2);
|
||||
addbyte(-1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue