added copyright line to top of source files next to license information
[cyclone68000.git] / Pico / Disa.h
CommitLineData
6003a768 1\r
4abeeb4b 2// This file is part of the PicoDrive Megadrive Emulator\r
3\r
c41b9b97 4// Copyright (c) 2011 FinalDave (emudave (at) gmail.com)\r
5\r
4abeeb4b 6// This code is licensed under the GNU General Public License version 2.0 and the MAME License.\r
7// You can choose the license that has the most advantages for you.\r
8\r
9// SVN repository can be found at http://code.google.com/p/cyclone68000/\r
10\r
15eb0001 11// Disa 68000 Disassembler\r
6003a768 12\r
13#ifdef __cplusplus\r
14extern "C" {\r
15#endif\r
16\r
15eb0001 17#if defined(__GNUC__) || defined(_WIN32_WCE)\r
6003a768 18#define CPU_CALL\r
15eb0001 19#else\r
20#define CPU_CALL __fastcall\r
21#endif\r
6003a768 22\r
23extern unsigned int DisaPc;\r
24extern char *DisaText; // Text buffer to write in\r
25\r
26extern unsigned short (CPU_CALL *DisaWord)(unsigned int a);\r
27int DisaGetEa(char *t,int ea,int size);\r
28\r
29int DisaGet();\r
30\r
31#ifdef __cplusplus\r
32} // End of extern "C"\r
33#endif\r