| ... | ... |
@@ -1,6 +1,6 @@ |
| 1 | 1 |
/* |
| 2 | 2 |
Copyright (C) 2006 yopyop |
| 3 |
- Copyright (C) 2006-2009 DeSmuME team |
|
| 3 |
+ Copyright (C) 2006-2012 DeSmuME team |
|
| 4 | 4 |
|
| 5 | 5 |
This file is free software: you can redistribute it and/or modify |
| 6 | 6 |
it under the terms of the GNU General Public License as published by |
| ... | ... |
@@ -21,7 +21,6 @@ |
| 21 | 21 |
|
| 22 | 22 |
#include "armcpu.h" |
| 23 | 23 |
|
| 24 |
-extern uint32_t (*ARM9_swi_tab[32])(); |
|
| 25 |
-extern uint32_t (*ARM7_swi_tab[32])(); |
|
| 24 |
+extern uint32_t (*ARM_swi_tab[2][32])(); |
|
| 26 | 25 |
|
| 27 | 26 |
#endif |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,27 @@ |
| 1 |
+/* |
|
| 2 |
+ Copyright (C) 2006 yopyop |
|
| 3 |
+ Copyright (C) 2006-2009 DeSmuME team |
|
| 4 |
+ |
|
| 5 |
+ This file is free software: you can redistribute it and/or modify |
|
| 6 |
+ it under the terms of the GNU General Public License as published by |
|
| 7 |
+ the Free Software Foundation, either version 2 of the License, or |
|
| 8 |
+ (at your option) any later version. |
|
| 9 |
+ |
|
| 10 |
+ This file is distributed in the hope that it will be useful, |
|
| 11 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 12 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 13 |
+ GNU General Public License for more details. |
|
| 14 |
+ |
|
| 15 |
+ You should have received a copy of the GNU General Public License |
|
| 16 |
+ along with the this software. If not, see <http://www.gnu.org/licenses/>. |
|
| 17 |
+*/ |
|
| 18 |
+ |
|
| 19 |
+#ifndef BIOS_H |
|
| 20 |
+#define BIOS_H |
|
| 21 |
+ |
|
| 22 |
+#include "armcpu.h" |
|
| 23 |
+ |
|
| 24 |
+extern uint32_t (*ARM9_swi_tab[32])(); |
|
| 25 |
+extern uint32_t (*ARM7_swi_tab[32])(); |
|
| 26 |
+ |
|
| 27 |
+#endif |