mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-15 01:09:15 +00:00
x32 is now compiling
This commit is contained in:
@ -11,7 +11,7 @@ extern "C" uintptr_t SystemCallsHandler(SyscallsFrame *Frame)
|
||||
CPU::Interrupts(CPU::Enable);
|
||||
SmartLock(SyscallsLock); /* TODO: This should be replaced or moved somewhere else. */
|
||||
|
||||
#if defined(__amd64__)
|
||||
#if defined(a64)
|
||||
switch (TaskManager->GetCurrentThread()->Info.Compatibility)
|
||||
{
|
||||
case Tasking::TaskCompatibility::Native:
|
||||
@ -30,9 +30,9 @@ extern "C" uintptr_t SystemCallsHandler(SyscallsFrame *Frame)
|
||||
break;
|
||||
}
|
||||
}
|
||||
#elif defined(__i386__)
|
||||
#elif defined(a32)
|
||||
fixme("System call %lld", Frame->eax);
|
||||
#elif defined(__aarch64__)
|
||||
#elif defined(aa64)
|
||||
fixme("System call");
|
||||
#endif
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user