summaryrefslogtreecommitdiffhomepage
path: root/DDK/KernelDispatchCall.S
diff options
context:
space:
mode:
Diffstat (limited to 'DDK/KernelDispatchCall.S')
-rw-r--r--DDK/KernelDispatchCall.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/DDK/KernelDispatchCall.S b/DDK/KernelDispatchCall.S
index 64b6663e..68423ab5 100644
--- a/DDK/KernelDispatchCall.S
+++ b/DDK/KernelDispatchCall.S
@@ -1,17 +1,17 @@
.globl __kernelDispatchCall
-.section .text
+.text
/* Really simple function, takes our va-list,
and brings it to the trap handler in the kernel. */
-#ifdef __x86_64__
+#ifdef __DDK_AMD64__
__kernelDispatchCall:
int $0x33
ret
-#elif defined(__powerpc64__)
+#elif defined(__DDK_POWER64__)
__kernelDispatchCall:
/* There is no specific interrupt request id for a system call in POWER. */