memtest86plus/app/interrupt.h

21 lines
305 B
C
Raw Normal View History

2020-05-24 23:30:55 +03:00
// SPDX-License-Identifier: GPL-2.0
#ifndef INTERRUPT_H
#define INTERRUPT_H
/**
* \file
*
2020-05-24 23:30:55 +03:00
* Provides the interrupt handler.
*
*//*
* Copyright (C) 2020-2022 Martin Whitaker.
2020-05-24 23:30:55 +03:00
*/
struct trap_regs;
/**
2020-05-24 23:30:55 +03:00
* Handles an interrupt.
*/
void interrupt(struct trap_regs *trap_regs);
#endif // INTERRUPT_H