| 877 | } |
| 878 | |
| 879 | static U32 syscall_mremap(CPU* cpu, U32 eipCount) { |
| 880 | SYS_LOG1(SYSCALL_MEMORY, cpu, "mremap: oldaddress=%x oldsize=%d newsize=%d flags=%X", ARG1, ARG2, ARG3, ARG4); |
| 881 | U32 result = cpu->memory->mremap(cpu->thread, ARG1, ARG2, ARG3, ARG4); |
| 882 | SYS_LOG(SYSCALL_MEMORY, cpu, " result=%d(0x%X)\n", result, result); |
| 883 | return result; |
| 884 | } |
| 885 | |
| 886 | static U32 syscall_vm86(CPU* cpu, U32 eipCount) { |
| 887 | kpanic("Application tried to enter DOS mode (vm86). BoxedWine does not support this."); |