mirror of
https://github.com/reactos/reactos.git
synced 2024-10-29 19:13:58 +00:00
[CRT]
add ARM stub for chkstk_ms (Timo please review) svn path=/trunk/; revision=67368
This commit is contained in:
parent
85567042ab
commit
a3d2dff6bc
30
reactos/lib/sdk/crt/except/arm/chkstk_ms.s
Normal file
30
reactos/lib/sdk/crt/except/arm/chkstk_ms.s
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
|
* PROJECT: ReactOS system libraries
|
||||||
|
* PURPOSE: Implementation of _chkstk and _alloca_probe
|
||||||
|
* FILE: lib/sdk/crt/except/arm/chkstk_ms.s
|
||||||
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||||
|
* Yuntian Zhang (yuntian.zh@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
|
#include <kxarm.h>
|
||||||
|
|
||||||
|
/* CODE **********************************************************************/
|
||||||
|
TEXTAREA
|
||||||
|
|
||||||
|
MsgUnimplemented ASCII "Unimplemented", CR, LF, NUL
|
||||||
|
|
||||||
|
LEAF_ENTRY ___chkstk_ms
|
||||||
|
UNIMPLEMENTED chkstk_ms
|
||||||
|
bx lr
|
||||||
|
LEAF_END __chkstk_ms
|
||||||
|
|
||||||
|
LEAF_ENTRY __alloca_probe
|
||||||
|
UNIMPLEMENTED alloca_probe
|
||||||
|
bx lr
|
||||||
|
LEAF_END __alloca_probe
|
||||||
|
|
||||||
|
END
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue