coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
exception.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 
3 #ifndef _ARCH_EXCEPTION_H
4 #define _ARCH_EXCEPTION_H
5 
6 #include <arch/cpu.h>
7 
8 #if CONFIG(IDT_IN_EVERY_STAGE) || ENV_RAMSTAGE
9 asmlinkage void exception_init(void);
10 #else
11 static inline void exception_init(void) { /* not implemented */ }
12 #endif
13 
14 #endif
#define asmlinkage
Definition: cpu.h:8
void exception_init(void)
Definition: exception.c:120