[CRT]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Wed, 24 Sep 2014 23:12:34 +0000 (23:12 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Wed, 24 Sep 2014 23:12:34 +0000 (23:12 +0000)
Add arm stub for __chkstk, dedicated to Z98

svn path=/trunk/; revision=64264

reactos/lib/sdk/crt/except/arm/chkstk_asm.s [new file with mode: 0644]

diff --git a/reactos/lib/sdk/crt/except/arm/chkstk_asm.s b/reactos/lib/sdk/crt/except/arm/chkstk_asm.s
new file mode 100644 (file)
index 0000000..f94d764
--- /dev/null
@@ -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 */