mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:45:50 +00:00
* Sync up to trunk head (r64377).
svn path=/branches/shell-experiments/; revision=64380
This commit is contained in:
commit
42040abadc
459 changed files with 19891 additions and 16721 deletions
32
lib/sdk/crt/except/arm/chkstk_asm.s
Normal file
32
lib/sdk/crt/except/arm/chkstk_asm.s
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
* PURPOSE: Implementation of _chkstk and _alloca_probe
|
||||
* FILE: lib/sdk/crt/math/amd64/chkstk_asm.s
|
||||
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*/
|
||||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include <asm.inc>
|
||||
|
||||
/* CODE **********************************************************************/
|
||||
.code64
|
||||
|
||||
MsgUnimplemented:
|
||||
.ascii "Unimplemented", CR, LF, NUL
|
||||
|
||||
FUNC __chkstk
|
||||
.endprolog
|
||||
UNIMPLEMENTED chkstk
|
||||
ret
|
||||
ENDFUNC
|
||||
|
||||
FUNC __alloca_probe
|
||||
.endprolog
|
||||
UNIMPLEMENTED alloca_probe
|
||||
ret
|
||||
ENDFUNC
|
||||
|
||||
END
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue