coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
interrupt.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef INTERRUPT_H
4 #define INTERRUPT_H
5 
6 #include "registers.h"
7 
8 /* setup interrupt handlers for mainboard */
9 #if CONFIG(PCI_OPTION_ROM_RUN_REALMODE)
10 extern void mainboard_interrupt_handlers(int intXX, int (*intXX_func)(void));
11 #elif CONFIG(PCI_OPTION_ROM_RUN_YABEL)
13 #else
14 static inline void mainboard_interrupt_handlers(int intXX,
15  int (*intXX_func)(void)) { }
16 #endif
17 
18 #endif /* INTERRUPT_H */
static void mainboard_interrupt_handlers(int intXX, int(*intXX_func)(void))
Definition: interrupt.h:14