1 /*
2 ** Nofrendo (c) 1998-2000 Matthew Conte (matt@conte.com)
3 **
4 **
5 ** This program is free software; you can redistribute it and/or
6 ** modify it under the terms of version 2 of the GNU Library General
7 ** Public License as published by the Free Software Foundation.
8 **
9 ** This program is distributed in the hope that it will be useful,
10 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ** Library General Public License for more details.  To obtain a
13 ** copy of the GNU Library General Public License, write to the Free
14 ** Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15 **
16 ** Any permitted reproduction of these routines, in whole or in part,
17 ** must bear this legend.
18 **
19 **
20 ** dis6502.h
21 **
22 ** 6502 disassembler header
23 ** $Id: dis6502.h,v 1.1 2003/04/08 20:53:00 ben Exp $
24 */
25 
26 #ifndef _DIS6502_H_
27 #define _DIS6502_H_
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32 
33 extern void nes6502_disasm(uint32 PC, uint8 P, uint8 A, uint8 X, uint8 Y, uint8 S);
34 
35 #ifdef __cplusplus
36 }
37 #endif /* __cplusplus */
38 
39 #endif /* !_DIS6502_H_ */
40 
41 /*
42 ** $Log: dis6502.h,v $
43 ** Revision 1.1  2003/04/08 20:53:00  ben
44 ** Adding more files...
45 **
46 ** Revision 1.4  2000/06/09 15:12:25  matt
47 ** initial revision
48 **
49 */
50