Commenting is nice (also disabled debug in FDD driver)
[tpg/acess2.git] / Kernel / arch / x86 / proc.asm
index b1843c7..1cf1f96 100644 (file)
@@ -74,13 +74,12 @@ SpawnTask:
 ;
 ; Calls a user fault handler
 ;
-[global Proc_AlterUserReturnAddr]
+[global Proc_ReturnToUser]
 [extern Proc_GetCurThread]
-Proc_AlterUserReturnAddr:
+Proc_ReturnToUser:
        ; EBP is the handler to use
        
        call Proc_GetCurThread
-       xchg bx, bx
        
        ; EAX is the current thread
        mov ebx, eax
@@ -115,6 +114,13 @@ Proc_AlterUserReturnAddr:
        
        iret
 
+[global GetCPUNum]
+GetCPUNum:
+       xor eax, eax
+       ltr ax
+       sub ax, 0x30
+       shr ax, 3       ; ax /= 8
+       ret
 
 [section .usertext]
 User_Syscall_RetAndExit:

UCC git Repository :: git.ucc.asn.au