-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdistabs.c
586 lines (542 loc) · 26.5 KB
/
distabs.c
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
static char *sccsid =
"@(#) distabs.c, Ver. 2.1 created 00:00:00 87/09/01";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 1987 G. M. Harding, all rights reserved *
* *
* Permission to copy and redistribute is hereby granted, *
* provided full source code, with all copyright notices, *
* accompanies any redistribution. *
* *
* This file contains the lookup tables and other data *
* structures for the Intel 8088 symbolic disassembler. It *
* also contains a few global routines which facilitate *
* access to the tables, for use primarily by the handler *
* functions. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "dis.h" /* Disassembler declarations */
char *REGS[] = /* Table of register names */
{
"al", "cl", "dl", "bl", "ah", "ch", "dh", "bh",
"ax", "cx", "dx", "bx", "sp", "bp", "si", "di",
"es", "cs", "ss", "ds"
};
char *REGS0[] = /* Mode 0 register name table */
{
"bx_si", "bx_di", "bp_si", "bp_di", "si", "di", "", "bx"
};
char *REGS1[] = /* Mode 1 register name table */
{
"bx_si", "bx_di", "bp_si", "bp_di", "si", "di", "bp", "bx"
};
int symrank[6][6] = /* Symbol type/rank matrix */
{
/* UND ABS TXT DAT BSS COM */
/* UND */ 5, 4, 1, 2, 3, 0,
/* ABS */ 1, 5, 4, 3, 2, 0,
/* TXT */ 4, 1, 5, 3, 2, 0,
/* DAT */ 3, 1, 2, 5, 4, 0,
/* BSS */ 3, 1, 2, 4, 5, 0,
/* COM */ 2, 0, 1, 3, 4, 5
};
/* * * * * * * * * * * * OPCODE DATA * * * * * * * * * * * */
char ADD[] = "\tadd", /* Mnemonics by family */
OR[] = "\tor",
ADC[] = "\tadc",
SBB[] = "\tsbb",
AND[] = "\tand",
SUB[] = "\tsub",
XOR[] = "\txor",
CMP[] = "\tcmp",
NOT[] = "\tnot",
NEG[] = "\tneg",
MUL[] = "\tmul",
DIV[] = "\tdiv",
MOV[] = "\tmov",
ESC[] = "\tesc",
TEST[] = "\ttest",
AMBIG[] = "",
ROL[] = "\trol",
ROR[] = "\tror",
RCL[] = "\trcl",
RCR[] = "\trcr",
SAL[] = "\tsal",
SHR[] = "\tshr",
SHL[] = "\tshl",
SAR[] = "\tsar";
char *OPFAM[] = /* Family lookup table */
{
ADD, OR, ADC, SBB, AND, SUB, XOR, CMP,
NOT, NEG, MUL, DIV, MOV, ESC, TEST, AMBIG,
ROL, ROR, RCL, RCR, SAL, SHR, SHL, SAR
};
struct opcode optab[] = /* Table of opcode data */
{
ADD, aohand, 2, 4, /* 0x00 */
ADD, aohand, 2, 4, /* 0x01 */
ADD, aohand, 2, 4, /* 0x02 */
ADD, aohand, 2, 4, /* 0x03 */
ADD, aohand, 2, 2, /* 0x04 */
ADD, aohand, 3, 3, /* 0x05 */
"\tpush\tes", sbhand, 1, 1, /* 0x06 */
"\tpop\tes", sbhand, 1, 1, /* 0x07 */
OR, aohand, 2, 4, /* 0x08 */
OR, aohand, 2, 4, /* 0x09 */
OR, aohand, 2, 4, /* 0x0a */
OR, aohand, 2, 4, /* 0x0b */
OR, aohand, 2, 2, /* 0x0c */
OR, aohand, 3, 3, /* 0x0d */
"\tpush\tcs", sbhand, 1, 1, /* 0x0e */
"\t.code\t386", sbhand, 1, 1, /* 0x0f */
ADC, aohand, 2, 4, /* 0x10 */
ADC, aohand, 2, 4, /* 0x11 */
ADC, aohand, 2, 4, /* 0x12 */
ADC, aohand, 2, 4, /* 0x13 */
ADC, aohand, 2, 2, /* 0x14 */
ADC, aohand, 3, 3, /* 0x15 */
"\tpush\tss", sbhand, 1, 1, /* 0x16 */
"\tpop\tss", sbhand, 1, 1, /* 0x17 */
SBB, aohand, 2, 4, /* 0x18 */
SBB, aohand, 2, 4, /* 0x19 */
SBB, aohand, 2, 4, /* 0x1a */
SBB, aohand, 2, 4, /* 0x1b */
SBB, aohand, 2, 2, /* 0x1c */
SBB, aohand, 3, 3, /* 0x1d */
"\tpush\tds", sbhand, 1, 1, /* 0x1e */
"\tpop\tds", sbhand, 1, 1, /* 0x1f */
AND, aohand, 2, 4, /* 0x20 */
AND, aohand, 2, 4, /* 0x21 */
AND, aohand, 2, 4, /* 0x22 */
AND, aohand, 2, 4, /* 0x23 */
AND, aohand, 2, 2, /* 0x24 */
AND, aohand, 3, 3, /* 0x25 */
"\tseg\tes", sbhand, 1, 1, /* 0x26 */
"\tdaa", sbhand, 1, 1, /* 0x27 */
SUB, aohand, 2, 4, /* 0x28 */
SUB, aohand, 2, 4, /* 0x29 */
SUB, aohand, 2, 4, /* 0x2a */
SUB, aohand, 2, 4, /* 0x2b */
SUB, aohand, 2, 2, /* 0x2c */
SUB, aohand, 3, 3, /* 0x2d */
"\tseg\tcs", sbhand, 1, 1, /* 0x2e */
"\tdas", sbhand, 1, 1, /* 0x2f */
XOR, aohand, 2, 4, /* 0x30 */
XOR, aohand, 2, 4, /* 0x31 */
XOR, aohand, 2, 4, /* 0x32 */
XOR, aohand, 2, 4, /* 0x33 */
XOR, aohand, 2, 2, /* 0x34 */
XOR, aohand, 3, 3, /* 0x35 */
"\tseg\tss", sbhand, 1, 1, /* 0x36 */
"\taaa", sbhand, 1, 1, /* 0x37 */
CMP, aohand, 2, 4, /* 0x38 */
CMP, aohand, 2, 4, /* 0x39 */
CMP, aohand, 2, 4, /* 0x3a */
CMP, aohand, 2, 4, /* 0x3b */
CMP, aohand, 2, 2, /* 0x3c */
CMP, aohand, 3, 3, /* 0x3d */
"\tseg\tds", sbhand, 1, 1, /* 0x3e */
"\taas", sbhand, 1, 1, /* 0x3f */
"\tinc\tax", sbhand, 1, 1, /* 0x40 */
"\tinc\tcx", sbhand, 1, 1, /* 0x41 */
"\tinc\tdx", sbhand, 1, 1, /* 0x42 */
"\tinc\tbx", sbhand, 1, 1, /* 0x43 */
"\tinc\tsp", sbhand, 1, 1, /* 0x44 */
"\tinc\tbp", sbhand, 1, 1, /* 0x45 */
"\tinc\tsi", sbhand, 1, 1, /* 0x46 */
"\tinc\tdi", sbhand, 1, 1, /* 0x47 */
"\tdec\tax", sbhand, 1, 1, /* 0x48 */
"\tdec\tcx", sbhand, 1, 1, /* 0x49 */
"\tdec\tdx", sbhand, 1, 1, /* 0x4a */
"\tdec\tbx", sbhand, 1, 1, /* 0x4b */
"\tdec\tsp", sbhand, 1, 1, /* 0x4c */
"\tdec\tbp", sbhand, 1, 1, /* 0x4d */
"\tdec\tsi", sbhand, 1, 1, /* 0x4e */
"\tdec\tdi", sbhand, 1, 1, /* 0x4f */
"\tpush\tax", sbhand, 1, 1, /* 0x50 */
"\tpush\tcx", sbhand, 1, 1, /* 0x51 */
"\tpush\tdx", sbhand, 1, 1, /* 0x52 */
"\tpush\tbx", sbhand, 1, 1, /* 0x53 */
"\tpush\tsp", sbhand, 1, 1, /* 0x54 */
"\tpush\tbp", sbhand, 1, 1, /* 0x55 */
"\tpush\tsi", sbhand, 1, 1, /* 0x56 */
"\tpush\tdi", sbhand, 1, 1, /* 0x57 */
"\tpop\tax", sbhand, 1, 1, /* 0x58 */
"\tpop\tcx", sbhand, 1, 1, /* 0x59 */
"\tpop\tdx", sbhand, 1, 1, /* 0x5a */
"\tpop\tbx", sbhand, 1, 1, /* 0x5b */
"\tpop\tsp", sbhand, 1, 1, /* 0x5c */
"\tpop\tbp", sbhand, 1, 1, /* 0x5d */
"\tpop\tsi", sbhand, 1, 1, /* 0x5e */
"\tpop\tdi", sbhand, 1, 1, /* 0x5f */
NULL, dfhand, 0, 0, /* 0x60 */
NULL, dfhand, 0, 0, /* 0x61 */
NULL, dfhand, 0, 0, /* 0x62 */
NULL, dfhand, 0, 0, /* 0x63 */
"\tseg\tfs", sbhand, 1, 1, /* 0x64 */
"\tseg\tgs", sbhand, 1, 1, /* 0x65 */
"\tuse\top32", sbhand, 1, 1, /* 0x66 */
"\tuse\tadr32", sbhand, 1, 1, /* 0x67 */
"\tpush\t", mihand, 3, 3, /* 0x68 */
/* NULL, dfhand, 0, 0, /* 0x68 */
NULL, dfhand, 0, 0, /* 0x69 */
"\tpush\t", mihand, 2, 2, /* 0x6a */
/* NULL, dfhand, 0, 0, /* 0x6a */
NULL, dfhand, 0, 0, /* 0x6b */
NULL, dfhand, 0, 0, /* 0x6c */
NULL, dfhand, 0, 0, /* 0x6d */
NULL, dfhand, 0, 0, /* 0x6e */
NULL, dfhand, 0, 0, /* 0x6f */
"\tjo", sjhand, 2, 2, /* 0x70 */
"\tjno", sjhand, 2, 2, /* 0x71 */
"\tjc", sjhand, 2, 2, /* 0x72 */
"\tjnc", sjhand, 2, 2, /* 0x73 */
"\tjz", sjhand, 2, 2, /* 0x74 */
"\tjnz", sjhand, 2, 2, /* 0x75 */
"\tjna", sjhand, 2, 2, /* 0x76 */
"\tja", sjhand, 2, 2, /* 0x77 */
"\tjs", sjhand, 2, 2, /* 0x78 */
"\tjns", sjhand, 2, 2, /* 0x79 */
"\tjp", sjhand, 2, 2, /* 0x7a */
"\tjnp", sjhand, 2, 2, /* 0x7b */
"\tjl", sjhand, 2, 2, /* 0x7c */
"\tjnl", sjhand, 2, 2, /* 0x7d */
"\tjng", sjhand, 2, 2, /* 0x7e */
"\tjg", sjhand, 2, 2, /* 0x7f */
AMBIG, imhand, 3, 5, /* 0x80 */
AMBIG, imhand, 4, 6, /* 0x81 */
AMBIG, imhand, 3, 5, /* 0x82 */
AMBIG, imhand, 3, 5, /* 0x83 */
TEST, mvhand, 2, 4, /* 0x84 */
TEST, mvhand, 2, 4, /* 0x85 */
"\txchg", mvhand, 2, 4, /* 0x86 */
"\txchg", mvhand, 2, 4, /* 0x87 */
MOV, mvhand, 2, 4, /* 0x88 */
MOV, mvhand, 2, 4, /* 0x89 */
MOV, mvhand, 2, 4, /* 0x8a */
MOV, mvhand, 2, 4, /* 0x8b */
MOV, mshand, 2, 4, /* 0x8c */
"\tlea", mvhand, 2, 4, /* 0x8d */
MOV, mshand, 2, 4, /* 0x8e */
"\tpop", pohand, 2, 4, /* 0x8f */
"\tnop", sbhand, 1, 1, /* 0x90 */
"\txchg\tax,cx", sbhand, 1, 1, /* 0x91 */
"\txchg\tax,dx", sbhand, 1, 1, /* 0x92 */
"\txchg\tax,bx", sbhand, 1, 1, /* 0x93 */
"\txchg\tax,sp", sbhand, 1, 1, /* 0x94 */
"\txchg\tax,bp", sbhand, 1, 1, /* 0x95 */
"\txchg\tax,si", sbhand, 1, 1, /* 0x96 */
"\txchg\tax,di", sbhand, 1, 1, /* 0x97 */
"\tcbw", sbhand, 1, 1, /* 0x98 */
"\tcwd", sbhand, 1, 1, /* 0x99 */
"\tcalli", cihand, 5, 5, /* 0x9a */
"\twait", sbhand, 1, 1, /* 0x9b */
"\tpushf", sbhand, 1, 1, /* 0x9c */
"\tpopf", sbhand, 1, 1, /* 0x9d */
"\tsahf", sbhand, 1, 1, /* 0x9e */
"\tlahf", sbhand, 1, 1, /* 0x9f */
MOV, mqhand, 3, 3, /* 0xa0 */
MOV, mqhand, 3, 3, /* 0xa1 */
MOV, mqhand, 3, 3, /* 0xa2 */
MOV, mqhand, 3, 3, /* 0xa3 */
"\tmovb", sbhand, 1, 1, /* 0xa4 */
"\tmovw", sbhand, 1, 1, /* 0xa5 */
"\tcmpb", sbhand, 1, 1, /* 0xa6 */
"\tcmpw", sbhand, 1, 1, /* 0xa7 */
TEST, tqhand, 2, 2, /* 0xa8 */
TEST, tqhand, 3, 3, /* 0xa9 */
"\tstob", sbhand, 1, 1, /* 0xaa */
"\tstow", sbhand, 1, 1, /* 0xab */
"\tlodb", sbhand, 1, 1, /* 0xac */
"\tlodw", sbhand, 1, 1, /* 0xad */
"\tscab", sbhand, 1, 1, /* 0xae */
"\tscaw", sbhand, 1, 1, /* 0xaf */
"\tmov\tal,", mihand, 2, 2, /* 0xb0 */
"\tmov\tcl,", mihand, 2, 2, /* 0xb1 */
"\tmov\tdl,", mihand, 2, 2, /* 0xb2 */
"\tmov\tbl,", mihand, 2, 2, /* 0xb3 */
"\tmov\tah,", mihand, 2, 2, /* 0xb4 */
"\tmov\tch,", mihand, 2, 2, /* 0xb5 */
"\tmov\tdh,", mihand, 2, 2, /* 0xb6 */
"\tmov\tbh,", mihand, 2, 2, /* 0xb7 */
"\tmov\tax,", mihand, 3, 3, /* 0xb8 */
"\tmov\tcx,", mihand, 3, 3, /* 0xb9 */
"\tmov\tdx,", mihand, 3, 3, /* 0xba */
"\tmov\tbx,", mihand, 3, 3, /* 0xbb */
"\tmov\tsp,", mihand, 3, 3, /* 0xbc */
"\tmov\tbp,", mihand, 3, 3, /* 0xbd */
"\tmov\tsi,", mihand, 3, 3, /* 0xbe */
"\tmov\tdi,", mihand, 3, 3, /* 0xbf */
NULL, dfhand, 0, 0, /* 0xc0 */
NULL, dfhand, 0, 0, /* 0xc1 */
"\tret", rehand, 3, 3, /* 0xc2 */
"\tret", sbhand, 1, 1, /* 0xc3 */
"\tles", mvhand, 2, 4, /* 0xc4 */
"\tlds", mvhand, 2, 4, /* 0xc5 */
MOV, mmhand, 3, 5, /* 0xc6 */
MOV, mmhand, 4, 6, /* 0xc7 */
NULL, dfhand, 0, 0, /* 0xc8 */
NULL, dfhand, 0, 0, /* 0xc9 */
/* MJG: this should be retf "\treti", rehand, 3, 3, * 0xca */
"\tretf", rehand, 3, 3, /* 0xca */
"\tretf", sbhand, 1, 1, /* 0xcb */
"\tint", sbhand, 1, 1, /* 0xcc */
"\tint", inhand, 2, 2, /* 0xcd */
"\tinto", sbhand, 1, 1, /* 0xce */
"\tiret", sbhand, 1, 1, /* 0xcf */
AMBIG, srhand, 2, 4, /* 0xd0 */
AMBIG, srhand, 2, 4, /* 0xd1 */
AMBIG, srhand, 2, 4, /* 0xd2 */
AMBIG, srhand, 2, 4, /* 0xd3 */
"\taam", aahand, 2, 2, /* 0xd4 */
"\taad", aahand, 2, 2, /* 0xd5 */
NULL, dfhand, 0, 0, /* 0xd6 */
"\txlat", sbhand, 1, 1, /* 0xd7 */
ESC, eshand, 2, 2, /* 0xd8 */
ESC, eshand, 2, 2, /* 0xd9 */
ESC, eshand, 2, 2, /* 0xda */
ESC, eshand, 2, 2, /* 0xdb */
ESC, eshand, 2, 2, /* 0xdc */
ESC, eshand, 2, 2, /* 0xdd */
ESC, eshand, 2, 2, /* 0xde */
ESC, eshand, 2, 2, /* 0xdf */
"\tloopne", sjhand, 2, 2, /* 0xe0 */
"\tloope", sjhand, 2, 2, /* 0xe1 */
"\tloop", sjhand, 2, 2, /* 0xe2 */
"\tjcxz", sjhand, 2, 2, /* 0xe3 */
"\tin", iohand, 2, 2, /* 0xe4 */
"\tinw", iohand, 2, 2, /* 0xe5 */
"\tout", iohand, 2, 2, /* 0xe6 */
"\toutw", iohand, 2, 2, /* 0xe7 */
"\tcall", ljhand, 3, 3, /* 0xe8 */
"\tjmp", ljhand, 3, 3, /* 0xe9 */
"\tjmpi", cihand, 5, 5, /* 0xea */
"\tj", sjhand, 2, 2, /* 0xeb */
"\tin", sbhand, 1, 1, /* 0xec */
"\tinw", sbhand, 1, 1, /* 0xed */
"\tout", sbhand, 1, 1, /* 0xee */
"\toutw", sbhand, 1, 1, /* 0xef */
"\tlock", sbhand, 1, 1, /* 0xf0 */
NULL, dfhand, 0, 0, /* 0xf1 */
"\trepnz", sbhand, 1, 1, /* 0xf2 */
"\trepz", sbhand, 1, 1, /* 0xf3 */
"\thlt", sbhand, 1, 1, /* 0xf4 */
"\tcmc", sbhand, 1, 1, /* 0xf5 */
AMBIG, mahand, 2, 5, /* 0xf6 */
AMBIG, mahand, 2, 6, /* 0xf7 */
"\tclc", sbhand, 1, 1, /* 0xf8 */
"\tstc", sbhand, 1, 1, /* 0xf9 */
"\tcli", sbhand, 1, 1, /* 0xfa */
"\tsti", sbhand, 1, 1, /* 0xfb */
"\tcld", sbhand, 1, 1, /* 0xfc */
"\tstd", sbhand, 1, 1, /* 0xfd */
AMBIG, mjhand, 2, 4, /* 0xfe */
AMBIG, mjhand, 2, 4 /* 0xff */
};
char * lookup(long addr,int kind,long ext);
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* This function finds an entry in the symbol table by *
* value. Its input is a (long) machine address, and its *
* output is a pointer to a string containing the corre- *
* sponding symbolic name. The function first searches the *
* relocation table for a possible external reference; if *
* none is found, a linear search of the symbol table is *
* undertaken. If no matching symbol has been found at the *
* end of these searches, the function returns a pointer *
* to a string containing the ASCII equivalent of the ad- *
* dress which was to be located, so that, regardless of *
* the success of the search, the function's return value *
* is suitable for use as a memory-reference operand. The *
* caller specifies the type of symbol to be found (text, *
* data, bss, undefined, absolute, or common) by means of *
* the function's second parameter. The third parameter *
* specifies the format to be used in the event of a nu- *
* meric output: zero for absolute format, one for short *
* relative format, two for long relative format. The *
* fourth parameter is the address which would appear in *
* the relocation table for the reference in question, or *
* -1 if the relocation table is not to be searched. The *
* function attempts to apply a certain amount of intelli- *
* gence in its selection of symbols, so it is possible *
* that, in the absence of a type match, a symbol of the *
* correct value but different type will be returned. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
char * lookup(addr,kind,ext)
long addr; /* Machine address to be located */
int kind; /* Addressing output mode to use */
long ext; /* Value for extern ref, if any */
{/* * * * * * * * * * START OF lookup() * * * * * * * * * */
static char b[80];
if (kind == LOOK_ABS)
p_atos(b,"$%04lx",addr);
else
{
long x = addr - (PC - kind);
if (x < 0)
p_atos(b,".%ld",x);
else
p_atos(b,".+%ld",x);
}
return (b);
}/* * * * * * * * * * * END OF lookup() * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* This function translates an 8088 addressing mode byte *
* to an equivalent assembler string, returning a pointer *
* thereto. If necessary, it performs successive inputs *
* of bytes from the object file in order to obtain offset *
* data, adjusting PC accordingly. (The addressing mode *
* byte appears in several 8088 opcodes; it is used to *
* specify source and destination operand locations.) The *
* third argument to the function is zero if the standard *
* registers are to be used, or eight if the segment reg- *
* isters are to be used; these constants are defined sym- *
* bolically in dis.h. NOTE: The mtrans() function must *
* NEVER be called except immediately after fetching the *
* mode byte. If any additional object bytes are fetched *
* after the fetch of the mode byte, mtrans() will not *
* produce correct output! *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#undef FRV
#define FRV ""
char *
mtrans(c,m,type)
register int c; /* Primary instruction byte */
register int m; /* Addressing mode byte */
int type; /* Type code: standard or seg */
{/* * * * * * * * * * START OF mtrans() * * * * * * * * * */
unsigned long pc;
int offset, oflag, dir, w, mod, reg, rm;
static char a[100];
static char b[30];
offset = 0;
dir = c & 2;
w = c & 1;
mod = (m & 0xc0) >> 6;
reg = (m & 0x38) >> 3;
rm = m & 7;
pc = PC + 1;
if (type)
w = 1;
if ((oflag = mod) > 2)
oflag = 0;
if (oflag)
{
int j, k;
if (oflag == 2)
{
FETCH(j);
FETCH(k);
offset = (k << 8) | j;
}
else
{
FETCH(j);
if (j & 0x80)
k = 0xff00;
else
k = 0;
offset = k | j;
}
}
if (dir)
{
p_scpy(a,REGS[type + ((w << 3) | reg)]);
p_scat(a,",");
switch (mod)
{
case 0 :
if (rm == 6)
{
int j, k;
FETCH(j);
FETCH(k);
offset = (k << 8) | j;
p_scat(a,
lookup((long)(offset),LOOK_ABS,pc));
}
else
{
p_atos(b,"(%s)",REGS0[rm]);
p_scat(a,b);
}
break;
case 1 :
case 2 :
if (mod == 1)
p_scat(a,"*");
else
p_scat(a,"#");
p_atos(b,"%d(", (short)offset);
p_scat(a,b);
p_scat(a,REGS1[rm]);
p_scat(a,")");
break;
case 3 :
p_scat(a,REGS[(w << 3) | rm]);
break;
}
}
else
{
switch (mod)
{
case 0 :
if (rm == 6)
{
int j, k;
FETCH(j);
FETCH(k);
offset = (k << 8) | j;
p_scpy(a,
lookup((long)(offset),LOOK_ABS,pc));
}
else
{
p_atos(b,"(%s)",REGS0[rm]);
p_scpy(a,b);
}
break;
case 1 :
case 2 :
if (mod == 1)
p_scpy(a,"*");
else
p_scpy(a,"#");
p_atos(b,"%d(", (short)offset);
p_scat(a,b);
p_scat(a,REGS1[rm]);
p_scat(a,")");
break;
case 3 :
p_scpy(a,REGS[(w << 3) | rm]);
break;
}
p_scat(a,",");
p_scat(a,REGS[type + ((w << 3) | reg)]);
}
return (a);
}/* * * * * * * * * * * END OF mtrans() * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* This simple routine truncates a string returned by the *
* mtrans() function, removing its source operand. This is *
* useful in handlers which ignore the "reg" field of the *
* mode byte. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void
mtrunc(a)
register char *a; /* Ptr. to string to truncate */
{/* * * * * * * * * * START OF mtrunc() * * * * * * * * * */
register int k;
for (k = p_slen(a) - 1; k >= 0; --k)
if (a[k] == ',')
{
a[k] = '\0';
break;
}
}/* * * * * * * * * * * END OF mtrunc() * * * * * * * * * * */