-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMKDIAG.H
54 lines (38 loc) · 951 Bytes
/
MKDIAG.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
/******************************************************************************
File: mkdiag.h
By: David Schwartz
Date: August 1994
(C) Williams Entertainment
Mortal Kombat III diags header
******************************************************************************/
#ifndef __mk_mkdiag_h__
#define __mk_mkdiag_h__
/*
* DEFINITIONS
*/
#define GAME_CREDITS 5 // # of credits to start
/* dipswitch equates */
#define DIP_VIOLENCE 0x0001
#define DIP_BLOOD 0x0002
#define DIP_LOW_BLOW 0x0004
#define DIP_AMSOUNDS 0x0008
/*
* RAM
*/
/*
* PROTOTYPES
*/
/* diagcoin, coinage */
//void p_start(void);
//void p_cont(void);
//WORD cr_strtp(void);
//WORD cr_contp(void);
//WORD get_credits(void);
/* diagcmos, audits */
inline short get_adj_diff_word(short *);
/* diagdtst, dip switch/memory card */
WORD read_dip(void);
/*
* MACROS
*/
#endif /* __mk_mkdiag_h__ */