103 lines
2.8 KiB
C
103 lines
2.8 KiB
C
/*
|
|
Copyright 2025 Kamil Kowalczyk
|
|
|
|
Redistribution and use in source and binary forms, with or
|
|
without modification, are permitted provided that the following
|
|
conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the copyright holder nor the names of its
|
|
contributors may be used to endorse or promote products derived from
|
|
this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
“AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _SYS_ISR_H
|
|
#define _SYS_ISR_H
|
|
|
|
void except0(void);
|
|
void except1(void);
|
|
void except2(void);
|
|
void except3(void);
|
|
void except4(void);
|
|
void except5(void);
|
|
void except6(void);
|
|
void except7(void);
|
|
void except8(void);
|
|
void except9(void);
|
|
void except10(void);
|
|
void except11(void);
|
|
void except12(void);
|
|
void except13(void);
|
|
void except14(void);
|
|
void except15(void);
|
|
void except16(void);
|
|
void except17(void);
|
|
void except18(void);
|
|
void except19(void);
|
|
void except20(void);
|
|
void except21(void);
|
|
void except22(void);
|
|
void except23(void);
|
|
void except24(void);
|
|
void except25(void);
|
|
void except26(void);
|
|
void except27(void);
|
|
void except28(void);
|
|
void except29(void);
|
|
void except30(void);
|
|
void except31(void);
|
|
void except128(void);
|
|
|
|
void irq0(void);
|
|
void irq1(void);
|
|
void irq2(void);
|
|
void irq3(void);
|
|
void irq4(void);
|
|
void irq5(void);
|
|
void irq6(void);
|
|
void irq7(void);
|
|
void irq8(void);
|
|
void irq9(void);
|
|
void irq10(void);
|
|
void irq11(void);
|
|
void irq12(void);
|
|
void irq13(void);
|
|
void irq14(void);
|
|
void irq15(void);
|
|
|
|
#define IRQ_PIT 32+0
|
|
#define IRQ_KBD 32+1
|
|
#define IRQ_COM2 32+3
|
|
#define IRQ_COM1 32+4
|
|
#define IRQ_LPT2 32+5
|
|
#define IRQ_FLOPPY 32+6
|
|
#define IRQ_LPT1 32+7
|
|
#define IRQ_CMOS_RTC 32+8
|
|
#define IRQ_FREE9 32+9
|
|
#define IRQ_FREE10 32+10
|
|
#define IRQ_FREE11 32+11
|
|
#define IRQ_PS2_MOUSE 32+12
|
|
#define IRQ_FPU 32+13
|
|
#define IRQ_PRIM_ATA 32+14
|
|
#define IRQ_SCND_ATA 32+15
|
|
|
|
#endif // _SYS_ISR_H
|