restructure the repository to be Cyclone only
[cyclone68000.git] / Disa / Disa.h
diff --git a/Disa/Disa.h b/Disa/Disa.h
new file mode 100644 (file)
index 0000000..dddc21d
--- /dev/null
@@ -0,0 +1,33 @@
+\r
+// This file is part of the PicoDrive Megadrive Emulator\r
+\r
+// Copyright (c) 2011 FinalDave (emudave (at) gmail.com)\r
+\r
+// This code is licensed under the GNU General Public License version 2.0 and the MAME License.\r
+// You can choose the license that has the most advantages for you.\r
+\r
+// SVN repository can be found at http://code.google.com/p/cyclone68000/\r
+\r
+// Disa 68000 Disassembler\r
+\r
+#ifdef __cplusplus\r
+extern "C" {\r
+#endif\r
+\r
+#if defined(__GNUC__) || defined(_WIN32_WCE)\r
+#define CPU_CALL\r
+#else\r
+#define CPU_CALL __fastcall\r
+#endif\r
+\r
+extern unsigned int DisaPc;\r
+extern char *DisaText; // Text buffer to write in\r
+\r
+extern unsigned short (CPU_CALL *DisaWord)(unsigned int a);\r
+int DisaGetEa(char *t,int ea,int size);\r
+\r
+int DisaGet();\r
+\r
+#ifdef __cplusplus\r
+} // End of extern "C"\r
+#endif\r