memtest86plus/app/interrupt.h
2020-05-24 21:30:55 +01:00

18 lines
280 B
C

// SPDX-License-Identifier: GPL-2.0
#ifndef INTERRUPT_H
#define INTERRUPT_H
/*
* Provides the interrupt handler.
*
* Copyright (C) 2020 Martin Whitaker.
*/
struct trap_regs;
/*
* Handles an interrupt.
*/
void interrupt(struct trap_regs *trap_regs);
#endif // INTERRUPT_H