-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommon.h
57 lines (43 loc) · 1013 Bytes
/
common.h
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
51
52
53
54
55
56
#ifndef COMMON_H
#define COMMON_H
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "screen.h"
typedef uint8_t BYTE;
typedef uint16_t WORD;
typedef uint32_t LONG;
typedef int8_t SBYTE;
typedef int16_t SWORD;
typedef int32_t SLONG;
#define INCLUDE_RTC 0
#define SIZE_B 0
#define SIZE_W 1
#define SIZE_L 2
#define MASK_B 0xff
#define MASK_W 0xffff
#define MASK_L 0xffffffff
#include "shifter.h"
#define ENTER
#define EXIT
#define ENDLOOP
#define SCREEN_NORMAL 0
#define MAX(x, y) (((x)>(y))?(x):(y))
#define MIN(x, y) (((x)<(y))?(x):(y))
#define WARNING(F) \
fprintf(stderr, "WARNING: unexpected return value from %s at %s:%d\n", #F, __FILE__, __LINE__);
extern int debugger;
extern int clocked_cpu;
extern int ppmoutput;
extern int psgoutput;
extern int play_audio;
extern int audio_device;
extern int monitor_sm124;
extern int crop_screen;
#if TEST_BUILD
extern char *testcase_name;
#endif
extern void *xmalloc(size_t);
extern char *xstrdup(char *);
#endif