mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-04-05 21:24:59 -07:00
13 lines
144 B
C
13 lines
144 B
C
#ifndef EXCEPTIONS_H
|
|
#define EXCEPTIONS_H
|
|
|
|
void DivideByZero();
|
|
|
|
void DoubleFault();
|
|
|
|
void PageFault();
|
|
|
|
void GeneralProtectionFault();
|
|
|
|
#endif
|