-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdisasm.c
More file actions
1581 lines (1241 loc) · 31.5 KB
/
disasm.c
File metadata and controls
1581 lines (1241 loc) · 31.5 KB
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*****************************************************************************
disasm.c - Main disassembler/trace functionality
Copyright (C) 1996, 1997, 2014, 2018, by Chet Simpson.
This file is distributed under the MIT License. See notice at the end
of this file.
--------------------------------------------------------------------------
The disassembler was inspired by Didier Derny's original implementation.
Although the implementation of that disassembler was discarded some
concepts such as the table based call handlers remain.
To Do:
Add 6309 support
Add support for RS-DOS .bin files
Generate a text in a buffer instead of to a file for interactive mode
Allow use of a memory description file
Add $FFxx port definitions and support
Change memory map to use bit table for possible use ON a CoCo
Change disassembly process to read from file for possible use ON a CoCo
****************************************************************************/
#include <stdarg.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "disasm.h"
#include "rof.h"
#include "genasm.h"
#define TRACE_RESET(x) /* No longer used */
#define SET_TRACEINFO(offset, val) traceInfo[offset] = val
#define SET_CODEINFO(offset, val) codeInfo[offset] = val
#define SET_DATAINFO(offset, val) dataInfo[offset] = val
#define SET_BSSINFO(offset, val) bssInfo[offset] = val
#define GET_TRACEINFO(offset) traceInfo[offset]
#define GET_CODEINFO(offset) codeInfo[offset]
#define GET_DATAINFO(offset) dataInfo[offset]
#define GET_BSSINFO(offset) bssInfo[offset]
#define TRACE_DATA 0x00
#define TRACE_CODE 0x01
typedef enum
{
LABCODE, /* location is code, label is in code */
LABDATA, /* location is init data */
LABBSS, /* location is uninit data */
} LABTYPE;
typedef enum
{
STATE_TRACE, /* Trace state is trace */
STATE_RETURN /* Trace state is stop and return from pos */
} TSTATE;
typedef enum
{
M_TEXT, /* Data display mode is text (fcc) */
M_BINARY /* Data display mode is binary (fcb/fdb) */
} MODE;
static TSTATE traceState = 0; /* Current tracing state */
static u_int16 maxPC = 0; /* Maximum code byte offset */
static int disasmPass = 0; /* Current disassembler pass */
static u_int16 xxPC = 0; /* Current PC */
static OS9ROF *rofFile = NULL; /* Current ROF file */
/*
The following tables could be better implemented as bit tables
instead of taking up an entire byte. codeInfo, dataInfo, and bssInfo
could probably be merged into a 2 bit value table reducing the
size to 16k rather than a full 192k currently used. Of course this
is only valid if you want to run the disassembler ON a coco although
most .r files were no more than 1k in size so the extra work might
not be worth it - just reduce the value of MAX_MEMORY.
*/
static u_char traceInfo[MAX_MEMORY];
static u_char codeInfo[MAX_MEMORY];
static u_char dataInfo[MAX_MEMORY];
static u_char bssInfo[MAX_MEMORY];
static int stackRegBits[8] =
{
SREG_PC,
SREG_U_S,
SREG_Y,
SREG_X,
SREG_DP,
SREG_B,
SREG_A,
SREG_CC
};
static const char *stackSRegTxt[8] =
{
"pc", "u", "y", "x", "dp", "b", "a", "cc"
};
static const char *stackURegTxt[8] =
{
"pc", "s", "y", "x", "dp", "b", "a", "cc"
};
static const char *Inter_Register[16] =
{
"d", "x", "y", "u", "s", "pc", "??", "??",
"a", "b", "cc", "dp", "??", "??", "??", "??"
};
static const char *Indexed_Register[4] =
{
"x", "y", "u", "s"
};
int postOpExtraBytes[32] =
{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00 - 0x07 */
0x01, 0x02, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, /* 0x08 - 0x0f */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x10 - 0x17 */
0x01, 0x02, 0x00, 0x00, 0x01, 0x02, 0x00, 0x02 /* 0x18 - 0x1f */
};
/***********************************************************************
Functionality for tracing opcodes to seperate code from data
***********************************************************************/
static u_int16 GetRelative(u_char *mem, u_int16 pc)
{
int offset;
int disp;
offset = mem[pc + 1];
if (offset < 127 )
{
disp = pc + 2 + offset;
}
else
{
disp = pc + 2 - (256 - offset);
}
return disp;
}
static int GetRelativeLong(u_char *mem, u_int16 pc)
{
int offset;
int disp;
offset = mem[pc + 1] * 256 + mem[pc + 2];
if (offset < 32767 )
{
disp = pc + 3 + offset;
}
else
{
disp = pc + 3 - (65536 - offset);
}
return disp;
}
/***************************************************************************
Initiates a trace into a branch. Works until it gets a return
***************************************************************************/
static void TraceBranch(u_char *mem, u_int16 pc)
{
if(pc >= maxPC)
{
return;
}
/*
Prevent us from processing a block of code that has already
been done
*/
if(TRACE_DATA == GET_TRACEINFO(pc))
{
int bytesUsed;
/* Set the new pc */
while(STATE_TRACE == traceState && pc < maxPC)
{
u_char code = mem[pc];
bytesUsed = optable[code].traceFunc(mem, &optable[code], code, pc);
if(bytesUsed < 1)
{
pc = -bytesUsed;
}
else
{
pc += bytesUsed;
}
}
/* Reset the return state */
traceState = STATE_TRACE;
}
}
/***************************************************************************
***************************************************************************/
static void EnterTrace(u_char *mem, u_int16 pc)
{
traceState = STATE_TRACE;
TraceBranch(mem, pc);
}
/***************************************************************************
***************************************************************************/
int TraceGeneric(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int i;
for(i = 0; i < op->byteCount; i++)
{
SET_TRACEINFO(pc + i, TRACE_CODE);
}
return op->byteCount;
}
/***************************************************************************
***************************************************************************/
int TraceGenericJmp(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
return TraceGeneric(mem, op, code, pc);
}
/***************************************************************************
***************************************************************************/
int TracePage10(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
SET_TRACEINFO(pc++, TRACE_CODE);
code = mem[pc];
return optable10[code].traceFunc(mem, &optable10[code], code, pc) + 1;
}
int TracePage11(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
SET_TRACEINFO(pc++, TRACE_CODE);
code = mem[pc];
return optable11[code].traceFunc(mem, &optable11[code], code, pc) + 1;
}
int TraceIndexed(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int postbyte;
int extrabytes;
extrabytes = 0;
postbyte = mem[pc + 1];
if(0 != (postbyte & 0x80))
{
extrabytes = postOpExtraBytes[postbyte & 0x1f];
}
TraceGeneric(mem, op, code, pc);
return op->byteCount + extrabytes;
}
int TraceRelative(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int used;
used = TraceGeneric(mem, op, code, pc);
TraceBranch(mem, GetRelative(mem, pc));
return used;
}
int TraceRelativeLong(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int used;
used = TraceGeneric(mem, op, code, pc);
TraceBranch(mem, (u_int16)GetRelativeLong(mem, pc));
return used;
}
int TraceRelativeJump(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
u_int16 newPC;
int bytesUsed;
bytesUsed = TraceGeneric(mem, op, code, pc);
newPC = GetRelative(mem, pc);
/* If the new PC already has something, don't go there! */
if(TRACE_DATA != GET_TRACEINFO(newPC))
{
return bytesUsed;
}
return -newPC;
}
int TraceRelativeJumpLong(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
u_int16 newPC;
int bytesUsed;
bytesUsed = TraceGeneric(mem, op, code, pc);
newPC = GetRelativeLong(mem, pc);
/* If the new PC already has something, don't go there! */
if(TRACE_DATA != GET_TRACEINFO(newPC))
{
return bytesUsed;
}
return -newPC;
}
int TraceReturn(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
traceState = STATE_RETURN;
return TraceGeneric(mem, op, code, pc);
}
int TracePullStack(u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
if(mem[pc + 1] & SREG_PC)
{
traceState = STATE_RETURN;
}
return TraceGeneric(mem, op, code, pc);
}
/***************************************************************************
***************************************************************************/
void TraceObjectCode(OS9ROF *rfile)
{
Node *node;
int traced;
traced = 0;
maxPC = rfile->sizeObjectCode;
/* Reset the disassembler trace info */
memset(traceInfo, TRACE_DATA, MAX_MEMORY);
/* Get the head of the list */
node = ListGetHead(rfile->refList);
/* While there are global references, trace them */
while(NULL != node)
{
Reference *ref;
ref = NodeGetData(node);
if(ref->type == REF_GLOBAL)
{
EnterTrace(rfile->objectCode, ref->offset);
traced++;
}
node = NodeGetNext(rfile->refList, node);
}
/* FIXME - should we start from the execution point? */
/* If no globals were traced, start from the beginning */
if(0 == traced)
{
EnterTrace(rfile->objectCode, 0);
}
}
static u_int16 getWord(u_char *mem, u_int16 index)
{
return((mem[index] << 8) | mem[index + 1]);
}
/*
Generating a base label
for BSS:
Pointed to by a global reference
Pointed to by a local reference
for DATA:
Pointed to by a global reference
Pointed to by a local reference
for CODE:
Pointer to by a global reference
Pointed to by a local reference
*/
static Reference *FindDataRef(OS9ROF *rfile, u_int16 addr)
{
Node *node;
Reference *ref;
/* Get the first node of the reference list */
node = ListGetHead(rfile->refList);
while(NULL != node)
{
/* Get the node data */
ref = NodeGetData(node);
/* if it's the in code, the right offset, and right type, check it */
if(REF_LOCAL == ref->type && addr == ref->offset)
{
if(0 == (ref->flag & CODLOC))
{
/*
Local references can target code, data, or bss so we need
to check them all
*/
/*if(0 == (ref->flag & CODENT) && 0 != (ref->flag & INIENT))*/
{
return ref;
}
}
}
node = NodeGetNext(rfile->refList, node);
}
return NULL;
}
/* Returns if it should output a reference to something else */
static void GenBaseLabel(FILE *outFile, OS9ROF *rfile, LABTYPE labelType, u_int16 label)
{
Node *node;
Reference *ref;
int length;
BOOL labelGenerated;
if(1 == disasmPass)
{
return;
}
labelGenerated = FALSE;
node = ListGetHead(rfile->refList);
while(NULL != node)
{
ref = NodeGetData(node);
if(label == ref->offset)
{
switch(labelType)
{
case LABCODE:
/* Break out if this is isn't a global ref */
if(REF_GLOBAL != ref->type)
{
break;
}
if(0 != (ref->flag & CODENT))
{
length = GenAsm(outFile, "%s:", ref->symbol);
labelGenerated = TRUE;
}
break;
case LABDATA:
/* Only global references are handled here */
if(REF_GLOBAL != ref->type)
{
break;
}
/* Make sure we are referencing initializeddata */
if(0 != (ref->flag & CODENT) && 0 == (ref->flag & INIENT))
{
break;
}
length = GenAsm(outFile, "%s:", ref->symbol);
labelGenerated = TRUE;
break;
case LABBSS:
length = GenAsmLabelBSS(outFile, label);
labelGenerated = TRUE;
break;
default:
assert(0);
}
if(TRUE == labelGenerated)
{
break;
}
}
node = NodeGetNext(rfile->refList, node);
}
if(FALSE == labelGenerated)
{
length = 0;
switch(labelType)
{
case LABCODE: /* location is code, label is in code */
if(TRUE == GET_CODEINFO(label))
{
if(TRUE == GET_TRACEINFO(label))
{
length = GenAsmLabelCode(outFile, label);
labelGenerated = TRUE;
}
else
{
length = GenAsmLabelCodeData(outFile, label);
labelGenerated = TRUE;
}
}
break;
case LABDATA: /* location is init data */
if(TRUE == GET_DATAINFO(label))
{
length = GenAsmLabelData(outFile, label);
labelGenerated = TRUE;
}
break;
case LABBSS: /* location is uninit data */
if(TRUE == GET_BSSINFO(label))
{
length = GenAsmLabelBSS(outFile, label);
labelGenerated = TRUE;
}
break;
default:
assert(0);
}
}
GenAsmTabs(outFile, length);
}
static void GenCodeLabel(FILE *outFile, OS9ROF *rfile, u_int16 pc, u_int16 label)
{
if(pc > maxPC) /* It's outside of the code, just gen a label */
{
GenAsmAddress(outFile, label);
}
else
{
Node *node;
Reference *ref;
/* Get the first node of the reference list */
node = ListGetHead(rfile->refList);
while(NULL != node)
{
/* Get the node data */
ref = NodeGetData(node);
/* if it's the in code, the right offset, and right type, check it */
if(pc == ref->offset && 0 != (ref->flag & CODLOC))
{
if(REF_LOCAL == ref->type)
{
/*
Local references can target code, data, or bss so we need
to check them all
*/
if(ref->flag & CODENT)
{
GenAsmLabelCode(outFile, label);
}
else
{
if(ref->flag & INIENT)
{
GenAsmLabelData(outFile, label);
}
else
{
GenAsmLabelBSS(outFile, label);
}
}
}
else
{
GenAsm(outFile, ref->symbol);
}
return;
}
node = NodeGetNext(rfile->refList, node);
}
/* Set that this code location as labeled/accessed */
SET_CODEINFO(label, TRUE);
/* Generate the proper code label */
if(TRUE == GET_TRACEINFO(label))
{
GenAsmLabelCode(outFile, label);
}
else
{
GenAsmLabelCodeData(outFile, label);
}
}
}
/***************************************************************************
***************************************************************************/
static const char *IndexRegister(int postbyte)
{
return Indexed_Register[ (postbyte>>5) & 0x03];
}
/*
Searchs all reference data for locations which are
accessed and have labels.
*/
static const char *GetGlobalSymbol(u_int16 pc, u_char mask)
{
Reference *ref;
ref = GetReference(rofFile, REF_GLOBAL, pc, TRUE, FALSE);
if(NULL != ref)
{
return ref->symbol;
}
return NULL;
}
/***************************************************************************
***************************************************************************/
int DisasmPage10(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
pc++;
code = mem[pc];
return optable10[code].disasmFunc(outFile, mem, &optable10[code], code, pc) + 1;
}
int DisasmPage11(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
pc++;
code = mem[pc];
return optable11[code].disasmFunc(outFile, mem, &optable11[code], code, pc) + 1;
}
int DisasmIllegal(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
GenAsmOp(outFile, "nop", NULL);
GenAsm(outFile, "* [%02X] Illegal instruction", mem[pc]);
return op->byteCount;
}
int DisasmDirect(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int offset;
offset = mem[pc+1];
GenAsmOp(outFile, op->opName, "$%02x", offset);
return op->byteCount;
}
/* FIXME
Immediate mode should check for accessing bss and data segments
as well as inlined data in the code segment. PRobably safe to assume
that if the location is labeled in the ROF data and/or is data in the
code segment that we can access it as labeled. Either way, a special
comment should be added
*/
int DisasmImmediate(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int offset;
offset = mem[pc + 1];
GenAsmOp(outFile, op->opName, "#$%02x", offset);
return op->byteCount;
}
int DisasmImmediateLong(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int offset;
offset = mem[pc + 1] * 256 + mem[pc + 2];
GenAsmOp(outFile, op->opName, "#$%04x", offset);
return op->byteCount;
}
int DisasmInherent(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
GenAsmOp(outFile, op->opName, NULL);
return op->byteCount;
}
int DisasmIndexed(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int postbyte;
char *s;
int extrabytes;
int disp;
int address;
int offset;
extrabytes = 0;
postbyte = mem[pc + 1];
if(0 == (postbyte & 0x80))
{
disp = postbyte & 0x1f;
if ((postbyte & 0x10) == 0x10)
{
s = NEG_STRING;
disp = 0x20 - disp;
}
else
{
s = POS_STRING;
}
/* FIXME - look for local symbol here */
GenAsmOp(outFile, op->opName, "%s$%02x,%s", s, disp,IndexRegister(postbyte));
}
else
{
BOOL indirect;
/* Get the number of extra bytes for this postop */
extrabytes = postOpExtraBytes[postbyte & 0x1f];
/* Get the indirect flag */
indirect = (postbyte & PB_INDIRECT) ? TRUE : FALSE;
/* Generate the operand */
GenAsmOp(outFile, op->opName, NULL);
/* Check for indirect addressing */
if(TRUE == indirect)
{
GenAsm(outFile, "[");
}
/* Process the postop */
switch(postbyte & 0x0f)
{
case IDX_INCREG:
GenAsm(outFile, ",%s+", IndexRegister(postbyte));
if(TRUE == indirect)
{
GenAsm(outFile, "\t* Invalid indexing mode");
}
break;
case IDX_INCREG2:
GenAsm(outFile, ",%s++", IndexRegister(postbyte));
break;
case IDX_DECREG:
GenAsm(outFile, ",-%s", IndexRegister(postbyte));
if(TRUE == indirect)
{
GenAsm(outFile, "\t* Invalid indexing mode");
}
break;
case IDX_DECREG2:
GenAsm(outFile, ",--%s", IndexRegister(postbyte));
break;
case IDX_OFFSET_0:
GenAsm(outFile, ",%s", IndexRegister(postbyte));
break;
case IDX_OFFSET_B:
GenAsm(outFile, "b,%s", IndexRegister(postbyte));
break;
case IDX_OFFSET_A:
GenAsm(outFile, "a,%s", IndexRegister(postbyte));
break;
case IDX_ILLEGAL1:
break;
case IDX_OFFSET_BYTE:
offset = mem[pc+2];
if (offset < 128)
{
s = POS_STRING;
}
else
{
s = NEG_STRING;
offset = 0x0100 - offset;
}
GenAsm(outFile, "%s$%02x,%s", s, offset, IndexRegister(postbyte));
break;
case IDX_OFFSET_WORD:
offset = mem[pc + 2] * 256 + mem[pc + 3];
if (offset < 32768)
{
s = POS_STRING;
}
else
{
s = NEG_STRING;
offset = 0xffff - offset + 1;
}
GenAsm(outFile, "%s", s);
GenCodeLabel(outFile, rofFile, (u_int16)(pc + 2), (u_int16)offset);
GenAsm(outFile, ",%s", IndexRegister(postbyte));
break;
case IDX_ILLEGAL2:
GenAsm(outFile, "\t* Invalid indexing mode");
break;
case IDX_OFFSET_D:
GenAsm(outFile, "d,%s", IndexRegister(postbyte));
break;
case IDX_OFFSET_PCR1:
offset = (mem[pc + 2] + pc + 3) & 0xFFFF;
GenAsm(outFile, "<$%02x,pcr", offset);
break;
case IDX_OFFSET_PCR2:
offset = (mem[pc + 2] * 256 + mem[pc + 3] + pc + 4) & 0xFFFF;
GenAsm(outFile, ">");
GenCodeLabel(outFile, rofFile, (u_int16)(pc + 2), (u_int16)offset);
GenAsm(outFile, ",pcr");
break;
case IDX_ILLEGAL3:
GenAsm(outFile, "\t* Invalid indexing mode");
break;
case IDX_INDIRECT:
address = mem[pc + 2] * 256 + mem[pc + 3];
GenAsm(outFile, "$%4X", address);
if(FALSE == indirect)
{
GenAsm(outFile, "\t* Invalid indexing mode");
}
break;
}
if(TRUE == indirect)
{
GenAsm(outFile, "]");
}
}
return op->byteCount + extrabytes;
}
int DisasmExtended(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
u_int16 offset;
offset = mem[pc + 1] * 256 + mem[pc + 2];
GenAsmOp(outFile, op->opName, NULL);
pc++;
GenCodeLabel(outFile, rofFile, pc, offset);
return op->byteCount;
}
int DisasmRelative(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int offset;
u_int16 disp;
offset = mem[pc + 1];
if (offset < 127 )
{
disp = pc + 2 + offset;
}
else
{
disp = pc + 2 - (256 - offset);
}
GenAsmOp(outFile, op->opName, NULL);
GenCodeLabel(outFile, rofFile, ++pc, disp);
return op->byteCount;
}
int DisasmRelativeLong(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int offset;
int disp;
offset = mem[pc + 1] * 256 + mem[pc + 2];
if (offset < 32767 )
{
disp = pc + 3 + offset;
}
else
{
disp = pc + 3 - (65536 - offset);
}
GenAsmOp(outFile, op->opName, NULL);
GenCodeLabel(outFile, rofFile, ++pc, (u_int16)disp);
return op->byteCount;
}
int DisasmRegToRegOp(FILE *outFile, u_char *mem, Opcode *op, u_char code, u_int16 pc)
{
int postbyte;
postbyte = mem[pc + 1];
GenAsmOp(outFile, op->opName, "%s,%s", Inter_Register[postbyte>>4], Inter_Register[postbyte & 0x0F]);