Browse code

Use #pragma once instead of include guards.

Naram Qashat authored on 2014/09/08 14:47:36
Showing 1 changed files
... ...
@@ -16,11 +16,8 @@
16 16
 	along with the this software.  If not, see <http://www.gnu.org/licenses/>.
17 17
 */
18 18
 
19
-#ifndef BIOS_H
20
-#define BIOS_H
19
+#pragma once
21 20
 
22 21
 #include "armcpu.h"
23 22
 
24 23
 extern uint32_t (*ARM_swi_tab[2][32])();
25
-
26
-#endif
Browse code

Updating in_2sf to use a newish version of DeSmuME, 0.9.9 from SVN. Somewhat cleaned up as well, but not everything because it's a pain in the ass.

Naram Qashat authored on 2013/04/18 17:22:55
Showing 1 changed files
... ...
@@ -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
Browse code

Import actual code.

Naram Qashat authored on 2013/03/26 02:41:19
Showing 1 changed files
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