summaryrefslogtreecommitdiffstats
path: root/apps/plugins/zxbox/zxconfig.h
blob: f83c091ab950fe24f6843957dca85e17729bcfe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef ZXCONFIG_H
#define ZXCONFIG_H

#include <plugin.h>
extern int load_tap;
extern bool clear_kbd;
extern bool exit_requested;
extern struct plugin_api* rb;
extern void press_key(int c);
extern long video_frames;
extern long start_time;
extern int intkeys[5];

#define ZX_WIDTH 256
#define ZX_HEIGHT 192

#define SETTINGS_MIN_VERSION 2
#define SETTINGS_VERSION 2

/* undef not to use greyscale lib */
#if !defined HAVE_LCD_COLOR
#define USE_GREY
#define USE_BUFFERED_GREY
#endif


#define Z80C

/* Always define this for the spectrum emulator. */
#define SPECT_MEM 1

/* Define if sound driver is available. */
#if CONFIG_CODEC == SWCODEC && !defined SIMULATOR
#define HAVE_SOUND
#endif

/* Define this to use the inline intel assembly sections */
#undef I386_ASM

/* Define this to use an alternative way of passing the z80 processor
   data to the z80 instruction emulation functions. May make emulation
   faster on some machines, but not on intel, and sparc. */
/* seems not to have effect on arm targets */
#undef PROCP
/*#define PROCP*/

/* Define if you have the ANSI C header files.  */
#define STDC_HEADERS 1

#endif