|
@@ -23,16 +23,16 @@
|
|
|
*/
|
|
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
-#define _AC(X, Y) (Y)
|
|
|
+#define _UML_AC(X, Y) (Y)
|
|
|
#else
|
|
|
-#define __AC(X, Y) (X (Y))
|
|
|
-#define _AC(X, Y) __AC(X, Y)
|
|
|
+#define __UML_AC(X, Y) (X(Y))
|
|
|
+#define _UML_AC(X, Y) __UML_AC(X, Y)
|
|
|
#endif
|
|
|
|
|
|
-#define STUB_START _AC(, 0x100000)
|
|
|
-#define STUB_CODE _AC((unsigned long), STUB_START)
|
|
|
-#define STUB_DATA _AC((unsigned long), STUB_CODE + UM_KERN_PAGE_SIZE)
|
|
|
-#define STUB_END _AC((unsigned long), STUB_DATA + UM_KERN_PAGE_SIZE)
|
|
|
+#define STUB_START _UML_AC(, 0x100000)
|
|
|
+#define STUB_CODE _UML_AC((unsigned long), STUB_START)
|
|
|
+#define STUB_DATA _UML_AC((unsigned long), STUB_CODE + UM_KERN_PAGE_SIZE)
|
|
|
+#define STUB_END _UML_AC((unsigned long), STUB_DATA + UM_KERN_PAGE_SIZE)
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|