Support vm syscalls with up to 15 args using 64 bit compiled vm (like interprated vms).

This commit is contained in:
Zack Middleton 2011-09-09 21:54:14 +00:00
parent b7fa3e7073
commit f7a20068ee
2 changed files with 4 additions and 4 deletions

View file

@ -442,7 +442,7 @@ static void DoSyscall(void)
int *data;
#if idx64
int index;
intptr_t args[11];
intptr_t args[16];
#endif
data = (int *) (savedVM->dataBase + programStack + 4);