removing some compiler warnings
[drnoksnes] / port.h
1 /*
2  * Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3  *
4  * (c) Copyright 1996 - 2001 Gary Henderson (gary.henderson@ntlworld.com) and
5  *                           Jerremy Koot (jkoot@snes9x.com)
6  *
7  * Super FX C emulator code 
8  * (c) Copyright 1997 - 1999 Ivar (ivar@snes9x.com) and
9  *                           Gary Henderson.
10  * Super FX assembler emulator code (c) Copyright 1998 zsKnight and _Demo_.
11  *
12  * DSP1 emulator code (c) Copyright 1998 Ivar, _Demo_ and Gary Henderson.
13  * C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
14  * C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
15  *
16  * DOS port code contains the works of other authors. See headers in
17  * individual files.
18  *
19  * Snes9x homepage: http://www.snes9x.com
20  *
21  * Permission to use, copy, modify and distribute Snes9x in both binary and
22  * source form, for non-commercial purposes, is hereby granted without fee,
23  * providing that this license information and copyright notice appear with
24  * all copies and any derived work.
25  *
26  * This software is provided 'as-is', without any express or implied
27  * warranty. In no event shall the authors be held liable for any damages
28  * arising from the use of this software.
29  *
30  * Snes9x is freeware for PERSONAL USE only. Commercial users should
31  * seek permission of the copyright holders first. Commercial use includes
32  * charging money for Snes9x or software derived from Snes9x.
33  *
34  * The copyright holders request that bug fixes and improvements to the code
35  * should be forwarded to them so everyone can benefit from the modifications
36  * in future versions.
37  *
38  * Super NES and Super Nintendo Entertainment System are trademarks of
39  * Nintendo Co., Limited and its subsidiary companies.
40  */
41 #ifndef _PORT_H_
42 #define _PORT_H_
43
44 /*
45 This port.h is really a right-of-passage for anyone trying to port the emulator 
46         to another platform.  It must have started out as a set of defines for a
47         single platform, and instead of using define blocks as new platforms were
48         added, individual coders simply added exceptions and sprinkled #ifdef and #ifndef
49         statements throughout the original list.
50
51 I can't take it anymore, it's too convoluted.  So I've commented out the entire
52         section, and preemptively rewritten the first #define segment the way god intended,
53         with a single define-block for each target platform.
54 */
55
56 //Title
57 #define TITLE "DrNokSnes"
58
59 //Required Includes
60 #include "pixform.h"
61 #include <zlib.h>
62 #include <stdint.h>
63 #include <limits.h>
64 #include <string.h>
65
66 //Types Defined
67 typedef uint8_t                 bool8;
68 typedef uint8_t                 uint8;
69 typedef uint16_t                uint16;
70 typedef uint32_t                uint32;
71 typedef int8_t                  int8;
72 typedef int16_t                 int16;
73 typedef int32_t                 int32;
74 typedef int64_t                 int64;
75
76 //For Debugging Purposes:
77
78 typedef uint8_t                 bool8_32;
79 typedef uint8_t                 uint8_32;
80 typedef uint16_t                uint16_32;
81 typedef int8_t                  int8_32;
82 typedef int16_t                 int16_32;
83
84 //Defines for Extern C
85 #ifdef __cplusplus
86 #define EXTERN_C extern "C"
87 #define START_EXTERN_C EXTERN_C {
88 #define END_EXTERN_C }
89 #else
90 #define EXTERN_C extern
91 #define START_EXTERN_C
92 #define END_EXTERN_C
93 #endif
94
95 //Path Defines
96 #define _MAX_DIR PATH_MAX
97 #define _MAX_DRIVE 1
98 #define _MAX_FNAME NAME_MAX
99 #define _MAX_EXT NAME_MAX
100 #define _MAX_PATH PATH_MAX
101
102 // Boolean constants (may already be defined)
103 #ifndef TRUE
104 #define TRUE 1
105 #endif
106 #ifndef FALSE
107 #define FALSE 0
108 #endif
109
110 // Config -> Defines
111 #if CONF_BUILD_ASM_SPC700
112 #define ASM_SPC700              1
113 #else
114 #undef ASM_SPC700
115 #endif
116
117 // Configuration defines I think I know what they're for
118 #define SUPER_FX                1
119 #define USE_SA1                 1
120 #define CPU_SHUTDOWN    1
121 //#define NETPLAY_SUPPORT       1
122 #define ZLIB                    1
123 #define UNZIP_SUPPORT   1
124 #define NO_INLINE_SET_GET 1
125
126 //Misc Items
127 #define VAR_CYCLES
128 //#define SPC700_SHUTDOWN
129 #define LSB_FIRST
130 #define PIXEL_FORMAT RGB565
131 #define CHECK_SOUND()
132 #define ZeroMemory(a,b) memset((a),0,(b))
133 #define PACKING __attribute__ ((packed))
134 #define ALIGN_BY_ONE  __attribute__ ((aligned (1), packed))
135 #define LSB_FIRST
136 #undef  FAST_LSB_WORD_ACCESS
137
138 // Language abstractions
139 #define FASTCALL
140 #define STATIC static
141 #define INLINE inline
142
143 START_EXTERN_C
144 // Path functions
145 void PathMake(char *path, const char *drive, const char *dir,
146         const char *fname, const char *ext);
147 void PathSplit(const char *path, char *drive, char *dir, char *fname, char *ext);
148 /** A simplified basename function returning a pointer inside the src string */
149 const char * PathBasename(const char * path);
150 END_EXTERN_C
151
152 // Stream functions, used when opening ROMs and snapshots.
153 #ifdef ZLIB
154 #include <zlib.h>
155 #define STREAM gzFile
156 #define READ_STREAM(p,l,s) gzread (s,p,l)
157 #define WRITE_STREAM(p,l,s) gzwrite (s,p,l)
158 #define GETS_STREAM(p,l,s) gzgets(s,p,l)
159 #define GETC_STREAM(s) gzgetc(s)
160 #define OPEN_STREAM(f,m) gzopen (f,m)
161 #define REOPEN_STREAM(f,m) gzdopen (f,m)
162 #define FIND_STREAM(f)  gztell(f)
163 #define REVERT_STREAM(f,o,s)  gzseek(f,o,s)
164 #define CLOSE_STREAM(s) gzclose (s)
165 #else
166 #define STREAM FILE *
167 #define READ_STREAM(p,l,s) fread (p,1,l,s)
168 #define WRITE_STREAM(p,l,s) fwrite (p,1,l,s)
169 #define GETS_STREAM(p,l,s) fgets(p,l,s)
170 #define GETC_STREAM(s) fgetc(s)
171 #define OPEN_STREAM(f,m) fopen (f,m)
172 #define REOPEN_STREAM(f,m) fdopen (f,m)
173 #define FIND_STREAM(f)  ftell(f)
174 #define REVERT_STREAM(f,o,s)     fseek(f,o,s)
175 #define CLOSE_STREAM(s) fclose (s)
176 #endif
177
178 #endif
179