summaryrefslogtreecommitdiff
path: root/src/arch/x86/include/arch/llshell.h
blob: 556df7d0460e424a2cd546e24ce299bfc59fd830 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __ARCH_LLSHELL__
#define __ARCH_LLSHELL__


#if CONFIG_LLSHELL
#define llshell() asm("jmp low_level_shell");
#else
#define llshell() print_debug("LLSHELL not active.\n");
#endif

#endif