1/* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS system libraries 4 * PURPOSE: Implementation of _chkstk and _alloca_probe 5 * FILE: lib/sdk/crt/except/amd64/chkstk_asm.s 6 * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) 7 */ 8 9/* INCLUDES ******************************************************************/ 10 11#include <asm.inc> 12 13/* CODE **********************************************************************/ 14.code64 15 16MsgUnimplemented: 17 .ascii "Unimplemented", CR, LF, NUL 18 19FUNC __chkstk 20 .endprolog 21 UNIMPLEMENTED chkstk 22 ret 23ENDFUNC 24 25FUNC __alloca_probe 26 .endprolog 27 UNIMPLEMENTED alloca_probe 28 ret 29ENDFUNC 30 31END 32/* EOF */ 33