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 1
deleted file mode 100644
... ...
@@ -1,31 +0,0 @@
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 THUMB_INSTRUCTIONS_H
20
-#define THUMB_INSTRUCTIONS_H
21
-
22
-#include "armcpu.h"
23
-
24
-typedef uint32_t (FASTCALL* ThumbOpFunc)(const uint32_t i);
25
-
26
-extern const ThumbOpFunc thumb_instructions_set_0[1024];
27
-extern const ThumbOpFunc thumb_instructions_set_1[1024];
28
-
29
-//extern const char* thumb_instruction_names[1024];
30
-
31
-#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,31 @@
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 THUMB_INSTRUCTIONS_H
20
+#define THUMB_INSTRUCTIONS_H
21
+
22
+#include "armcpu.h"
23
+
24
+typedef uint32_t (FASTCALL* ThumbOpFunc)(const uint32_t i);
25
+
26
+extern const ThumbOpFunc thumb_instructions_set_0[1024];
27
+extern const ThumbOpFunc thumb_instructions_set_1[1024];
28
+
29
+//extern const char* thumb_instruction_names[1024];
30
+
31
+#endif