mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
9393fc320e
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
36 lines
No EOL
594 B
ArmAsm
36 lines
No EOL
594 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS C run time library
|
|
* PURPOSE: Stack checker
|
|
* PROGRAMMERS: Jérôme Gardou
|
|
*/
|
|
|
|
#include <asm.inc>
|
|
#include <ks386.inc>
|
|
|
|
/* Code is taken from wine 1.3.33,
|
|
* Copyright Jon Griffiths and Alexandre Julliard
|
|
*/
|
|
EXTERN __chkesp_failed:PROC
|
|
|
|
PUBLIC __chkesp
|
|
.code
|
|
__chkesp:
|
|
jnz .test_failed
|
|
ret
|
|
|
|
.test_failed:
|
|
push ebp
|
|
mov ebp, esp
|
|
sub esp, 12
|
|
push eax
|
|
push ecx
|
|
push edx
|
|
call __chkesp_failed
|
|
pop edx
|
|
pop ecx
|
|
pop eax
|
|
leave
|
|
ret
|
|
|
|
END |