1 /* Project 16 Source Code~
2 * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
4 * This file is part of Project 16.
6 * Project 16 is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * Project 16 is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
19 * Fifth Floor, Boston, MA 02110-1301 USA.
23 #if !defined(__LARGE__) && !defined(__COMPACT__) && !defined(__HUGE__)
24 #error Invalid memory model for compiling project 16
27 #if !defined(__i86__) && defined(__i386__)
36 #include <conio.h> // just for wait
37 #include <time.h> // just for wait
44 #include "src/lib/types.h"
46 /* Control codes for all keys on the keyboard */
85 #define KEY_DASH (0x0C) // -_
86 #define KEY_EQUAL (0x0D) // =+
87 #define KEY_LBRACKET (0x1A) // [{
88 #define KEY_RBRACKET (0x1B) // ]}
89 #define KEY_SEMICOLON (0x27) // ;:
90 #define KEY_RQUOTE (0x28) // '"
91 #define KEY_LQUOTE (0x29) // `~
92 #define KEY_PERIOD (0x33) // .>
93 #define KEY_COMMA (0x34) // ,<
94 #define KEY_SLASH (0x35) // /?
95 #define KEY_BACKSLASH (0x2B) // \|
100 #define KEY_F5 (0x3F)
101 #define KEY_F6 (0x40)
102 #define KEY_F7 (0x41)
103 #define KEY_F8 (0x42)
104 #define KEY_F9 (0x43)
105 #define KEY_F10 (0x44)
106 #define KEY_ESC (0x01)
107 #define KEY_BACKSPACE (0x0E)
108 #define KEY_TAB (0x0F)
109 #define KEY_ENTER (0x1C)
110 #define KEY_CONTROL (0x1D)
111 #define KEY_LSHIFT (0x2A)
112 #define KEY_RSHIFT (0x36)
113 #define KEY_PRTSC (0x37)
114 #define KEY_ALT (0x38)
115 #define KEY_SPACE (0x39)
116 #define KEY_CAPSLOCK (0x3A)
117 #define KEY_NUMLOCK (0x45)
118 #define KEY_SCROLLLOCK (0x46)
119 #define KEY_HOME (0x47)
120 #define KEY_UP (0x48)
121 #define KEY_PGUP (0x49)
122 #define KEY_MINUS (0x4A)
123 #define KEY_LEFT (0x4B)
124 #define KEY_CENTER (0x4C)
125 #define KEY_RIGHT (0x4D)
126 #define KEY_PLUS (0x4E)
127 #define KEY_END (0x4F)
128 #define KEY_DOWN (0x50)
129 #define KEY_PGDOWN (0x51)
130 #define KEY_INS (0x52)
131 #define KEY_DEL (0x53)
133 #define KEY_LWIN (0x73)
134 #define KEY_RWIN (0x74)
135 #define KEY_MENU (0x75)
138 static dword far* clockdw= (dword far*) 0x046C; /* 18.2hz clock */
139 //static dword clockdw=0;
140 extern int profilehandle,debughandle;
142 #define nil ((void *)0)
146 #define peekb(segm,ofs) (*(byte far*)MK_FP((segm),(ofs)))
\r
147 #define peekw(segm,ofs) (*(word far*)MK_FP((segm),(ofs)))
\r
148 #define pokeb(segm,ofs,value) (peekb((segm),(ofs)) = (byte)(value))
\r
149 #define pokew(segm,ofs,value) (peekw((segm),(ofs)) = (word)(value))
\r
151 typedef union REGPACK regs_t;
152 typedef enum {false,true} boolean;
154 void wait(clock_t wait);
155 void* AllocateLargestFreeBlock(size_t* Size);
156 size_t GetFreeSize(void);
157 long int filesize(FILE *fp);
158 int US_CheckParm(char *parm,char **strings);
159 //void Quit(char *error, ...);
161 extern void CA_OpenDebug (void);
\r
162 extern void CA_CloseDebug (void);
164 #endif/*_LIBHEAD_H_*/