psxbios: completely rework exception handling
[pcsx_rearmed.git] / libpcsxcore / psxhle.h
1 /***************************************************************************
2  *   Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team              *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA.           *
18  ***************************************************************************/
19
20 #ifndef __PSXHLE_H__
21 #define __PSXHLE_H__
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #include "psxcommon.h"
28 #include "r3000a.h"
29 #include "plugins.h"
30
31 void hleExc0_0_1(); void hleExc0_0_2();
32 void hleExc0_1_1(); void hleExc0_1_2();
33 void hleExc0_2_2_syscall();
34 void hleExc1_0_1(); void hleExc1_0_2();
35 void hleExc1_1_1(); void hleExc1_1_2();
36 void hleExc1_2_1(); void hleExc1_2_2();
37 void hleExc1_3_1(); void hleExc1_3_2();
38 void hleExc3_0_2_defint();
39
40 enum hle_op {
41         hleop_dummy = 0, hleop_a0, hleop_b0, hleop_c0,
42         hleop_bootstrap, hleop_execret, hleop_exception, hleop_unused,
43         hleop_exc0_0_1, hleop_exc0_0_2,
44         hleop_exc0_1_1, hleop_exc0_1_2, hleop_exc0_2_2,
45         hleop_exc1_0_1, hleop_exc1_0_2,
46         hleop_exc1_1_1, hleop_exc1_1_2,
47         hleop_exc1_2_1, hleop_exc1_2_2,
48         hleop_exc1_3_1, hleop_exc1_3_2,
49         hleop_exc3_0_2,
50 };
51
52 extern void (* const psxHLEt[22])();
53
54 #ifdef __cplusplus
55 }
56 #endif
57 #endif