mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
30 lines
659 B
ArmAsm
30 lines
659 B
ArmAsm
/*
|
|
* 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 <reactos/asm.h>
|
|
|
|
.intel_syntax noprefix
|
|
|
|
.global MsgUnimplemented
|
|
MsgUnimplemented:
|
|
.asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
|
|
|
|
|
|
.proc _chkstk
|
|
UNIMPLEMENTED chkstk
|
|
ret
|
|
.endp
|
|
|
|
.proc _alloca_probe
|
|
UNIMPLEMENTED alloca_probe
|
|
ret
|
|
.endp
|
|
|
|
/* EOF */
|