~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

Viewing changes to mess/src/emu/cpu/spc700/spc700.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jordi Mallach, Emmanuel Kasper
  • Date: 2011-12-19 22:56:27 UTC
  • mfrom: (0.1.2)
  • Revision ID: package-import@ubuntu.com-20111219225627-ub5oga1oys4ogqzm
Tags: 0.144-1
[ Jordi Mallach ]
* Fix syntax errors in DEP5 copyright file (lintian).
* Use a versioned copyright Format specification field.
* Update Vcs-* URLs.
* Move transitional packages to the new metapackages section, and make
  them priority extra.
* Remove references to GNU/Linux and MESS sources from copyright.
* Add build variables for s390x.
* Use .xz tarballs as it cuts 4MB for the upstream sources.
* Add nplayers.ini as a patch. Update copyright file to add CC-BY-SA-3.0.

[ Emmanuel Kasper ]
* New upstream release. Closes: #651538.
* Add Free Desktop compliant png icons of various sizes taken from
  the hydroxygen iconset
* Mess is now built from a new source package, to avoid possible source
  incompatibilities between mame and the mess overlay.
* Mame-tools are not built from the mame source package anymore, but
  from the mess source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#pragma once
2
 
 
3
 
#ifndef __SPC700_H__
4
 
#define __SPC700_H__
5
 
 
6
 
 
7
 
DECLARE_LEGACY_CPU_DEVICE(SPC700, spc700);
8
 
 
9
 
/* ======================================================================== */
10
 
/* ============================= Configuration ============================ */
11
 
/* ======================================================================== */
12
 
 
13
 
#undef uint
14
 
#define uint unsigned int
15
 
 
16
 
/* Turn on optimizations for SNES since it doesn't hook up the interrupt lines */
17
 
#define SPC700_OPTIMIZE_SNES 1
18
 
 
19
 
 
20
 
/* ======================================================================== */
21
 
/* ============================== PROTOTYPES ============================== */
22
 
/* ======================================================================== */
23
 
 
24
 
enum
25
 
{
26
 
        SPC700_PC=1, SPC700_S, SPC700_P, SPC700_A, SPC700_X, SPC700_Y
27
 
};
28
 
 
29
 
#define SPC700_INT_NONE                 0
30
 
#define SPC700_INT_IRQ                  1
31
 
#define SPC700_INT_NMI                  2
32
 
 
33
 
 
34
 
/* ======================================================================== */
35
 
/* ============================== END OF FILE ============================= */
36
 
/* ======================================================================== */
37
 
 
38
 
#endif /* __SPC700_H__ */