After this has been brought up many times before, rename src/arch/i386 to
[coreboot.git] / src / arch / x86 / include / arch / llshell.h
1 #ifndef __ARCH_LLSHELL__
2 #define __ARCH_LLSHELL__
3
4
5 #if CONFIG_LLSHELL
6 #define llshell() asm("jmp low_level_shell");
7 #else
8 #define llshell() print_debug("LLSHELL not active.\n");
9 #endif
10
11 #endif