8 lines
138 B
C
8 lines
138 B
C
|
#include "interrupt.h"
|
||
|
|
||
|
// Need GCC > 6
|
||
|
__attribute__((interrupt)) void keyboard_handler(struct interrupt_frame *frame)
|
||
|
{
|
||
|
(void)frame;
|
||
|
}
|