summaryrefslogtreecommitdiff
path: root/arch/x86/machine/asm.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/machine/asm.h')
-rw-r--r--arch/x86/machine/asm.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/arch/x86/machine/asm.h b/arch/x86/machine/asm.h
index e427b51..3d2da75 100644
--- a/arch/x86/machine/asm.h
+++ b/arch/x86/machine/asm.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 Richard Braun.
+ * Copyright (c) 2011, 2012 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,24 +18,25 @@
#ifndef _X86_ASM_H
#define _X86_ASM_H
-#ifdef __ASSEMBLY__
+#include <machine/param.h>
-#define TEXT_ALIGN 4
-#define DATA_ALIGN 2
+#ifdef __ASSEMBLY__
-#define ENTRY(x) \
-.p2align TEXT_ALIGN, 0x90; \
-.global x; \
-.type x, STT_FUNC; \
+#define ENTRY(x) \
+.align TEXT_ALIGN; \
+.global x; \
+.type x, STT_FUNC; \
x:
#define DATA(x) \
-.p2align DATA_ALIGN; \
+.align DATA_ALIGN; \
.global x; \
.type x, STT_OBJECT; \
x:
-#define END(x) .size x, . - x;
+#define END(x) \
+.size x, . - x; \
+x ## _end:
#endif /* __ASSEMBLY__ */