mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
32 lines
792 B
ArmAsm
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 */
|