~akheon23/pose/origin

« back to all changes in this revision

Viewing changes to SrcShared/UAE/custom.h

  • Committer: Christopher Werkshage
  • Date: 2014-12-27 12:51:57 UTC
  • Revision ID: git-v1:cc9410eb6ec5b4e23248dc175d142202f86be8e8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 /*
 
2
  * UAE - The Un*x Amiga Emulator
 
3
  *
 
4
  * custom chip support
 
5
  *
 
6
  * (c) 1995 Bernd Schmidt
 
7
  */
 
8
 
 
9
#ifdef __cplusplus
 
10
extern "C" {
 
11
#endif
 
12
 
 
13
extern void customreset (void);
 
14
 
 
15
#define SPCFLAG_STOP 2
 
16
#define SPCFLAG_DISK 4
 
17
#define SPCFLAG_INT  8
 
18
#define SPCFLAG_BRK  16
 
19
#define SPCFLAG_EXTRA_CYCLES 32
 
20
#define SPCFLAG_TRACE 64
 
21
#define SPCFLAG_DOTRACE 128
 
22
#define SPCFLAG_DOINT 256
 
23
#define SPCFLAG_BLTNASTY 512
 
24
#define SPCFLAG_EXEC 1024
 
25
#define SPCFLAG_MODE_CHANGE 8192
 
26
 
 
27
#ifdef __cplusplus
 
28
}
 
29
#endif
 
30