disabled netplay code for now
[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 //True/False Defines
103 #define TRUE 1
104 #define FALSE 0
105
106 // Configuration defines I think I know what they're for
107 #define ASM_SPC700              1
108 //#define SUPER_FX              1
109 #define CPU_SHUTDOWN    1
110 //#define NETPLAY_SUPPORT       1
111
112 //Misc Items
113 #define VAR_CYCLES
114 //#define SPC700_SHUTDOWN
115 #define LSB_FIRST
116 #define STATIC static
117 #define FASTCALL
118 #define PIXEL_FORMAT RGB565
119 #define CHECK_SOUND()
120 #define UNZIP_SUPPORT
121 #define ZeroMemory(a,b) memset((a),0,(b))
122 #define PACKING __attribute__ ((packed))
123 #define ALIGN_BY_ONE  __attribute__ ((aligned (1), packed))
124 #define LSB_FIRST
125 #undef  FAST_LSB_WORD_ACCESS
126
127 #ifndef INLINE
128 #define INLINE inline
129 #endif
130
131 START_EXTERN_C
132 // Path functions
133 void PathMake(char *path, const char *drive, const char *dir,
134         const char *fname, const char *ext);
135 void PathSplit(const char *path, char *drive, char *dir, char *fname, char *ext);
136 /** A simplified basename function returning a pointer inside the same string */
137 const char * PathBasename(const char * path);
138 END_EXTERN_C
139
140 #endif
141