Two hda_verb.h files: Add more comments.
[coreboot.git] / src / arch / i386 / 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