Fix wrong macro. MSVC win32 build should work again now.
This commit is contained in:
parent
7ac6b087af
commit
8b7870b81f
1 changed files with 1 additions and 3 deletions
|
@ -413,8 +413,7 @@ static void DoSyscall(void)
|
||||||
|
|
||||||
vm_t *savedVM;
|
vm_t *savedVM;
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#if defined(_MSC_VER) && !idx64
|
||||||
#ifndef idx64
|
|
||||||
__asm
|
__asm
|
||||||
{
|
{
|
||||||
mov dword ptr syscallNum, eax
|
mov dword ptr syscallNum, eax
|
||||||
|
@ -423,7 +422,6 @@ static void DoSyscall(void)
|
||||||
mov dword ptr opStackBase, edi
|
mov dword ptr opStackBase, edi
|
||||||
mov dword ptr arg, ecx
|
mov dword ptr arg, ecx
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
#else
|
#else
|
||||||
__asm__ volatile(
|
__asm__ volatile(
|
||||||
""
|
""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue