-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAsmUtils.pas
454 lines (397 loc) · 10.6 KB
/
AsmUtils.pas
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
unit AsmUtils;
interface
uses AsmTypes;
function HexToDecimal(sHex: string; var i: integer): boolean;
function BinToDecimal(sBin: string; var i: integer): boolean;
procedure AssemblerDisplay(s: string);
function AsmDirDEFB(sParam: string; sFile: string; iLine: integer;
var regPC: integer; var sOut: string;
Encoding: TCharEncoding): integer;
function AsmDirDEFW(sParam: string; sFile: string; iLine: integer;
var regPC: integer; var sOut: string;
Encoding: TCharEncoding): integer;
function AddLabelValue(sLabel: string; iValue: integer): integer;
function Evaluate(bFinalPass: boolean; s: string; regPC: integer; Encoding: TCharEncoding; var i: integer): integer;
implementation
uses SysUtils,Math,Assemb;
function HexToDecimal(sHex: string; var i: integer): boolean;
var
iErr: integer;
begin
if Uppercase(sHex[Length(sHex)]) = 'H' then
sHex := '$' + Copy(sHex,1,Length(sHex)-1);
Result := false;
if (sHex[1] = '$') then
begin
// Parameter is a hex number starting with $, convert it to decimal
Val(sHex,i,iErr);
if (iErr>0) then
exit;
end;
Result := true;
end;
function BinToDecimal(sBin: string; var i: integer): boolean;
var
iCount,iPower: integer;
begin
Result := false;
i := 0; iPower := 0;
// Strip iff the leading '%' sign if neccessary
if sBin[1] = '%' then sBin := Copy(sBin,2,512);
for iCount := Length(sBin) downto 1 do
begin
if sBin[iCount] = '1' then
i := i + Round(IntPower(2,iPower))
else if sBin[iCount] <> '0' then
exit;
Inc(iPower);
end;
Result := true;
end;
function GetEncodedChar(sCharIn: char; Encoding: TCharEncoding): char;
const
ZX81CharSet = ' ¬¬¬¬¬¬¬¬¬¬"£$:?()><=+-*/;,.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬abcdefghijklmnopqrstuvwxyz';
begin
if Encoding = ASCII then
Result := sCharIn
else if Encoding = ZX81 then
begin
Result := Chr(Pos(sCharIn,ZX81CharSet)-1);
end
else
Result := sCharIn; // Default = ASCII
end;
procedure AssemblerDisplay(s: string);
begin
//MainWnd.txtOutput.Lines.Add(s);
//MainWnd.txtOutput.SelStart := Length(MainWnd.txtOutput.Text)-1;
end;
function GetValue(bFinalPass: boolean; s: string; regPC: integer;
var i: integer; Encoding: TCharEncoding): integer;
var
iTemp,iErr: integer;
begin
s := Trim(s);
Result := 1;
if s = '$' then
begin
i := regPC;
Result := 0;
exit;
end;
if s = '' then
begin
i := 0;
Result := 0;
exit;
end;
if (s[1] = '$') or (UpperCase(s[Length(s)]) = 'H') then
begin
if HexToDecimal(s,i) then Result := 0 else Result := 1;
end
else if (s[1] = '%') then
begin
if BinToDecimal(s,i) then Result := 0 else Result := 1;
end
else if ((s[1] >= 'A') and (s[1] <= 'z')) then
begin
if bFinalPass then
begin
for iTemp := 0 to Length(ASMEquates)-1 do
begin
if ASMEquates[iTemp].sLabel = s then
begin
i := ASMEquates[iTemp].iValue;
Result := 0;
exit;
end;
end;
Result := 2; // Label not defined
end
else
begin
i := 0;
Result := 0;
end;
end
else if (s[1] = '''') and (s[3]='''') then
begin
i := Ord(GetEncodedChar(s[2],Encoding));
Result := 0;
end
else
begin
Val(s,i,iErr);
if (iErr <> 0) then exit;
Result := 0;
end;
end;
function MathOp(iVal: integer; sOp: string; regPC: integer;
Encoding: TCharEncoding): integer;
var
i: integer;
begin
Result := iVal;
sOp := Trim(sOp);
i := 0;
if Length(sOp) < 1 then exit;
if sOp[1] = '+' then
begin
GetValue(true,Copy(sOp,2,512),regPC,i,Encoding);
Result := iVal + i;
end
else if sOp[1] = '-' then
begin
GetValue(true,Copy(sOp,2,512),regPC,i,Encoding);
Result := iVal - i;
end
else if sOp[1] = '&' then
begin
GetValue(true,Copy(sOp,2,512),regPC,i,Encoding);
Result := iVal and i;
end
else if sOp[1] = '|' then
begin
GetValue(true,Copy(sOp,2,512),regPC,i,Encoding);
Result := iVal or i;
end;
end;
function AsmDirDEFBOneParam(sIn: string; var sHex: string; regPC: integer; Encoding: TCharEncoding): boolean;
var
i: integer;
begin
sHex := '';
Result := false;
if Length(sIn) < 1 then exit;
if sIn[1] = '"' then
begin
// Text string
for i := 1 to Length(sIn) do
if sIn[i] <> '"' then sHex := sHex + GetEncodedChar(sIn[i],Encoding);
end
else
begin
Evaluate(true,sIn,regPC,Encoding,i);
sHex := sHex + Chr(i and $ff);
end;
Result := true;
end;
function AsmDirDEFB(sParam: string; sFile: string; iLine: integer;
var regPC: integer; var sOut: string;
Encoding: TCharEncoding): integer;
var
s, sHex: string;
i: integer;
bInString: boolean;
begin
s := ''; bInString := false;
for i := 1 to Length(sParam) do
begin
if sParam[i] = '"' then
begin
s := s + sParam[i];
bInString := Not bInString;
end
else if (sParam[i] = ',') and (not bInString) then
begin
s := Trim(s);
if AsmDirDEFBOneParam(s,sHex,regPC,Encoding) then
sOut := sOut + sHex
else
begin
result := 2;
AssemblerDisplay('[Error] ' + sFile + ', line ' + IntToStr(iLine) +
': Invalid byte parameter(s).');
exit;
end;
s := '';
end
else
s := s + sParam[i];
end;
if (sParam[Length(sParam)] <> ',') then
begin
s := Trim(s);
if AsmDirDEFBOneParam(s,sHex,regPC,Encoding) then
sOut := sOut + sHex
else
begin
result := 2;
AssemblerDisplay('[Error] ' + sFile + ', line ' + IntToStr(iLine) +
': Invalid byte parameter(s).');
exit;
end;
end;
regPC := regPC + Length(sOut);
Result := 0;
end;
function AsmDirDEFWOneParam(sIn: string; var sHex: string; regPC: integer;
Encoding: TCharEncoding): boolean;
var
i: integer;
begin
sHex := '';
Result := false;
if Length(sIn) < 1 then exit;
Evaluate(true,sIn,regPC,Encoding,i);
sHex := sHex + Chr(i and $ff) + Chr((i and $ff00) shr 8);
Result := true;
end;
function AsmDirDEFW(sParam: string; sFile: string; iLine: integer;
var regPC: integer; var sOut: string;
Encoding: TCharEncoding): integer;
var
s, sHex: string;
i: integer;
bInString: boolean;
begin
s := ''; bInString := false;
for i := 1 to Length(sParam) do
begin
if sParam[i] = '"' then
begin
s := s + sParam[i];
bInString := Not bInString;
end
else if (sParam[i] = ',') and (not bInString) then
begin
s := Trim(s);
if AsmDirDEFWOneParam(s,sHex,regPC,Encoding) then
sOut := sOut + sHex
else
begin
result := 2;
AssemblerDisplay('[Error] ' + sFile + ', line ' + IntToStr(iLine) +
': Invalid byte parameter(s).');
exit;
end;
s := '';
end
else
s := s + sParam[i];
end;
if (sParam[Length(sParam)] <> ',') then
begin
s := Trim(s);
if AsmDirDEFWOneParam(s,sHex,regPC,Encoding) then
sOut := sOut + sHex
else
begin
result := 2;
AssemblerDisplay('[Error] ' + sFile + ', line ' + IntToStr(iLine) +
': Invalid word parameter(s).');
exit;
end;
end;
regPC := regPC + Length(sOut);
Result := 0;
end;
function AddLabelValue(sLabel: string; iValue: integer): integer;
var i: integer;
begin
sLabel := Trim(sLabel);
if sLabel = '' then
begin
Result := 1; // Null label name
exit;
end;
// Search to see if this label already exists and return if it does
for i := 1 to iLabelCount do
if ASMEquates[i].sLabel = sLabel then
begin
Result := 2; // Duplicate label def
exit;
end;
Inc(iLabelCount);
if iLabelCount >= Length(ASMEquates) then
SetLength(ASMEquates,iLabelCount+20);
ASMEquates[iLabelCount].sLabel := sLabel;
ASMEquates[iLabelCount].iValue := iValue;
Result := 0;
end;
function GetParam(var s: string): string;
var
i: integer;
bInString,bInChar: boolean;
const
TermChars = '+-&|><*/^';
begin
s := Trim(s); Result := ''; bInString := false; bInChar := false;
for i := 1 to Length(s) do
begin
if (s[i] = '"') and (Not bInChar) then
begin
Result := Result + s[i];
bInString := Not bInString;
end
else if (s[i]='''') and (not bInString) then
begin
Result := Result + s[i];
bInChar := Not bInChar;
end
else if (Pos(s[i],TermChars)>0) and (not bInString) and (not bInChar) then
begin
s := Copy(s,i,512);
exit;
end
else if (s[i] <> ' ') then
Result := Result + s[i]
else if (bInString) or (bInChar) then
Result := Result + s[i];
end;
s := '';
end;
function Evaluate(bFinalPass: boolean; s: string; regPC: integer; Encoding: TCharEncoding; var i: integer): integer;
var
sTemp, sOp: string;
iTemp: integer;
begin
if (s[1] = '+') or (s[1] = '-') then i := regPC else i := 0;
while s <> '' do
begin
case s[1] of
'+','-','|','&','*','/','^':
begin
sOp := s[1];
s := Trim(Copy(s,2,512));
end;
'>','<':
begin
sOp := Copy(s,1,2);
s := Trim(Copy(s,3,512));
end;
else
sOp := '+';
end;
sTemp := GetParam(s);
iTemp := 0;
case GetValue(bFinalPass,sTemp,regPC,iTemp,Encoding) of
1:
begin
Result := 1; // Invalid parameter value
exit;
end;
2:
begin
Result := 2; // Label not defined
exit;
end;
end;
if sOp[1] = '+' then Inc(i,iTemp)
else if sOp = '-' then Dec(i,iTemp)
else if sOp = '&' then i := (i and iTemp)
else if sOp = '*' then i := (i * iTemp)
else if sOp = '/' then i := (i div iTemp)
else if sOp = '^' then i := (i mod iTemp)
else if sOp = '|' then i := (i or iTemp)
else if sOp = '>>' then i := i shr itemp
else if sOp = '<<' then i := i shl iTemp
else
begin
Result := 2;
exit;
end;
end;
Result := 0;
end;
end.