Skip to content

Commit 2db847f

Browse files
committed
initial commit
0 parents  commit 2db847f

File tree

1,170 files changed

+334621
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,170 files changed

+334621
-0
lines changed

1660utf8/app0

44.3 KB
Binary file not shown.

1660utf8/asael1

210 KB
Binary file not shown.

1660utf8/crunchif

189 KB
Binary file not shown.

1660utf8/crunchmf

185 KB
Binary file not shown.

1660utf8/ctlmfn

168 KB
Binary file not shown.

1660utf8/dx0

53.7 KB
Binary file not shown.

1660utf8/i2id

168 KB
Binary file not shown.

1660utf8/id2i

172 KB
Binary file not shown.

1660utf8/ifkeys

65.1 KB
Binary file not shown.

1660utf8/ifload

200 KB
Binary file not shown.

1660utf8/ifmerge

200 KB
Binary file not shown.

1660utf8/lydump

44.3 KB
Binary file not shown.

1660utf8/lyfreq

73.3 KB
Binary file not shown.

1660utf8/mdl2i

169 KB
Binary file not shown.

1660utf8/mdl2ir

168 KB
Binary file not shown.

1660utf8/mdlif

181 KB
Binary file not shown.

1660utf8/mdlup

173 KB
Binary file not shown.

1660utf8/mkiy0

44.3 KB
Binary file not shown.

1660utf8/mkxrf

168 KB
Binary file not shown.

1660utf8/msrt

251 KB
Binary file not shown.

1660utf8/mx

537 KB
Binary file not shown.

1660utf8/mxcp

177 KB
Binary file not shown.

1660utf8/mxf0

173 KB
Binary file not shown.

1660utf8/mxmys

468 KB
Binary file not shown.

1660utf8/mys

209 KB
Binary file not shown.

1660utf8/myz

69.5 KB
Binary file not shown.

1660utf8/retag

168 KB
Binary file not shown.

1660utf8/rule

8.42 KB
Binary file not shown.

1660utf8/serw

304 KB
Binary file not shown.

1660utf8/serw2

304 KB
Binary file not shown.

1660utf8/serx

320 KB
Binary file not shown.

1660utf8/sizeof

44.2 KB
Binary file not shown.

1660utf8/sizeof2

12.6 KB
Binary file not shown.

1660utf8/splitem

163 KB
Binary file not shown.

1660utf8/wxis

651 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
Compilation for Windows
2+
3+
1) Change cisis.h preprocessor settings.
4+
5+
Open cisis.h file and change the default configuration to the following one:
6+
7+
GCC=0 PC=1 DOS32BITS=1 MSC=0 or 1 (1 if Microsoft Visual Studio and 0 if other compiler is used) UNIX=0
8+
9+
2) Set compiler configurations.
10+
11+
data alignment => byte calling conventions => C unsigned char => set
12+
13+
3) Set project preprocessor directives.
14+
15+
a) ISIS version
16+
17+
wxis:
18+
19+
WIN32
20+
WWWISIS=1
21+
CIFFI = 0
22+
LIND = 0
23+
LIND4 = 0
24+
ISISXL = 0
25+
ISISXL512 = 0
26+
LINDLUX = 0
27+
PROCXSLT = 0
28+
_FILE_OFFSET_BITS = 0
29+
_LARGEFILE64_SOURCE = 0
30+
CIWTF=0
31+
INCPROCX=1
32+
INCPRECX=1
33+
34+
mx:
35+
36+
WIN32
37+
WWWISIS=0
38+
CIFFI=0;
39+
LIND=0;
40+
LIND4=0;
41+
ISISXL=0;
42+
ISISXL512=0;
43+
_FILE_OFFSET_BITS=0;
44+
_LARGEFILE64_SOURCE=0;
45+
CIWTF=1;
46+
INCPROCX=1;
47+
INCPRECX=1;
48+
EXCFMCGI=0;
49+
EXCFMXML=0
50+
51+
other applications
52+
53+
WIN32
54+
WWWISIS=0
55+
CIFFI=0;
56+
LIND=0;
57+
LIND4=0;
58+
ISISXL=0;
59+
ISISXL512=0;
60+
_FILE_OFFSET_BITS=0;
61+
_LARGEFILE64_SOURCE=0;
62+
CIWTF=0;
63+
INCPROCX=0;
64+
INCPRECX=0;
65+
EXCFMCGI=1;
66+
EXCFMXML=1;
67+
MXFUN=0;
68+
IFLOADFUN=0;
69+
70+
b) ISIS1660 version
71+
72+
wxis:
73+
74+
WIN32
75+
WWWISIS=1
76+
CIFFI = 0
77+
LIND = 0
78+
LIND4 = 0
79+
ISISXL = 1
80+
ISISXL512 = 0
81+
LINDLUX = 0
82+
PROCXSLT = 0
83+
_FILE_OFFSET_BITS = 0
84+
_LARGEFILE64_SOURCE = 0
85+
CIWTF=0
86+
INCPROCX=1
87+
INCPRECX=1
88+
89+
mx:
90+
91+
WIN32
92+
WWWISIS=0
93+
CIFFI=0;
94+
LIND=0;
95+
LIND4=0;
96+
ISISXL=1;
97+
ISISXL512=0;
98+
_FILE_OFFSET_BITS=0;
99+
_LARGEFILE64_SOURCE=0;
100+
CIWTF=1;
101+
INCPROCX=1;
102+
INCPRECX=1;
103+
EXCFMCGI=0;
104+
EXCFMXML=0
105+
106+
other applications:
107+
108+
WIN32
109+
WWWISIS=0
110+
CIFFI=0;
111+
LIND=0;
112+
LIND4=0;
113+
ISISXL=1;
114+
ISISXL512=0;
115+
_FILE_OFFSET_BITS=0;
116+
_LARGEFILE64_SOURCE=0;
117+
CIWTF=1;
118+
INCPROCX=1;
119+
INCPRECX=1;
120+
EXCFMCGI=0;
121+
EXCFMXML=0;
122+
MXFUN=0;
123+
IFLOADFUN=0;
124+
125+
c) LIND version
126+
127+
wxis:
128+
129+
WIN32
130+
WWWISIS=1
131+
CIFFI = 0
132+
LIND = 1
133+
LIND4 = 0
134+
ISISXL = 1
135+
ISISXL512 = 0
136+
LINDLUX = 0
137+
PROCXSLT = 0
138+
_FILE_OFFSET_BITS = 0
139+
_LARGEFILE64_SOURCE = 0
140+
CIWTF=0
141+
INCPROCX=1
142+
INCPRECX=1
143+
144+
mx:
145+
146+
WIN32
147+
WWWISIS=0
148+
CIFFI=0;
149+
LIND=1;
150+
LIND4=0;
151+
ISISXL=1;
152+
ISISXL512=0;
153+
_FILE_OFFSET_BITS=0;
154+
_LARGEFILE64_SOURCE=0;
155+
CIWTF=1;
156+
INCPROCX=1;
157+
INCPRECX=1;
158+
EXCFMCGI=0;
159+
EXCFMXML=0
160+
161+
other applications:
162+
163+
WIN32
164+
WWWISIS=0
165+
CIFFI=0;
166+
LIND=1;
167+
LIND4=0;
168+
ISISXL=1;
169+
ISISXL512=0;
170+
_FILE_OFFSET_BITS=0;
171+
_LARGEFILE64_SOURCE=0;
172+
CIWTF=0;
173+
INCPROCX=0;
174+
INCPRECX=0;
175+
EXCFMCGI=1;
176+
EXCFMXML=1;
177+
MXFUN=0;
178+
IFLOADFUN=0;
179+
180+
d) FFI version
181+
182+
wxis:
183+
184+
WIN32
185+
WWWISIS=1
186+
CIFFI = 1
187+
LIND = 1
188+
LIND4 = 0
189+
ISISXL = 1
190+
ISISXL512 = 0
191+
LINDLUX = 0
192+
PROCXSLT = 0
193+
_FILE_OFFSET_BITS = 0
194+
_LARGEFILE64_SOURCE = 0
195+
CIWTF=0
196+
INCPROCX=1
197+
INCPRECX=1
198+
199+
mx:
200+
201+
WIN32
202+
WWWISIS=0
203+
CIFFI=1;
204+
LIND=1;
205+
LIND4=0;
206+
ISISXL=1;
207+
ISISXL512=0;
208+
_FILE_OFFSET_BITS=0;
209+
_LARGEFILE64_SOURCE=0;
210+
CIWTF=1;
211+
INCPROCX=1;
212+
INCPRECX=1;
213+
EXCFMCGI=0;
214+
EXCFMXML=0
215+
216+
other applications:
217+
218+
WIN32
219+
WWWISIS=0
220+
CIFFI=1;
221+
LIND=1;
222+
LIND4=0;
223+
ISISXL=1;
224+
ISISXL512=0;
225+
_FILE_OFFSET_BITS=0;
226+
_LARGEFILE64_SOURCE=0;
227+
CIWTF=0;
228+
INCPROCX=0;
229+
INCPRECX=0;
230+
EXCFMCGI=1;
231+
EXCFMXML=1;
232+
MXFUN=0;
233+
IFLOADFUN=0;
234+

0 commit comments

Comments
 (0)