mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-30 11:03:48 -06:00
18 lines
280 B
C
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
|