reactos/dll/win32/kernel32/thread/i386/thread.S
Amine Khaldi c424146e2c Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
2010-07-24 18:52:44 +00:00

32 lines
792 B
ArmAsm

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/kernel32/thread/i386/thread.S
* PURPOSE: Thread Start Thunks
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
*/
.globl _BaseThreadStartupThunk@0
.globl _BaseProcessStartThunk@0
.intel_syntax noprefix
_BaseThreadStartupThunk@0:
/* Start out fresh */
xor ebp, ebp
push ebx /* lpParameter */
push eax /* lpStartAddress */
push 0 /* Return EIP */
jmp _BaseThreadStartup@8
_BaseProcessStartThunk@0:
/* Start out fresh */
xor ebp, ebp
push eax /* lpStartAddress */
push 0 /* Return EIP */
jmp _BaseProcessStartup@4
/* EOF */