mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-08-03 17:26:08 -04:00
33 lines
634 B
C++
33 lines
634 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2018.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef IRQS_H
|
|
#define IRQS_H
|
|
|
|
extern "C" {
|
|
|
|
void _irq0();
|
|
void _irq1();
|
|
void _irq2();
|
|
void _irq3();
|
|
void _irq4();
|
|
void _irq5();
|
|
void _irq6();
|
|
void _irq7();
|
|
void _irq8();
|
|
void _irq9();
|
|
void _irq10();
|
|
void _irq11();
|
|
void _irq12();
|
|
void _irq13();
|
|
void _irq14();
|
|
void _irq15();
|
|
|
|
} //end of extern "C"
|
|
|
|
#endif
|