~ubuntu-branches/ubuntu/karmic/xmame/karmic

« back to all changes in this revision

Viewing changes to src/cpu/m6502/m65ce02.h

  • Committer: Bazaar Package Importer
  • Author(s): Bruno Barrera C.
  • Date: 2007-02-16 10:06:54 UTC
  • mfrom: (2.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20070216100654-iztas2cl47k5j039
Tags: 0.106-2
* Added Italian debconf templates translation. (closes: #382672)
* Added German debconf templates translation. (closes: #396610)
* Added Japanese debconf templates translation. (closes: #400011)
* Added Portuguese debconf templates translation. (closes: #409960)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 *
3
 
 *       m65ce02.c
4
 
 *       Portable 65ce02 emulator V1.0beta
5
 
 *
6
 
 *       Copyright (c) 2000 Peter Trauner, all rights reserved.
7
 
 *
8
 
 *       - This source code is released as freeware for non-commercial purposes.
9
 
 *       - You are free to use and redistribute this code in modified or
10
 
 *         unmodified form, provided you list me in the credits.
11
 
 *       - If you modify this source code, you must add a notice to each modified
12
 
 *         source file that it has been changed.  If you're a nice person, you
13
 
 *         will clearly mark each change too.  :)
14
 
 *       - If you wish to use this for commercial purposes, please contact me at
15
 
 *         pullmoll@t-online.de
16
 
 *       - The author of this copywritten work reserves the right to change the
17
 
 *         terms of its usage and license at any time, including retroactively
18
 
 *       - This entire notice must remain in the source code.
 
3
 *   m65ce02.c
 
4
 *   Portable 65ce02 emulator V1.0beta
 
5
 *
 
6
 *   Copyright (c) 2000 Peter Trauner, all rights reserved.
 
7
 *
 
8
 *   - This source code is released as freeware for non-commercial purposes.
 
9
 *   - You are free to use and redistribute this code in modified or
 
10
 *     unmodified form, provided you list me in the credits.
 
11
 *   - If you modify this source code, you must add a notice to each modified
 
12
 *     source file that it has been changed.  If you're a nice person, you
 
13
 *     will clearly mark each change too.  :)
 
14
 *   - If you wish to use this for commercial purposes, please contact me at
 
15
 *     pullmoll@t-online.de
 
16
 *   - The author of this copywritten work reserves the right to change the
 
17
 *     terms of its usage and license at any time, including retroactively
 
18
 *   - This entire notice must remain in the source code.
19
19
 *
20
20
 *****************************************************************************/
21
21
 
22
22
#ifndef _M65CE02_H
23
23
#define _M65CE02_H
24
24
 
25
 
#include "cpuintrf.h"
26
 
#include "osd_cpu.h"
27
25
#include "m6502.h"
28
26
 
29
 
#ifdef RUNTIME_LOADER
30
 
# ifdef __cplusplus
31
 
        extern "C" void m65ce02_runtime_loader_init(void);
32
 
# else
33
 
        extern void m65ce02_runtime_loader_init(void);
34
 
# endif
35
 
#endif
36
 
 
37
27
enum {
38
28
        M65CE02_PC=1, M65CE02_S, M65CE02_P, M65CE02_A, M65CE02_X, M65CE02_Y,
39
29
        M65CE02_Z, M65CE02_B, M65CE02_EA, M65CE02_ZP,