reactos/ntoskrnl/ex/zw.S
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

31 lines
382 B
ArmAsm

#include <syscalls.inc>
#ifdef _M_ARM
TEXTAREA
#define SVC_(name, argcount) STUB_K name
#include <sysfuncs.h>
#else
#ifdef _M_IX86
EXTERN _KiSystemService:PROC
#elif defined(_M_AMD64)
#include <ksamd64.inc>
EXTERN KiSystemService:PROC
EXTERN KiZwSystemService:PROC
#endif
.code
#define SVC_(name, argcount) STUB_K name, argcount
#include <sysfuncs.h>
#endif
END