incude asm.inc instead of reactos/asm.h
Fix a bug that smeaked into _chkstk

svn path=/branches/cmake-bringup/; revision=49591
This commit is contained in:
Timo Kreuzer 2010-11-15 01:29:12 +00:00
parent 0c7d0cbc07
commit ab6c2ee54c
66 changed files with 128 additions and 112 deletions

View file

@ -8,11 +8,10 @@
/* INCLUDES ******************************************************************/
#include <reactos/asm.h>
#include <asm.inc>
.intel_syntax noprefix
.global MsgUnimplemented
PUBLIC MsgUnimplemented
MsgUnimplemented:
.asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
@ -27,4 +26,5 @@ MsgUnimplemented:
ret
.endp
END
/* EOF */