1 | #define MULTIPROCESSOR 1 |
---|---|
2 | #ifdef _LOCORE |
3 | .ifndef _KERNEL_OPT_MULTIPROCESSOR |
4 | .global _KERNEL_OPT_MULTIPROCESSOR |
5 | .equiv _KERNEL_OPT_MULTIPROCESSOR,0x1 |
6 | .endif |
7 | #else |
8 | __asm(" .ifndef _KERNEL_OPT_MULTIPROCESSOR\n .global _KERNEL_OPT_MULTIPROCESSOR\n .equiv _KERNEL_OPT_MULTIPROCESSOR,0x1\n .endif"); |
9 | #endif |
10 |