Files
ac-decomp/include/dolphin/os/OSException.h
T
2023-03-15 16:46:43 -04:00

10 lines
177 B
C

#ifndef DOLPHIN_OSEXCEPTION_H
#define DOLPHIN_OSEXCEPTION_H
typedef enum OSException {
OS_EXCEPTION_FLOATING_POINT = 7,
OS_EXCEPTION_COUNT = 15,
} OSException;
#endif