-
Notifications
You must be signed in to change notification settings - Fork 0
/
disasm.c
4105 lines (4103 loc) · 291 KB
/
disasm.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
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
/* File: disasm.c
Author: Mats Engstrom, April 2020
Language: C (UNIX)
Purpose: PDP-8 emulator debugging tool
*/
char *ops[4096] = {
"AND 0000 ;AND operand with AC, ZP 0000 ", // op 0000
"AND 0001 ;AND operand with AC, ZP 0001", // op 0001
"AND 0002 ;AND operand with AC, ZP 0002", // op 0002
"AND 0003 ;AND operand with AC, ZP 0003", // op 0003
"AND 0004 ;AND operand with AC, ZP 0004", // op 0004
"AND 0005 ;AND operand with AC, ZP 0005", // op 0005
"AND 0006 ;AND operand with AC, ZP 0006", // op 0006
"AND 0007 ;AND operand with AC, ZP 0007", // op 0007
"AND 0010 ;AND operand with AC, ZP 0010", // op 0010
"AND 0011 ;AND operand with AC, ZP 0011", // op 0011
"AND 0012 ;AND operand with AC, ZP 0012", // op 0012
"AND 0013 ;AND operand with AC, ZP 0013", // op 0013
"AND 0014 ;AND operand with AC, ZP 0014", // op 0014
"AND 0015 ;AND operand with AC, ZP 0015", // op 0015
"AND 0016 ;AND operand with AC, ZP 0016", // op 0016
"AND 0017 ;AND operand with AC, ZP 0017", // op 0017
"AND 0020 ;AND operand with AC, ZP 0020", // op 0020
"AND 0021 ;AND operand with AC, ZP 0021", // op 0021
"AND 0022 ;AND operand with AC, ZP 0022", // op 0022
"AND 0023 ;AND operand with AC, ZP 0023", // op 0023
"AND 0024 ;AND operand with AC, ZP 0024", // op 0024
"AND 0025 ;AND operand with AC, ZP 0025", // op 0025
"AND 0026 ;AND operand with AC, ZP 0026", // op 0026
"AND 0027 ;AND operand with AC, ZP 0027", // op 0027
"AND 0030 ;AND operand with AC, ZP 0030", // op 0030
"AND 0031 ;AND operand with AC, ZP 0031", // op 0031
"AND 0032 ;AND operand with AC, ZP 0032", // op 0032
"AND 0033 ;AND operand with AC, ZP 0033", // op 0033
"AND 0034 ;AND operand with AC, ZP 0034", // op 0034
"AND 0035 ;AND operand with AC, ZP 0035", // op 0035
"AND 0036 ;AND operand with AC, ZP 0036", // op 0036
"AND 0037 ;AND operand with AC, ZP 0037", // op 0037
"AND 0040 ;AND operand with AC, ZP 0040", // op 0040
"AND 0041 ;AND operand with AC, ZP 0041", // op 0041
"AND 0042 ;AND operand with AC, ZP 0042", // op 0042
"AND 0043 ;AND operand with AC, ZP 0043", // op 0043
"AND 0044 ;AND operand with AC, ZP 0044", // op 0044
"AND 0045 ;AND operand with AC, ZP 0045", // op 0045
"AND 0046 ;AND operand with AC, ZP 0046", // op 0046
"AND 0047 ;AND operand with AC, ZP 0047", // op 0047
"AND 0050 ;AND operand with AC, ZP 0050", // op 0050
"AND 0051 ;AND operand with AC, ZP 0051", // op 0051
"AND 0052 ;AND operand with AC, ZP 0052", // op 0052
"AND 0053 ;AND operand with AC, ZP 0053", // op 0053
"AND 0054 ;AND operand with AC, ZP 0054", // op 0054
"AND 0055 ;AND operand with AC, ZP 0055", // op 0055
"AND 0056 ;AND operand with AC, ZP 0056", // op 0056
"AND 0057 ;AND operand with AC, ZP 0057", // op 0057
"AND 0060 ;AND operand with AC, ZP 0060", // op 0060
"AND 0061 ;AND operand with AC, ZP 0061", // op 0061
"AND 0062 ;AND operand with AC, ZP 0062", // op 0062
"AND 0063 ;AND operand with AC, ZP 0063", // op 0063
"AND 0064 ;AND operand with AC, ZP 0064", // op 0064
"AND 0065 ;AND operand with AC, ZP 0065", // op 0065
"AND 0066 ;AND operand with AC, ZP 0066", // op 0066
"AND 0067 ;AND operand with AC, ZP 0067", // op 0067
"AND 0070 ;AND operand with AC, ZP 0070", // op 0070
"AND 0071 ;AND operand with AC, ZP 0071", // op 0071
"AND 0072 ;AND operand with AC, ZP 0072", // op 0072
"AND 0073 ;AND operand with AC, ZP 0073", // op 0073
"AND 0074 ;AND operand with AC, ZP 0074", // op 0074
"AND 0075 ;AND operand with AC, ZP 0075", // op 0075
"AND 0076 ;AND operand with AC, ZP 0076", // op 0076
"AND 0077 ;AND operand with AC, ZP 0077", // op 0077
"AND 0100 ;AND operand with AC, ZP 0100", // op 0100
"AND 0101 ;AND operand with AC, ZP 0101", // op 0101
"AND 0102 ;AND operand with AC, ZP 0102", // op 0102
"AND 0103 ;AND operand with AC, ZP 0103", // op 0103
"AND 0104 ;AND operand with AC, ZP 0104", // op 0104
"AND 0105 ;AND operand with AC, ZP 0105", // op 0105
"AND 0106 ;AND operand with AC, ZP 0106", // op 0106
"AND 0107 ;AND operand with AC, ZP 0107", // op 0107
"AND 0110 ;AND operand with AC, ZP 0110", // op 0110
"AND 0111 ;AND operand with AC, ZP 0111", // op 0111
"AND 0112 ;AND operand with AC, ZP 0112", // op 0112
"AND 0113 ;AND operand with AC, ZP 0113", // op 0113
"AND 0114 ;AND operand with AC, ZP 0114", // op 0114
"AND 0115 ;AND operand with AC, ZP 0115", // op 0115
"AND 0116 ;AND operand with AC, ZP 0116", // op 0116
"AND 0117 ;AND operand with AC, ZP 0117", // op 0117
"AND 0120 ;AND operand with AC, ZP 0120", // op 0120
"AND 0121 ;AND operand with AC, ZP 0121", // op 0121
"AND 0122 ;AND operand with AC, ZP 0122", // op 0122
"AND 0123 ;AND operand with AC, ZP 0123", // op 0123
"AND 0124 ;AND operand with AC, ZP 0124", // op 0124
"AND 0125 ;AND operand with AC, ZP 0125", // op 0125
"AND 0126 ;AND operand with AC, ZP 0126", // op 0126
"AND 0127 ;AND operand with AC, ZP 0127", // op 0127
"AND 0130 ;AND operand with AC, ZP 0130", // op 0130
"AND 0131 ;AND operand with AC, ZP 0131", // op 0131
"AND 0132 ;AND operand with AC, ZP 0132", // op 0132
"AND 0133 ;AND operand with AC, ZP 0133", // op 0133
"AND 0134 ;AND operand with AC, ZP 0134", // op 0134
"AND 0135 ;AND operand with AC, ZP 0135", // op 0135
"AND 0136 ;AND operand with AC, ZP 0136", // op 0136
"AND 0137 ;AND operand with AC, ZP 0137", // op 0137
"AND 0140 ;AND operand with AC, ZP 0140", // op 0140
"AND 0141 ;AND operand with AC, ZP 0141", // op 0141
"AND 0142 ;AND operand with AC, ZP 0142", // op 0142
"AND 0143 ;AND operand with AC, ZP 0143", // op 0143
"AND 0144 ;AND operand with AC, ZP 0144", // op 0144
"AND 0145 ;AND operand with AC, ZP 0145", // op 0145
"AND 0146 ;AND operand with AC, ZP 0146", // op 0146
"AND 0147 ;AND operand with AC, ZP 0147", // op 0147
"AND 0150 ;AND operand with AC, ZP 0150", // op 0150
"AND 0151 ;AND operand with AC, ZP 0151", // op 0151
"AND 0152 ;AND operand with AC, ZP 0152", // op 0152
"AND 0153 ;AND operand with AC, ZP 0153", // op 0153
"AND 0154 ;AND operand with AC, ZP 0154", // op 0154
"AND 0155 ;AND operand with AC, ZP 0155", // op 0155
"AND 0156 ;AND operand with AC, ZP 0156", // op 0156
"AND 0157 ;AND operand with AC, ZP 0157", // op 0157
"AND 0160 ;AND operand with AC, ZP 0160", // op 0160
"AND 0161 ;AND operand with AC, ZP 0161", // op 0161
"AND 0162 ;AND operand with AC, ZP 0162", // op 0162
"AND 0163 ;AND operand with AC, ZP 0163", // op 0163
"AND 0164 ;AND operand with AC, ZP 0164", // op 0164
"AND 0165 ;AND operand with AC, ZP 0165", // op 0165
"AND 0166 ;AND operand with AC, ZP 0166", // op 0166
"AND 0167 ;AND operand with AC, ZP 0167", // op 0167
"AND 0170 ;AND operand with AC, ZP 0170", // op 0170
"AND 0171 ;AND operand with AC, ZP 0171", // op 0171
"AND 0172 ;AND operand with AC, ZP 0172", // op 0172
"AND 0173 ;AND operand with AC, ZP 0173", // op 0173
"AND 0174 ;AND operand with AC, ZP 0174", // op 0174
"AND 0175 ;AND operand with AC, ZP 0175", // op 0175
"AND 0176 ;AND operand with AC, ZP 0176", // op 0176
"AND 0177 ;AND operand with AC, ZP 0177", // op 0177
"AND @@00 ;AND operand with AC, Current page @@00", // op 0200
"AND @@01 ;AND operand with AC, Current page @@01", // op 0201
"AND @@02 ;AND operand with AC, Current page @@02", // op 0202
"AND @@03 ;AND operand with AC, Current page @@03", // op 0203
"AND @@04 ;AND operand with AC, Current page @@04", // op 0204
"AND @@05 ;AND operand with AC, Current page @@05", // op 0205
"AND @@06 ;AND operand with AC, Current page @@06", // op 0206
"AND @@07 ;AND operand with AC, Current page @@07", // op 0207
"AND @@10 ;AND operand with AC, Current page @@10", // op 0210
"AND @@11 ;AND operand with AC, Current page @@11", // op 0211
"AND @@12 ;AND operand with AC, Current page @@12", // op 0212
"AND @@13 ;AND operand with AC, Current page @@13", // op 0213
"AND @@14 ;AND operand with AC, Current page @@14", // op 0214
"AND @@15 ;AND operand with AC, Current page @@15", // op 0215
"AND @@16 ;AND operand with AC, Current page @@16", // op 0216
"AND @@17 ;AND operand with AC, Current page @@17", // op 0217
"AND @@20 ;AND operand with AC, Current page @@20", // op 0220
"AND @@21 ;AND operand with AC, Current page @@21", // op 0221
"AND @@22 ;AND operand with AC, Current page @@22", // op 0222
"AND @@23 ;AND operand with AC, Current page @@23", // op 0223
"AND @@24 ;AND operand with AC, Current page @@24", // op 0224
"AND @@25 ;AND operand with AC, Current page @@25", // op 0225
"AND @@26 ;AND operand with AC, Current page @@26", // op 0226
"AND @@27 ;AND operand with AC, Current page @@27", // op 0227
"AND @@30 ;AND operand with AC, Current page @@30", // op 0230
"AND @@31 ;AND operand with AC, Current page @@31", // op 0231
"AND @@32 ;AND operand with AC, Current page @@32", // op 0232
"AND @@33 ;AND operand with AC, Current page @@33", // op 0233
"AND @@34 ;AND operand with AC, Current page @@34", // op 0234
"AND @@35 ;AND operand with AC, Current page @@35", // op 0235
"AND @@36 ;AND operand with AC, Current page @@36", // op 0236
"AND @@37 ;AND operand with AC, Current page @@37", // op 0237
"AND @@40 ;AND operand with AC, Current page @@40", // op 0240
"AND @@41 ;AND operand with AC, Current page @@41", // op 0241
"AND @@42 ;AND operand with AC, Current page @@42", // op 0242
"AND @@43 ;AND operand with AC, Current page @@43", // op 0243
"AND @@44 ;AND operand with AC, Current page @@44", // op 0244
"AND @@45 ;AND operand with AC, Current page @@45", // op 0245
"AND @@46 ;AND operand with AC, Current page @@46", // op 0246
"AND @@47 ;AND operand with AC, Current page @@47", // op 0247
"AND @@50 ;AND operand with AC, Current page @@50", // op 0250
"AND @@51 ;AND operand with AC, Current page @@51", // op 0251
"AND @@52 ;AND operand with AC, Current page @@52", // op 0252
"AND @@53 ;AND operand with AC, Current page @@53", // op 0253
"AND @@54 ;AND operand with AC, Current page @@54", // op 0254
"AND @@55 ;AND operand with AC, Current page @@55", // op 0255
"AND @@56 ;AND operand with AC, Current page @@56", // op 0256
"AND @@57 ;AND operand with AC, Current page @@57", // op 0257
"AND @@60 ;AND operand with AC, Current page @@60", // op 0260
"AND @@61 ;AND operand with AC, Current page @@61", // op 0261
"AND @@62 ;AND operand with AC, Current page @@62", // op 0262
"AND @@63 ;AND operand with AC, Current page @@63", // op 0263
"AND @@64 ;AND operand with AC, Current page @@64", // op 0264
"AND @@65 ;AND operand with AC, Current page @@65", // op 0265
"AND @@66 ;AND operand with AC, Current page @@66", // op 0266
"AND @@67 ;AND operand with AC, Current page @@67", // op 0267
"AND @@70 ;AND operand with AC, Current page @@70", // op 0270
"AND @@71 ;AND operand with AC, Current page @@71", // op 0271
"AND @@72 ;AND operand with AC, Current page @@72", // op 0272
"AND @@73 ;AND operand with AC, Current page @@73", // op 0273
"AND @@74 ;AND operand with AC, Current page @@74", // op 0274
"AND @@75 ;AND operand with AC, Current page @@75", // op 0275
"AND @@76 ;AND operand with AC, Current page @@76", // op 0276
"AND @@77 ;AND operand with AC, Current page @@77", // op 0277
"AND @@100 ;AND operand with AC, Current page @@100", // op 0300
"AND @@101 ;AND operand with AC, Current page @@101", // op 0301
"AND @@102 ;AND operand with AC, Current page @@102", // op 0302
"AND @@103 ;AND operand with AC, Current page @@103", // op 0303
"AND @@104 ;AND operand with AC, Current page @@104", // op 0304
"AND @@105 ;AND operand with AC, Current page @@105", // op 0305
"AND @@106 ;AND operand with AC, Current page @@106", // op 0306
"AND @@107 ;AND operand with AC, Current page @@107", // op 0307
"AND @@110 ;AND operand with AC, Current page @@110", // op 0310
"AND @@111 ;AND operand with AC, Current page @@111", // op 0311
"AND @@112 ;AND operand with AC, Current page @@112", // op 0312
"AND @@113 ;AND operand with AC, Current page @@113", // op 0313
"AND @@114 ;AND operand with AC, Current page @@114", // op 0314
"AND @@115 ;AND operand with AC, Current page @@115", // op 0315
"AND @@116 ;AND operand with AC, Current page @@116", // op 0316
"AND @@117 ;AND operand with AC, Current page @@117", // op 0317
"AND @@120 ;AND operand with AC, Current page @@120", // op 0320
"AND @@121 ;AND operand with AC, Current page @@121", // op 0321
"AND @@122 ;AND operand with AC, Current page @@122", // op 0322
"AND @@123 ;AND operand with AC, Current page @@123", // op 0323
"AND @@124 ;AND operand with AC, Current page @@124", // op 0324
"AND @@125 ;AND operand with AC, Current page @@125", // op 0325
"AND @@126 ;AND operand with AC, Current page @@126", // op 0326
"AND @@127 ;AND operand with AC, Current page @@127", // op 0327
"AND @@130 ;AND operand with AC, Current page @@130", // op 0330
"AND @@131 ;AND operand with AC, Current page @@131", // op 0331
"AND @@132 ;AND operand with AC, Current page @@132", // op 0332
"AND @@133 ;AND operand with AC, Current page @@133", // op 0333
"AND @@134 ;AND operand with AC, Current page @@134", // op 0334
"AND @@135 ;AND operand with AC, Current page @@135", // op 0335
"AND @@136 ;AND operand with AC, Current page @@136", // op 0336
"AND @@137 ;AND operand with AC, Current page @@137", // op 0337
"AND @@140 ;AND operand with AC, Current page @@140", // op 0340
"AND @@141 ;AND operand with AC, Current page @@141", // op 0341
"AND @@142 ;AND operand with AC, Current page @@142", // op 0342
"AND @@143 ;AND operand with AC, Current page @@143", // op 0343
"AND @@144 ;AND operand with AC, Current page @@144", // op 0344
"AND @@145 ;AND operand with AC, Current page @@145", // op 0345
"AND @@146 ;AND operand with AC, Current page @@146", // op 0346
"AND @@147 ;AND operand with AC, Current page @@147", // op 0347
"AND @@150 ;AND operand with AC, Current page @@150", // op 0350
"AND @@151 ;AND operand with AC, Current page @@151", // op 0351
"AND @@152 ;AND operand with AC, Current page @@152", // op 0352
"AND @@153 ;AND operand with AC, Current page @@153", // op 0353
"AND @@154 ;AND operand with AC, Current page @@154", // op 0354
"AND @@155 ;AND operand with AC, Current page @@155", // op 0355
"AND @@156 ;AND operand with AC, Current page @@156", // op 0356
"AND @@157 ;AND operand with AC, Current page @@157", // op 0357
"AND @@160 ;AND operand with AC, Current page @@160", // op 0360
"AND @@161 ;AND operand with AC, Current page @@161", // op 0361
"AND @@162 ;AND operand with AC, Current page @@162", // op 0362
"AND @@163 ;AND operand with AC, Current page @@163", // op 0363
"AND @@164 ;AND operand with AC, Current page @@164", // op 0364
"AND @@165 ;AND operand with AC, Current page @@165", // op 0365
"AND @@166 ;AND operand with AC, Current page @@166", // op 0366
"AND @@167 ;AND operand with AC, Current page @@167", // op 0367
"AND @@170 ;AND operand with AC, Current page @@170", // op 0370
"AND @@171 ;AND operand with AC, Current page @@171", // op 0371
"AND @@172 ;AND operand with AC, Current page @@172", // op 0372
"AND @@173 ;AND operand with AC, Current page @@173", // op 0373
"AND @@174 ;AND operand with AC, Current page @@174", // op 0374
"AND @@175 ;AND operand with AC, Current page @@175", // op 0375
"AND @@176 ;AND operand with AC, Current page @@176", // op 0376
"AND @@177 ;AND operand with AC, Current page @@177", // op 0377
"AND I 0000 ;AND operand with AC, Indexed ZP 0000", // op 0400
"AND I 0001 ;AND operand with AC, Indexed ZP 0001", // op 0401
"AND I 0002 ;AND operand with AC, Indexed ZP 0002", // op 0402
"AND I 0003 ;AND operand with AC, Indexed ZP 0003", // op 0403
"AND I 0004 ;AND operand with AC, Indexed ZP 0004", // op 0404
"AND I 0005 ;AND operand with AC, Indexed ZP 0005", // op 0405
"AND I 0006 ;AND operand with AC, Indexed ZP 0006", // op 0406
"AND I 0007 ;AND operand with AC, Indexed ZP 0007", // op 0407
"AND I 0010 ;AND operand with AC, Indexed ZP 0010 [Auto pre-inc]", // op 0410
"AND I 0011 ;AND operand with AC, Indexed ZP 0011 [Auto pre-inc]", // op 0411
"AND I 0012 ;AND operand with AC, Indexed ZP 0012 [Auto pre-inc]", // op 0412
"AND I 0013 ;AND operand with AC, Indexed ZP 0013 [Auto pre-inc]", // op 0413
"AND I 0014 ;AND operand with AC, Indexed ZP 0014 [Auto pre-inc]", // op 0414
"AND I 0015 ;AND operand with AC, Indexed ZP 0015 [Auto pre-inc]", // op 0415
"AND I 0016 ;AND operand with AC, Indexed ZP 0016 [Auto pre-inc]", // op 0416
"AND I 0017 ;AND operand with AC, Indexed ZP 0017 [Auto pre-inc]", // op 0417
"AND I 0020 ;AND operand with AC, Indexed ZP 0020", // op 0420
"AND I 0021 ;AND operand with AC, Indexed ZP 0021", // op 0421
"AND I 0022 ;AND operand with AC, Indexed ZP 0022", // op 0422
"AND I 0023 ;AND operand with AC, Indexed ZP 0023", // op 0423
"AND I 0024 ;AND operand with AC, Indexed ZP 0024", // op 0424
"AND I 0025 ;AND operand with AC, Indexed ZP 0025", // op 0425
"AND I 0026 ;AND operand with AC, Indexed ZP 0026", // op 0426
"AND I 0027 ;AND operand with AC, Indexed ZP 0027", // op 0427
"AND I 0030 ;AND operand with AC, Indexed ZP 0030", // op 0430
"AND I 0031 ;AND operand with AC, Indexed ZP 0031", // op 0431
"AND I 0032 ;AND operand with AC, Indexed ZP 0032", // op 0432
"AND I 0033 ;AND operand with AC, Indexed ZP 0033", // op 0433
"AND I 0034 ;AND operand with AC, Indexed ZP 0034", // op 0434
"AND I 0035 ;AND operand with AC, Indexed ZP 0035", // op 0435
"AND I 0036 ;AND operand with AC, Indexed ZP 0036", // op 0436
"AND I 0037 ;AND operand with AC, Indexed ZP 0037", // op 0437
"AND I 0040 ;AND operand with AC, Indexed ZP 0040", // op 0440
"AND I 0041 ;AND operand with AC, Indexed ZP 0041", // op 0441
"AND I 0042 ;AND operand with AC, Indexed ZP 0042", // op 0442
"AND I 0043 ;AND operand with AC, Indexed ZP 0043", // op 0443
"AND I 0044 ;AND operand with AC, Indexed ZP 0044", // op 0444
"AND I 0045 ;AND operand with AC, Indexed ZP 0045", // op 0445
"AND I 0046 ;AND operand with AC, Indexed ZP 0046", // op 0446
"AND I 0047 ;AND operand with AC, Indexed ZP 0047", // op 0447
"AND I 0050 ;AND operand with AC, Indexed ZP 0050", // op 0450
"AND I 0051 ;AND operand with AC, Indexed ZP 0051", // op 0451
"AND I 0052 ;AND operand with AC, Indexed ZP 0052", // op 0452
"AND I 0053 ;AND operand with AC, Indexed ZP 0053", // op 0453
"AND I 0054 ;AND operand with AC, Indexed ZP 0054", // op 0454
"AND I 0055 ;AND operand with AC, Indexed ZP 0055", // op 0455
"AND I 0056 ;AND operand with AC, Indexed ZP 0056", // op 0456
"AND I 0057 ;AND operand with AC, Indexed ZP 0057", // op 0457
"AND I 0060 ;AND operand with AC, Indexed ZP 0060", // op 0460
"AND I 0061 ;AND operand with AC, Indexed ZP 0061", // op 0461
"AND I 0062 ;AND operand with AC, Indexed ZP 0062", // op 0462
"AND I 0063 ;AND operand with AC, Indexed ZP 0063", // op 0463
"AND I 0064 ;AND operand with AC, Indexed ZP 0064", // op 0464
"AND I 0065 ;AND operand with AC, Indexed ZP 0065", // op 0465
"AND I 0066 ;AND operand with AC, Indexed ZP 0066", // op 0466
"AND I 0067 ;AND operand with AC, Indexed ZP 0067", // op 0467
"AND I 0070 ;AND operand with AC, Indexed ZP 0070", // op 0470
"AND I 0071 ;AND operand with AC, Indexed ZP 0071", // op 0471
"AND I 0072 ;AND operand with AC, Indexed ZP 0072", // op 0472
"AND I 0073 ;AND operand with AC, Indexed ZP 0073", // op 0473
"AND I 0074 ;AND operand with AC, Indexed ZP 0074", // op 0474
"AND I 0075 ;AND operand with AC, Indexed ZP 0075", // op 0475
"AND I 0076 ;AND operand with AC, Indexed ZP 0076", // op 0476
"AND I 0077 ;AND operand with AC, Indexed ZP 0077", // op 0477
"AND I 0100 ;AND operand with AC, Indexed ZP 0100", // op 0500
"AND I 0101 ;AND operand with AC, Indexed ZP 0101", // op 0501
"AND I 0102 ;AND operand with AC, Indexed ZP 0102", // op 0502
"AND I 0103 ;AND operand with AC, Indexed ZP 0103", // op 0503
"AND I 0104 ;AND operand with AC, Indexed ZP 0104", // op 0504
"AND I 0105 ;AND operand with AC, Indexed ZP 0105", // op 0505
"AND I 0106 ;AND operand with AC, Indexed ZP 0106", // op 0506
"AND I 0107 ;AND operand with AC, Indexed ZP 0107", // op 0507
"AND I 0110 ;AND operand with AC, Indexed ZP 0110", // op 0510
"AND I 0111 ;AND operand with AC, Indexed ZP 0111", // op 0511
"AND I 0112 ;AND operand with AC, Indexed ZP 0112", // op 0512
"AND I 0113 ;AND operand with AC, Indexed ZP 0113", // op 0513
"AND I 0114 ;AND operand with AC, Indexed ZP 0114", // op 0514
"AND I 0115 ;AND operand with AC, Indexed ZP 0115", // op 0515
"AND I 0116 ;AND operand with AC, Indexed ZP 0116", // op 0516
"AND I 0117 ;AND operand with AC, Indexed ZP 0117", // op 0517
"AND I 0120 ;AND operand with AC, Indexed ZP 0120", // op 0520
"AND I 0121 ;AND operand with AC, Indexed ZP 0121", // op 0521
"AND I 0122 ;AND operand with AC, Indexed ZP 0122", // op 0522
"AND I 0123 ;AND operand with AC, Indexed ZP 0123", // op 0523
"AND I 0124 ;AND operand with AC, Indexed ZP 0124", // op 0524
"AND I 0125 ;AND operand with AC, Indexed ZP 0125", // op 0525
"AND I 0126 ;AND operand with AC, Indexed ZP 0126", // op 0526
"AND I 0127 ;AND operand with AC, Indexed ZP 0127", // op 0527
"AND I 0130 ;AND operand with AC, Indexed ZP 0130", // op 0530
"AND I 0131 ;AND operand with AC, Indexed ZP 0131", // op 0531
"AND I 0132 ;AND operand with AC, Indexed ZP 0132", // op 0532
"AND I 0133 ;AND operand with AC, Indexed ZP 0133", // op 0533
"AND I 0134 ;AND operand with AC, Indexed ZP 0134", // op 0534
"AND I 0135 ;AND operand with AC, Indexed ZP 0135", // op 0535
"AND I 0136 ;AND operand with AC, Indexed ZP 0136", // op 0536
"AND I 0137 ;AND operand with AC, Indexed ZP 0137", // op 0537
"AND I 0140 ;AND operand with AC, Indexed ZP 0140", // op 0540
"AND I 0141 ;AND operand with AC, Indexed ZP 0141", // op 0541
"AND I 0142 ;AND operand with AC, Indexed ZP 0142", // op 0542
"AND I 0143 ;AND operand with AC, Indexed ZP 0143", // op 0543
"AND I 0144 ;AND operand with AC, Indexed ZP 0144", // op 0544
"AND I 0145 ;AND operand with AC, Indexed ZP 0145", // op 0545
"AND I 0146 ;AND operand with AC, Indexed ZP 0146", // op 0546
"AND I 0147 ;AND operand with AC, Indexed ZP 0147", // op 0547
"AND I 0150 ;AND operand with AC, Indexed ZP 0150", // op 0550
"AND I 0151 ;AND operand with AC, Indexed ZP 0151", // op 0551
"AND I 0152 ;AND operand with AC, Indexed ZP 0152", // op 0552
"AND I 0153 ;AND operand with AC, Indexed ZP 0153", // op 0553
"AND I 0154 ;AND operand with AC, Indexed ZP 0154", // op 0554
"AND I 0155 ;AND operand with AC, Indexed ZP 0155", // op 0555
"AND I 0156 ;AND operand with AC, Indexed ZP 0156", // op 0556
"AND I 0157 ;AND operand with AC, Indexed ZP 0157", // op 0557
"AND I 0160 ;AND operand with AC, Indexed ZP 0160", // op 0560
"AND I 0161 ;AND operand with AC, Indexed ZP 0161", // op 0561
"AND I 0162 ;AND operand with AC, Indexed ZP 0162", // op 0562
"AND I 0163 ;AND operand with AC, Indexed ZP 0163", // op 0563
"AND I 0164 ;AND operand with AC, Indexed ZP 0164", // op 0564
"AND I 0165 ;AND operand with AC, Indexed ZP 0165", // op 0565
"AND I 0166 ;AND operand with AC, Indexed ZP 0166", // op 0566
"AND I 0167 ;AND operand with AC, Indexed ZP 0167", // op 0567
"AND I 0170 ;AND operand with AC, Indexed ZP 0170", // op 0570
"AND I 0171 ;AND operand with AC, Indexed ZP 0171", // op 0571
"AND I 0172 ;AND operand with AC, Indexed ZP 0172", // op 0572
"AND I 0173 ;AND operand with AC, Indexed ZP 0173", // op 0573
"AND I 0174 ;AND operand with AC, Indexed ZP 0174", // op 0574
"AND I 0175 ;AND operand with AC, Indexed ZP 0175", // op 0575
"AND I 0176 ;AND operand with AC, Indexed ZP 0176", // op 0576
"AND I 0177 ;AND operand with AC, Indexed ZP 0177", // op 0577
"AND I @@00 ;AND operand with AC, Indexed Current page @@00", // op 0600
"AND I @@01 ;AND operand with AC, Indexed Current page @@01", // op 0601
"AND I @@02 ;AND operand with AC, Indexed Current page @@02", // op 0602
"AND I @@03 ;AND operand with AC, Indexed Current page @@03", // op 0603
"AND I @@04 ;AND operand with AC, Indexed Current page @@04", // op 0604
"AND I @@05 ;AND operand with AC, Indexed Current page @@05", // op 0605
"AND I @@06 ;AND operand with AC, Indexed Current page @@06", // op 0606
"AND I @@07 ;AND operand with AC, Indexed Current page @@07", // op 0607
"AND I @@10 ;AND operand with AC, Indexed Current page @@10", // op 0610
"AND I @@11 ;AND operand with AC, Indexed Current page @@11", // op 0611
"AND I @@12 ;AND operand with AC, Indexed Current page @@12", // op 0612
"AND I @@13 ;AND operand with AC, Indexed Current page @@13", // op 0613
"AND I @@14 ;AND operand with AC, Indexed Current page @@14", // op 0614
"AND I @@15 ;AND operand with AC, Indexed Current page @@15", // op 0615
"AND I @@16 ;AND operand with AC, Indexed Current page @@16", // op 0616
"AND I @@17 ;AND operand with AC, Indexed Current page @@17", // op 0617
"AND I @@20 ;AND operand with AC, Indexed Current page @@20", // op 0620
"AND I @@21 ;AND operand with AC, Indexed Current page @@21", // op 0621
"AND I @@22 ;AND operand with AC, Indexed Current page @@22", // op 0622
"AND I @@23 ;AND operand with AC, Indexed Current page @@23", // op 0623
"AND I @@24 ;AND operand with AC, Indexed Current page @@24", // op 0624
"AND I @@25 ;AND operand with AC, Indexed Current page @@25", // op 0625
"AND I @@26 ;AND operand with AC, Indexed Current page @@26", // op 0626
"AND I @@27 ;AND operand with AC, Indexed Current page @@27", // op 0627
"AND I @@30 ;AND operand with AC, Indexed Current page @@30", // op 0630
"AND I @@31 ;AND operand with AC, Indexed Current page @@31", // op 0631
"AND I @@32 ;AND operand with AC, Indexed Current page @@32", // op 0632
"AND I @@33 ;AND operand with AC, Indexed Current page @@33", // op 0633
"AND I @@34 ;AND operand with AC, Indexed Current page @@34", // op 0634
"AND I @@35 ;AND operand with AC, Indexed Current page @@35", // op 0635
"AND I @@36 ;AND operand with AC, Indexed Current page @@36", // op 0636
"AND I @@37 ;AND operand with AC, Indexed Current page @@37", // op 0637
"AND I @@40 ;AND operand with AC, Indexed Current page @@40", // op 0640
"AND I @@41 ;AND operand with AC, Indexed Current page @@41", // op 0641
"AND I @@42 ;AND operand with AC, Indexed Current page @@42", // op 0642
"AND I @@43 ;AND operand with AC, Indexed Current page @@43", // op 0643
"AND I @@44 ;AND operand with AC, Indexed Current page @@44", // op 0644
"AND I @@45 ;AND operand with AC, Indexed Current page @@45", // op 0645
"AND I @@46 ;AND operand with AC, Indexed Current page @@46", // op 0646
"AND I @@47 ;AND operand with AC, Indexed Current page @@47", // op 0647
"AND I @@50 ;AND operand with AC, Indexed Current page @@50", // op 0650
"AND I @@51 ;AND operand with AC, Indexed Current page @@51", // op 0651
"AND I @@52 ;AND operand with AC, Indexed Current page @@52", // op 0652
"AND I @@53 ;AND operand with AC, Indexed Current page @@53", // op 0653
"AND I @@54 ;AND operand with AC, Indexed Current page @@54", // op 0654
"AND I @@55 ;AND operand with AC, Indexed Current page @@55", // op 0655
"AND I @@56 ;AND operand with AC, Indexed Current page @@56", // op 0656
"AND I @@57 ;AND operand with AC, Indexed Current page @@57", // op 0657
"AND I @@60 ;AND operand with AC, Indexed Current page @@60", // op 0660
"AND I @@61 ;AND operand with AC, Indexed Current page @@61", // op 0661
"AND I @@62 ;AND operand with AC, Indexed Current page @@62", // op 0662
"AND I @@63 ;AND operand with AC, Indexed Current page @@63", // op 0663
"AND I @@64 ;AND operand with AC, Indexed Current page @@64", // op 0664
"AND I @@65 ;AND operand with AC, Indexed Current page @@65", // op 0665
"AND I @@66 ;AND operand with AC, Indexed Current page @@66", // op 0666
"AND I @@67 ;AND operand with AC, Indexed Current page @@67", // op 0667
"AND I @@70 ;AND operand with AC, Indexed Current page @@70", // op 0670
"AND I @@71 ;AND operand with AC, Indexed Current page @@71", // op 0671
"AND I @@72 ;AND operand with AC, Indexed Current page @@72", // op 0672
"AND I @@73 ;AND operand with AC, Indexed Current page @@73", // op 0673
"AND I @@74 ;AND operand with AC, Indexed Current page @@74", // op 0674
"AND I @@75 ;AND operand with AC, Indexed Current page @@75", // op 0675
"AND I @@76 ;AND operand with AC, Indexed Current page @@76", // op 0676
"AND I @@77 ;AND operand with AC, Indexed Current page @@77", // op 0677
"AND I @@100 ;AND operand with AC, Indexed Current page @@100", // op 0700
"AND I @@101 ;AND operand with AC, Indexed Current page @@101", // op 0701
"AND I @@102 ;AND operand with AC, Indexed Current page @@102", // op 0702
"AND I @@103 ;AND operand with AC, Indexed Current page @@103", // op 0703
"AND I @@104 ;AND operand with AC, Indexed Current page @@104", // op 0704
"AND I @@105 ;AND operand with AC, Indexed Current page @@105", // op 0705
"AND I @@106 ;AND operand with AC, Indexed Current page @@106", // op 0706
"AND I @@107 ;AND operand with AC, Indexed Current page @@107", // op 0707
"AND I @@110 ;AND operand with AC, Indexed Current page @@110", // op 0710
"AND I @@111 ;AND operand with AC, Indexed Current page @@111", // op 0711
"AND I @@112 ;AND operand with AC, Indexed Current page @@112", // op 0712
"AND I @@113 ;AND operand with AC, Indexed Current page @@113", // op 0713
"AND I @@114 ;AND operand with AC, Indexed Current page @@114", // op 0714
"AND I @@115 ;AND operand with AC, Indexed Current page @@115", // op 0715
"AND I @@116 ;AND operand with AC, Indexed Current page @@116", // op 0716
"AND I @@117 ;AND operand with AC, Indexed Current page @@117", // op 0717
"AND I @@120 ;AND operand with AC, Indexed Current page @@120", // op 0720
"AND I @@121 ;AND operand with AC, Indexed Current page @@121", // op 0721
"AND I @@122 ;AND operand with AC, Indexed Current page @@122", // op 0722
"AND I @@123 ;AND operand with AC, Indexed Current page @@123", // op 0723
"AND I @@124 ;AND operand with AC, Indexed Current page @@124", // op 0724
"AND I @@125 ;AND operand with AC, Indexed Current page @@125", // op 0725
"AND I @@126 ;AND operand with AC, Indexed Current page @@126", // op 0726
"AND I @@127 ;AND operand with AC, Indexed Current page @@127", // op 0727
"AND I @@130 ;AND operand with AC, Indexed Current page @@130", // op 0730
"AND I @@131 ;AND operand with AC, Indexed Current page @@131", // op 0731
"AND I @@132 ;AND operand with AC, Indexed Current page @@132", // op 0732
"AND I @@133 ;AND operand with AC, Indexed Current page @@133", // op 0733
"AND I @@134 ;AND operand with AC, Indexed Current page @@134", // op 0734
"AND I @@135 ;AND operand with AC, Indexed Current page @@135", // op 0735
"AND I @@136 ;AND operand with AC, Indexed Current page @@136", // op 0736
"AND I @@137 ;AND operand with AC, Indexed Current page @@137", // op 0737
"AND I @@140 ;AND operand with AC, Indexed Current page @@140", // op 0740
"AND I @@141 ;AND operand with AC, Indexed Current page @@141", // op 0741
"AND I @@142 ;AND operand with AC, Indexed Current page @@142", // op 0742
"AND I @@143 ;AND operand with AC, Indexed Current page @@143", // op 0743
"AND I @@144 ;AND operand with AC, Indexed Current page @@144", // op 0744
"AND I @@145 ;AND operand with AC, Indexed Current page @@145", // op 0745
"AND I @@146 ;AND operand with AC, Indexed Current page @@146", // op 0746
"AND I @@147 ;AND operand with AC, Indexed Current page @@147", // op 0747
"AND I @@150 ;AND operand with AC, Indexed Current page @@150", // op 0750
"AND I @@151 ;AND operand with AC, Indexed Current page @@151", // op 0751
"AND I @@152 ;AND operand with AC, Indexed Current page @@152", // op 0752
"AND I @@153 ;AND operand with AC, Indexed Current page @@153", // op 0753
"AND I @@154 ;AND operand with AC, Indexed Current page @@154", // op 0754
"AND I @@155 ;AND operand with AC, Indexed Current page @@155", // op 0755
"AND I @@156 ;AND operand with AC, Indexed Current page @@156", // op 0756
"AND I @@157 ;AND operand with AC, Indexed Current page @@157", // op 0757
"AND I @@160 ;AND operand with AC, Indexed Current page @@160", // op 0760
"AND I @@161 ;AND operand with AC, Indexed Current page @@161", // op 0761
"AND I @@162 ;AND operand with AC, Indexed Current page @@162", // op 0762
"AND I @@163 ;AND operand with AC, Indexed Current page @@163", // op 0763
"AND I @@164 ;AND operand with AC, Indexed Current page @@164", // op 0764
"AND I @@165 ;AND operand with AC, Indexed Current page @@165", // op 0765
"AND I @@166 ;AND operand with AC, Indexed Current page @@166", // op 0766
"AND I @@167 ;AND operand with AC, Indexed Current page @@167", // op 0767
"AND I @@170 ;AND operand with AC, Indexed Current page @@170", // op 0770
"AND I @@171 ;AND operand with AC, Indexed Current page @@171", // op 0771
"AND I @@172 ;AND operand with AC, Indexed Current page @@172", // op 0772
"AND I @@173 ;AND operand with AC, Indexed Current page @@173", // op 0773
"AND I @@174 ;AND operand with AC, Indexed Current page @@174", // op 0774
"AND I @@175 ;AND operand with AC, Indexed Current page @@175", // op 0775
"AND I @@176 ;AND operand with AC, Indexed Current page @@176", // op 0776
"AND I @@177 ;AND operand with AC, Indexed Current page @@177", // op 0777
"TAD 0000 ;Add operand to AC, ZP 0000 ", // op 1000
"TAD 0001 ;Add operand to AC, ZP 0001", // op 1001
"TAD 0002 ;Add operand to AC, ZP 0002", // op 1002
"TAD 0003 ;Add operand to AC, ZP 0003", // op 1003
"TAD 0004 ;Add operand to AC, ZP 0004", // op 1004
"TAD 0005 ;Add operand to AC, ZP 0005", // op 1005
"TAD 0006 ;Add operand to AC, ZP 0006", // op 1006
"TAD 0007 ;Add operand to AC, ZP 0007", // op 1007
"TAD 0010 ;Add operand to AC, ZP 0010", // op 1010
"TAD 0011 ;Add operand to AC, ZP 0011", // op 1011
"TAD 0012 ;Add operand to AC, ZP 0012", // op 1012
"TAD 0013 ;Add operand to AC, ZP 0013", // op 1013
"TAD 0014 ;Add operand to AC, ZP 0014", // op 1014
"TAD 0015 ;Add operand to AC, ZP 0015", // op 1015
"TAD 0016 ;Add operand to AC, ZP 0016", // op 1016
"TAD 0017 ;Add operand to AC, ZP 0017", // op 1017
"TAD 0020 ;Add operand to AC, ZP 0020", // op 1020
"TAD 0021 ;Add operand to AC, ZP 0021", // op 1021
"TAD 0022 ;Add operand to AC, ZP 0022", // op 1022
"TAD 0023 ;Add operand to AC, ZP 0023", // op 1023
"TAD 0024 ;Add operand to AC, ZP 0024", // op 1024
"TAD 0025 ;Add operand to AC, ZP 0025", // op 1025
"TAD 0026 ;Add operand to AC, ZP 0026", // op 1026
"TAD 0027 ;Add operand to AC, ZP 0027", // op 1027
"TAD 0030 ;Add operand to AC, ZP 0030", // op 1030
"TAD 0031 ;Add operand to AC, ZP 0031", // op 1031
"TAD 0032 ;Add operand to AC, ZP 0032", // op 1032
"TAD 0033 ;Add operand to AC, ZP 0033", // op 1033
"TAD 0034 ;Add operand to AC, ZP 0034", // op 1034
"TAD 0035 ;Add operand to AC, ZP 0035", // op 1035
"TAD 0036 ;Add operand to AC, ZP 0036", // op 1036
"TAD 0037 ;Add operand to AC, ZP 0037", // op 1037
"TAD 0040 ;Add operand to AC, ZP 0040", // op 1040
"TAD 0041 ;Add operand to AC, ZP 0041", // op 1041
"TAD 0042 ;Add operand to AC, ZP 0042", // op 1042
"TAD 0043 ;Add operand to AC, ZP 0043", // op 1043
"TAD 0044 ;Add operand to AC, ZP 0044", // op 1044
"TAD 0045 ;Add operand to AC, ZP 0045", // op 1045
"TAD 0046 ;Add operand to AC, ZP 0046", // op 1046
"TAD 0047 ;Add operand to AC, ZP 0047", // op 1047
"TAD 0050 ;Add operand to AC, ZP 0050", // op 1050
"TAD 0051 ;Add operand to AC, ZP 0051", // op 1051
"TAD 0052 ;Add operand to AC, ZP 0052", // op 1052
"TAD 0053 ;Add operand to AC, ZP 0053", // op 1053
"TAD 0054 ;Add operand to AC, ZP 0054", // op 1054
"TAD 0055 ;Add operand to AC, ZP 0055", // op 1055
"TAD 0056 ;Add operand to AC, ZP 0056", // op 1056
"TAD 0057 ;Add operand to AC, ZP 0057", // op 1057
"TAD 0060 ;Add operand to AC, ZP 0060", // op 1060
"TAD 0061 ;Add operand to AC, ZP 0061", // op 1061
"TAD 0062 ;Add operand to AC, ZP 0062", // op 1062
"TAD 0063 ;Add operand to AC, ZP 0063", // op 1063
"TAD 0064 ;Add operand to AC, ZP 0064", // op 1064
"TAD 0065 ;Add operand to AC, ZP 0065", // op 1065
"TAD 0066 ;Add operand to AC, ZP 0066", // op 1066
"TAD 0067 ;Add operand to AC, ZP 0067", // op 1067
"TAD 0070 ;Add operand to AC, ZP 0070", // op 1070
"TAD 0071 ;Add operand to AC, ZP 0071", // op 1071
"TAD 0072 ;Add operand to AC, ZP 0072", // op 1072
"TAD 0073 ;Add operand to AC, ZP 0073", // op 1073
"TAD 0074 ;Add operand to AC, ZP 0074", // op 1074
"TAD 0075 ;Add operand to AC, ZP 0075", // op 1075
"TAD 0076 ;Add operand to AC, ZP 0076", // op 1076
"TAD 0077 ;Add operand to AC, ZP 0077", // op 1077
"TAD 0100 ;Add operand to AC, ZP 0100", // op 1100
"TAD 0101 ;Add operand to AC, ZP 0101", // op 1101
"TAD 0102 ;Add operand to AC, ZP 0102", // op 1102
"TAD 0103 ;Add operand to AC, ZP 0103", // op 1103
"TAD 0104 ;Add operand to AC, ZP 0104", // op 1104
"TAD 0105 ;Add operand to AC, ZP 0105", // op 1105
"TAD 0106 ;Add operand to AC, ZP 0106", // op 1106
"TAD 0107 ;Add operand to AC, ZP 0107", // op 1107
"TAD 0110 ;Add operand to AC, ZP 0110", // op 1110
"TAD 0111 ;Add operand to AC, ZP 0111", // op 1111
"TAD 0112 ;Add operand to AC, ZP 0112", // op 1112
"TAD 0113 ;Add operand to AC, ZP 0113", // op 1113
"TAD 0114 ;Add operand to AC, ZP 0114", // op 1114
"TAD 0115 ;Add operand to AC, ZP 0115", // op 1115
"TAD 0116 ;Add operand to AC, ZP 0116", // op 1116
"TAD 0117 ;Add operand to AC, ZP 0117", // op 1117
"TAD 0120 ;Add operand to AC, ZP 0120", // op 1120
"TAD 0121 ;Add operand to AC, ZP 0121", // op 1121
"TAD 0122 ;Add operand to AC, ZP 0122", // op 1122
"TAD 0123 ;Add operand to AC, ZP 0123", // op 1123
"TAD 0124 ;Add operand to AC, ZP 0124", // op 1124
"TAD 0125 ;Add operand to AC, ZP 0125", // op 1125
"TAD 0126 ;Add operand to AC, ZP 0126", // op 1126
"TAD 0127 ;Add operand to AC, ZP 0127", // op 1127
"TAD 0130 ;Add operand to AC, ZP 0130", // op 1130
"TAD 0131 ;Add operand to AC, ZP 0131", // op 1131
"TAD 0132 ;Add operand to AC, ZP 0132", // op 1132
"TAD 0133 ;Add operand to AC, ZP 0133", // op 1133
"TAD 0134 ;Add operand to AC, ZP 0134", // op 1134
"TAD 0135 ;Add operand to AC, ZP 0135", // op 1135
"TAD 0136 ;Add operand to AC, ZP 0136", // op 1136
"TAD 0137 ;Add operand to AC, ZP 0137", // op 1137
"TAD 0140 ;Add operand to AC, ZP 0140", // op 1140
"TAD 0141 ;Add operand to AC, ZP 0141", // op 1141
"TAD 0142 ;Add operand to AC, ZP 0142", // op 1142
"TAD 0143 ;Add operand to AC, ZP 0143", // op 1143
"TAD 0144 ;Add operand to AC, ZP 0144", // op 1144
"TAD 0145 ;Add operand to AC, ZP 0145", // op 1145
"TAD 0146 ;Add operand to AC, ZP 0146", // op 1146
"TAD 0147 ;Add operand to AC, ZP 0147", // op 1147
"TAD 0150 ;Add operand to AC, ZP 0150", // op 1150
"TAD 0151 ;Add operand to AC, ZP 0151", // op 1151
"TAD 0152 ;Add operand to AC, ZP 0152", // op 1152
"TAD 0153 ;Add operand to AC, ZP 0153", // op 1153
"TAD 0154 ;Add operand to AC, ZP 0154", // op 1154
"TAD 0155 ;Add operand to AC, ZP 0155", // op 1155
"TAD 0156 ;Add operand to AC, ZP 0156", // op 1156
"TAD 0157 ;Add operand to AC, ZP 0157", // op 1157
"TAD 0160 ;Add operand to AC, ZP 0160", // op 1160
"TAD 0161 ;Add operand to AC, ZP 0161", // op 1161
"TAD 0162 ;Add operand to AC, ZP 0162", // op 1162
"TAD 0163 ;Add operand to AC, ZP 0163", // op 1163
"TAD 0164 ;Add operand to AC, ZP 0164", // op 1164
"TAD 0165 ;Add operand to AC, ZP 0165", // op 1165
"TAD 0166 ;Add operand to AC, ZP 0166", // op 1166
"TAD 0167 ;Add operand to AC, ZP 0167", // op 1167
"TAD 0170 ;Add operand to AC, ZP 0170", // op 1170
"TAD 0171 ;Add operand to AC, ZP 0171", // op 1171
"TAD 0172 ;Add operand to AC, ZP 0172", // op 1172
"TAD 0173 ;Add operand to AC, ZP 0173", // op 1173
"TAD 0174 ;Add operand to AC, ZP 0174", // op 1174
"TAD 0175 ;Add operand to AC, ZP 0175", // op 1175
"TAD 0176 ;Add operand to AC, ZP 0176", // op 1176
"TAD 0177 ;Add operand to AC, ZP 0177", // op 1177
"TAD @@00 ;Add operand to AC, Current page @@00", // op 1200
"TAD @@01 ;Add operand to AC, Current page @@01", // op 1201
"TAD @@02 ;Add operand to AC, Current page @@02", // op 1202
"TAD @@03 ;Add operand to AC, Current page @@03", // op 1203
"TAD @@04 ;Add operand to AC, Current page @@04", // op 1204
"TAD @@05 ;Add operand to AC, Current page @@05", // op 1205
"TAD @@06 ;Add operand to AC, Current page @@06", // op 1206
"TAD @@07 ;Add operand to AC, Current page @@07", // op 1207
"TAD @@10 ;Add operand to AC, Current page @@10", // op 1210
"TAD @@11 ;Add operand to AC, Current page @@11", // op 1211
"TAD @@12 ;Add operand to AC, Current page @@12", // op 1212
"TAD @@13 ;Add operand to AC, Current page @@13", // op 1213
"TAD @@14 ;Add operand to AC, Current page @@14", // op 1214
"TAD @@15 ;Add operand to AC, Current page @@15", // op 1215
"TAD @@16 ;Add operand to AC, Current page @@16", // op 1216
"TAD @@17 ;Add operand to AC, Current page @@17", // op 1217
"TAD @@20 ;Add operand to AC, Current page @@20", // op 1220
"TAD @@21 ;Add operand to AC, Current page @@21", // op 1221
"TAD @@22 ;Add operand to AC, Current page @@22", // op 1222
"TAD @@23 ;Add operand to AC, Current page @@23", // op 1223
"TAD @@24 ;Add operand to AC, Current page @@24", // op 1224
"TAD @@25 ;Add operand to AC, Current page @@25", // op 1225
"TAD @@26 ;Add operand to AC, Current page @@26", // op 1226
"TAD @@27 ;Add operand to AC, Current page @@27", // op 1227
"TAD @@30 ;Add operand to AC, Current page @@30", // op 1230
"TAD @@31 ;Add operand to AC, Current page @@31", // op 1231
"TAD @@32 ;Add operand to AC, Current page @@32", // op 1232
"TAD @@33 ;Add operand to AC, Current page @@33", // op 1233
"TAD @@34 ;Add operand to AC, Current page @@34", // op 1234
"TAD @@35 ;Add operand to AC, Current page @@35", // op 1235
"TAD @@36 ;Add operand to AC, Current page @@36", // op 1236
"TAD @@37 ;Add operand to AC, Current page @@37", // op 1237
"TAD @@40 ;Add operand to AC, Current page @@40", // op 1240
"TAD @@41 ;Add operand to AC, Current page @@41", // op 1241
"TAD @@42 ;Add operand to AC, Current page @@42", // op 1242
"TAD @@43 ;Add operand to AC, Current page @@43", // op 1243
"TAD @@44 ;Add operand to AC, Current page @@44", // op 1244
"TAD @@45 ;Add operand to AC, Current page @@45", // op 1245
"TAD @@46 ;Add operand to AC, Current page @@46", // op 1246
"TAD @@47 ;Add operand to AC, Current page @@47", // op 1247
"TAD @@50 ;Add operand to AC, Current page @@50", // op 1250
"TAD @@51 ;Add operand to AC, Current page @@51", // op 1251
"TAD @@52 ;Add operand to AC, Current page @@52", // op 1252
"TAD @@53 ;Add operand to AC, Current page @@53", // op 1253
"TAD @@54 ;Add operand to AC, Current page @@54", // op 1254
"TAD @@55 ;Add operand to AC, Current page @@55", // op 1255
"TAD @@56 ;Add operand to AC, Current page @@56", // op 1256
"TAD @@57 ;Add operand to AC, Current page @@57", // op 1257
"TAD @@60 ;Add operand to AC, Current page @@60", // op 1260
"TAD @@61 ;Add operand to AC, Current page @@61", // op 1261
"TAD @@62 ;Add operand to AC, Current page @@62", // op 1262
"TAD @@63 ;Add operand to AC, Current page @@63", // op 1263
"TAD @@64 ;Add operand to AC, Current page @@64", // op 1264
"TAD @@65 ;Add operand to AC, Current page @@65", // op 1265
"TAD @@66 ;Add operand to AC, Current page @@66", // op 1266
"TAD @@67 ;Add operand to AC, Current page @@67", // op 1267
"TAD @@70 ;Add operand to AC, Current page @@70", // op 1270
"TAD @@71 ;Add operand to AC, Current page @@71", // op 1271
"TAD @@72 ;Add operand to AC, Current page @@72", // op 1272
"TAD @@73 ;Add operand to AC, Current page @@73", // op 1273
"TAD @@74 ;Add operand to AC, Current page @@74", // op 1274
"TAD @@75 ;Add operand to AC, Current page @@75", // op 1275
"TAD @@76 ;Add operand to AC, Current page @@76", // op 1276
"TAD @@77 ;Add operand to AC, Current page @@77", // op 1277
"TAD @@100 ;Add operand to AC, Current page @@100", // op 1300
"TAD @@101 ;Add operand to AC, Current page @@101", // op 1301
"TAD @@102 ;Add operand to AC, Current page @@102", // op 1302
"TAD @@103 ;Add operand to AC, Current page @@103", // op 1303
"TAD @@104 ;Add operand to AC, Current page @@104", // op 1304
"TAD @@105 ;Add operand to AC, Current page @@105", // op 1305
"TAD @@106 ;Add operand to AC, Current page @@106", // op 1306
"TAD @@107 ;Add operand to AC, Current page @@107", // op 1307
"TAD @@110 ;Add operand to AC, Current page @@110", // op 1310
"TAD @@111 ;Add operand to AC, Current page @@111", // op 1311
"TAD @@112 ;Add operand to AC, Current page @@112", // op 1312
"TAD @@113 ;Add operand to AC, Current page @@113", // op 1313
"TAD @@114 ;Add operand to AC, Current page @@114", // op 1314
"TAD @@115 ;Add operand to AC, Current page @@115", // op 1315
"TAD @@116 ;Add operand to AC, Current page @@116", // op 1316
"TAD @@117 ;Add operand to AC, Current page @@117", // op 1317
"TAD @@120 ;Add operand to AC, Current page @@120", // op 1320
"TAD @@121 ;Add operand to AC, Current page @@121", // op 1321
"TAD @@122 ;Add operand to AC, Current page @@122", // op 1322
"TAD @@123 ;Add operand to AC, Current page @@123", // op 1323
"TAD @@124 ;Add operand to AC, Current page @@124", // op 1324
"TAD @@125 ;Add operand to AC, Current page @@125", // op 1325
"TAD @@126 ;Add operand to AC, Current page @@126", // op 1326
"TAD @@127 ;Add operand to AC, Current page @@127", // op 1327
"TAD @@130 ;Add operand to AC, Current page @@130", // op 1330
"TAD @@131 ;Add operand to AC, Current page @@131", // op 1331
"TAD @@132 ;Add operand to AC, Current page @@132", // op 1332
"TAD @@133 ;Add operand to AC, Current page @@133", // op 1333
"TAD @@134 ;Add operand to AC, Current page @@134", // op 1334
"TAD @@135 ;Add operand to AC, Current page @@135", // op 1335
"TAD @@136 ;Add operand to AC, Current page @@136", // op 1336
"TAD @@137 ;Add operand to AC, Current page @@137", // op 1337
"TAD @@140 ;Add operand to AC, Current page @@140", // op 1340
"TAD @@141 ;Add operand to AC, Current page @@141", // op 1341
"TAD @@142 ;Add operand to AC, Current page @@142", // op 1342
"TAD @@143 ;Add operand to AC, Current page @@143", // op 1343
"TAD @@144 ;Add operand to AC, Current page @@144", // op 1344
"TAD @@145 ;Add operand to AC, Current page @@145", // op 1345
"TAD @@146 ;Add operand to AC, Current page @@146", // op 1346
"TAD @@147 ;Add operand to AC, Current page @@147", // op 1347
"TAD @@150 ;Add operand to AC, Current page @@150", // op 1350
"TAD @@151 ;Add operand to AC, Current page @@151", // op 1351
"TAD @@152 ;Add operand to AC, Current page @@152", // op 1352
"TAD @@153 ;Add operand to AC, Current page @@153", // op 1353
"TAD @@154 ;Add operand to AC, Current page @@154", // op 1354
"TAD @@155 ;Add operand to AC, Current page @@155", // op 1355
"TAD @@156 ;Add operand to AC, Current page @@156", // op 1356
"TAD @@157 ;Add operand to AC, Current page @@157", // op 1357
"TAD @@160 ;Add operand to AC, Current page @@160", // op 1360
"TAD @@161 ;Add operand to AC, Current page @@161", // op 1361
"TAD @@162 ;Add operand to AC, Current page @@162", // op 1362
"TAD @@163 ;Add operand to AC, Current page @@163", // op 1363
"TAD @@164 ;Add operand to AC, Current page @@164", // op 1364
"TAD @@165 ;Add operand to AC, Current page @@165", // op 1365
"TAD @@166 ;Add operand to AC, Current page @@166", // op 1366
"TAD @@167 ;Add operand to AC, Current page @@167", // op 1367
"TAD @@170 ;Add operand to AC, Current page @@170", // op 1370
"TAD @@171 ;Add operand to AC, Current page @@171", // op 1371
"TAD @@172 ;Add operand to AC, Current page @@172", // op 1372
"TAD @@173 ;Add operand to AC, Current page @@173", // op 1373
"TAD @@174 ;Add operand to AC, Current page @@174", // op 1374
"TAD @@175 ;Add operand to AC, Current page @@175", // op 1375
"TAD @@176 ;Add operand to AC, Current page @@176", // op 1376
"TAD @@177 ;Add operand to AC, Current page @@177", // op 1377
"TAD I 0000 ;Add operand to AC, Indexed ZP 0000", // op 1400
"TAD I 0001 ;Add operand to AC, Indexed ZP 0001", // op 1401
"TAD I 0002 ;Add operand to AC, Indexed ZP 0002", // op 1402
"TAD I 0003 ;Add operand to AC, Indexed ZP 0003", // op 1403
"TAD I 0004 ;Add operand to AC, Indexed ZP 0004", // op 1404
"TAD I 0005 ;Add operand to AC, Indexed ZP 0005", // op 1405
"TAD I 0006 ;Add operand to AC, Indexed ZP 0006", // op 1406
"TAD I 0007 ;Add operand to AC, Indexed ZP 0007", // op 1407
"TAD I 0010 ;Add operand to AC, Indexed ZP 0010 [Auto pre-inc]", // op 1410
"TAD I 0011 ;Add operand to AC, Indexed ZP 0011 [Auto pre-inc]", // op 1411
"TAD I 0012 ;Add operand to AC, Indexed ZP 0012 [Auto pre-inc]", // op 1412
"TAD I 0013 ;Add operand to AC, Indexed ZP 0013 [Auto pre-inc]", // op 1413
"TAD I 0014 ;Add operand to AC, Indexed ZP 0014 [Auto pre-inc]", // op 1414
"TAD I 0015 ;Add operand to AC, Indexed ZP 0015 [Auto pre-inc]", // op 1415
"TAD I 0016 ;Add operand to AC, Indexed ZP 0016 [Auto pre-inc]", // op 1416
"TAD I 0017 ;Add operand to AC, Indexed ZP 0017 [Auto pre-inc]", // op 1417
"TAD I 0020 ;Add operand to AC, Indexed ZP 0020", // op 1420
"TAD I 0021 ;Add operand to AC, Indexed ZP 0021", // op 1421
"TAD I 0022 ;Add operand to AC, Indexed ZP 0022", // op 1422
"TAD I 0023 ;Add operand to AC, Indexed ZP 0023", // op 1423
"TAD I 0024 ;Add operand to AC, Indexed ZP 0024", // op 1424
"TAD I 0025 ;Add operand to AC, Indexed ZP 0025", // op 1425
"TAD I 0026 ;Add operand to AC, Indexed ZP 0026", // op 1426
"TAD I 0027 ;Add operand to AC, Indexed ZP 0027", // op 1427
"TAD I 0030 ;Add operand to AC, Indexed ZP 0030", // op 1430
"TAD I 0031 ;Add operand to AC, Indexed ZP 0031", // op 1431
"TAD I 0032 ;Add operand to AC, Indexed ZP 0032", // op 1432
"TAD I 0033 ;Add operand to AC, Indexed ZP 0033", // op 1433
"TAD I 0034 ;Add operand to AC, Indexed ZP 0034", // op 1434
"TAD I 0035 ;Add operand to AC, Indexed ZP 0035", // op 1435
"TAD I 0036 ;Add operand to AC, Indexed ZP 0036", // op 1436
"TAD I 0037 ;Add operand to AC, Indexed ZP 0037", // op 1437
"TAD I 0040 ;Add operand to AC, Indexed ZP 0040", // op 1440
"TAD I 0041 ;Add operand to AC, Indexed ZP 0041", // op 1441
"TAD I 0042 ;Add operand to AC, Indexed ZP 0042", // op 1442
"TAD I 0043 ;Add operand to AC, Indexed ZP 0043", // op 1443
"TAD I 0044 ;Add operand to AC, Indexed ZP 0044", // op 1444
"TAD I 0045 ;Add operand to AC, Indexed ZP 0045", // op 1445
"TAD I 0046 ;Add operand to AC, Indexed ZP 0046", // op 1446
"TAD I 0047 ;Add operand to AC, Indexed ZP 0047", // op 1447
"TAD I 0050 ;Add operand to AC, Indexed ZP 0050", // op 1450
"TAD I 0051 ;Add operand to AC, Indexed ZP 0051", // op 1451
"TAD I 0052 ;Add operand to AC, Indexed ZP 0052", // op 1452
"TAD I 0053 ;Add operand to AC, Indexed ZP 0053", // op 1453
"TAD I 0054 ;Add operand to AC, Indexed ZP 0054", // op 1454
"TAD I 0055 ;Add operand to AC, Indexed ZP 0055", // op 1455
"TAD I 0056 ;Add operand to AC, Indexed ZP 0056", // op 1456
"TAD I 0057 ;Add operand to AC, Indexed ZP 0057", // op 1457
"TAD I 0060 ;Add operand to AC, Indexed ZP 0060", // op 1460
"TAD I 0061 ;Add operand to AC, Indexed ZP 0061", // op 1461
"TAD I 0062 ;Add operand to AC, Indexed ZP 0062", // op 1462
"TAD I 0063 ;Add operand to AC, Indexed ZP 0063", // op 1463
"TAD I 0064 ;Add operand to AC, Indexed ZP 0064", // op 1464
"TAD I 0065 ;Add operand to AC, Indexed ZP 0065", // op 1465
"TAD I 0066 ;Add operand to AC, Indexed ZP 0066", // op 1466
"TAD I 0067 ;Add operand to AC, Indexed ZP 0067", // op 1467
"TAD I 0070 ;Add operand to AC, Indexed ZP 0070", // op 1470
"TAD I 0071 ;Add operand to AC, Indexed ZP 0071", // op 1471
"TAD I 0072 ;Add operand to AC, Indexed ZP 0072", // op 1472
"TAD I 0073 ;Add operand to AC, Indexed ZP 0073", // op 1473
"TAD I 0074 ;Add operand to AC, Indexed ZP 0074", // op 1474
"TAD I 0075 ;Add operand to AC, Indexed ZP 0075", // op 1475
"TAD I 0076 ;Add operand to AC, Indexed ZP 0076", // op 1476
"TAD I 0077 ;Add operand to AC, Indexed ZP 0077", // op 1477
"TAD I 0100 ;Add operand to AC, Indexed ZP 0100", // op 1500
"TAD I 0101 ;Add operand to AC, Indexed ZP 0101", // op 1501
"TAD I 0102 ;Add operand to AC, Indexed ZP 0102", // op 1502
"TAD I 0103 ;Add operand to AC, Indexed ZP 0103", // op 1503
"TAD I 0104 ;Add operand to AC, Indexed ZP 0104", // op 1504
"TAD I 0105 ;Add operand to AC, Indexed ZP 0105", // op 1505
"TAD I 0106 ;Add operand to AC, Indexed ZP 0106", // op 1506
"TAD I 0107 ;Add operand to AC, Indexed ZP 0107", // op 1507
"TAD I 0110 ;Add operand to AC, Indexed ZP 0110", // op 1510
"TAD I 0111 ;Add operand to AC, Indexed ZP 0111", // op 1511
"TAD I 0112 ;Add operand to AC, Indexed ZP 0112", // op 1512
"TAD I 0113 ;Add operand to AC, Indexed ZP 0113", // op 1513
"TAD I 0114 ;Add operand to AC, Indexed ZP 0114", // op 1514
"TAD I 0115 ;Add operand to AC, Indexed ZP 0115", // op 1515
"TAD I 0116 ;Add operand to AC, Indexed ZP 0116", // op 1516
"TAD I 0117 ;Add operand to AC, Indexed ZP 0117", // op 1517
"TAD I 0120 ;Add operand to AC, Indexed ZP 0120", // op 1520
"TAD I 0121 ;Add operand to AC, Indexed ZP 0121", // op 1521
"TAD I 0122 ;Add operand to AC, Indexed ZP 0122", // op 1522
"TAD I 0123 ;Add operand to AC, Indexed ZP 0123", // op 1523
"TAD I 0124 ;Add operand to AC, Indexed ZP 0124", // op 1524
"TAD I 0125 ;Add operand to AC, Indexed ZP 0125", // op 1525
"TAD I 0126 ;Add operand to AC, Indexed ZP 0126", // op 1526
"TAD I 0127 ;Add operand to AC, Indexed ZP 0127", // op 1527
"TAD I 0130 ;Add operand to AC, Indexed ZP 0130", // op 1530
"TAD I 0131 ;Add operand to AC, Indexed ZP 0131", // op 1531
"TAD I 0132 ;Add operand to AC, Indexed ZP 0132", // op 1532
"TAD I 0133 ;Add operand to AC, Indexed ZP 0133", // op 1533
"TAD I 0134 ;Add operand to AC, Indexed ZP 0134", // op 1534
"TAD I 0135 ;Add operand to AC, Indexed ZP 0135", // op 1535
"TAD I 0136 ;Add operand to AC, Indexed ZP 0136", // op 1536
"TAD I 0137 ;Add operand to AC, Indexed ZP 0137", // op 1537
"TAD I 0140 ;Add operand to AC, Indexed ZP 0140", // op 1540
"TAD I 0141 ;Add operand to AC, Indexed ZP 0141", // op 1541
"TAD I 0142 ;Add operand to AC, Indexed ZP 0142", // op 1542
"TAD I 0143 ;Add operand to AC, Indexed ZP 0143", // op 1543
"TAD I 0144 ;Add operand to AC, Indexed ZP 0144", // op 1544
"TAD I 0145 ;Add operand to AC, Indexed ZP 0145", // op 1545
"TAD I 0146 ;Add operand to AC, Indexed ZP 0146", // op 1546
"TAD I 0147 ;Add operand to AC, Indexed ZP 0147", // op 1547
"TAD I 0150 ;Add operand to AC, Indexed ZP 0150", // op 1550
"TAD I 0151 ;Add operand to AC, Indexed ZP 0151", // op 1551
"TAD I 0152 ;Add operand to AC, Indexed ZP 0152", // op 1552
"TAD I 0153 ;Add operand to AC, Indexed ZP 0153", // op 1553
"TAD I 0154 ;Add operand to AC, Indexed ZP 0154", // op 1554
"TAD I 0155 ;Add operand to AC, Indexed ZP 0155", // op 1555
"TAD I 0156 ;Add operand to AC, Indexed ZP 0156", // op 1556
"TAD I 0157 ;Add operand to AC, Indexed ZP 0157", // op 1557
"TAD I 0160 ;Add operand to AC, Indexed ZP 0160", // op 1560
"TAD I 0161 ;Add operand to AC, Indexed ZP 0161", // op 1561
"TAD I 0162 ;Add operand to AC, Indexed ZP 0162", // op 1562
"TAD I 0163 ;Add operand to AC, Indexed ZP 0163", // op 1563
"TAD I 0164 ;Add operand to AC, Indexed ZP 0164", // op 1564
"TAD I 0165 ;Add operand to AC, Indexed ZP 0165", // op 1565
"TAD I 0166 ;Add operand to AC, Indexed ZP 0166", // op 1566
"TAD I 0167 ;Add operand to AC, Indexed ZP 0167", // op 1567
"TAD I 0170 ;Add operand to AC, Indexed ZP 0170", // op 1570
"TAD I 0171 ;Add operand to AC, Indexed ZP 0171", // op 1571
"TAD I 0172 ;Add operand to AC, Indexed ZP 0172", // op 1572
"TAD I 0173 ;Add operand to AC, Indexed ZP 0173", // op 1573
"TAD I 0174 ;Add operand to AC, Indexed ZP 0174", // op 1574
"TAD I 0175 ;Add operand to AC, Indexed ZP 0175", // op 1575
"TAD I 0176 ;Add operand to AC, Indexed ZP 0176", // op 1576
"TAD I 0177 ;Add operand to AC, Indexed ZP 0177", // op 1577
"TAD I @@00 ;Add operand to AC, Indexed Current page @@00", // op 1600
"TAD I @@01 ;Add operand to AC, Indexed Current page @@01", // op 1601
"TAD I @@02 ;Add operand to AC, Indexed Current page @@02", // op 1602
"TAD I @@03 ;Add operand to AC, Indexed Current page @@03", // op 1603
"TAD I @@04 ;Add operand to AC, Indexed Current page @@04", // op 1604
"TAD I @@05 ;Add operand to AC, Indexed Current page @@05", // op 1605
"TAD I @@06 ;Add operand to AC, Indexed Current page @@06", // op 1606
"TAD I @@07 ;Add operand to AC, Indexed Current page @@07", // op 1607
"TAD I @@10 ;Add operand to AC, Indexed Current page @@10", // op 1610
"TAD I @@11 ;Add operand to AC, Indexed Current page @@11", // op 1611
"TAD I @@12 ;Add operand to AC, Indexed Current page @@12", // op 1612
"TAD I @@13 ;Add operand to AC, Indexed Current page @@13", // op 1613
"TAD I @@14 ;Add operand to AC, Indexed Current page @@14", // op 1614
"TAD I @@15 ;Add operand to AC, Indexed Current page @@15", // op 1615
"TAD I @@16 ;Add operand to AC, Indexed Current page @@16", // op 1616
"TAD I @@17 ;Add operand to AC, Indexed Current page @@17", // op 1617
"TAD I @@20 ;Add operand to AC, Indexed Current page @@20", // op 1620
"TAD I @@21 ;Add operand to AC, Indexed Current page @@21", // op 1621
"TAD I @@22 ;Add operand to AC, Indexed Current page @@22", // op 1622
"TAD I @@23 ;Add operand to AC, Indexed Current page @@23", // op 1623
"TAD I @@24 ;Add operand to AC, Indexed Current page @@24", // op 1624
"TAD I @@25 ;Add operand to AC, Indexed Current page @@25", // op 1625
"TAD I @@26 ;Add operand to AC, Indexed Current page @@26", // op 1626
"TAD I @@27 ;Add operand to AC, Indexed Current page @@27", // op 1627
"TAD I @@30 ;Add operand to AC, Indexed Current page @@30", // op 1630
"TAD I @@31 ;Add operand to AC, Indexed Current page @@31", // op 1631
"TAD I @@32 ;Add operand to AC, Indexed Current page @@32", // op 1632
"TAD I @@33 ;Add operand to AC, Indexed Current page @@33", // op 1633
"TAD I @@34 ;Add operand to AC, Indexed Current page @@34", // op 1634
"TAD I @@35 ;Add operand to AC, Indexed Current page @@35", // op 1635
"TAD I @@36 ;Add operand to AC, Indexed Current page @@36", // op 1636
"TAD I @@37 ;Add operand to AC, Indexed Current page @@37", // op 1637
"TAD I @@40 ;Add operand to AC, Indexed Current page @@40", // op 1640
"TAD I @@41 ;Add operand to AC, Indexed Current page @@41", // op 1641
"TAD I @@42 ;Add operand to AC, Indexed Current page @@42", // op 1642
"TAD I @@43 ;Add operand to AC, Indexed Current page @@43", // op 1643
"TAD I @@44 ;Add operand to AC, Indexed Current page @@44", // op 1644
"TAD I @@45 ;Add operand to AC, Indexed Current page @@45", // op 1645
"TAD I @@46 ;Add operand to AC, Indexed Current page @@46", // op 1646
"TAD I @@47 ;Add operand to AC, Indexed Current page @@47", // op 1647
"TAD I @@50 ;Add operand to AC, Indexed Current page @@50", // op 1650
"TAD I @@51 ;Add operand to AC, Indexed Current page @@51", // op 1651
"TAD I @@52 ;Add operand to AC, Indexed Current page @@52", // op 1652
"TAD I @@53 ;Add operand to AC, Indexed Current page @@53", // op 1653
"TAD I @@54 ;Add operand to AC, Indexed Current page @@54", // op 1654
"TAD I @@55 ;Add operand to AC, Indexed Current page @@55", // op 1655
"TAD I @@56 ;Add operand to AC, Indexed Current page @@56", // op 1656
"TAD I @@57 ;Add operand to AC, Indexed Current page @@57", // op 1657
"TAD I @@60 ;Add operand to AC, Indexed Current page @@60", // op 1660
"TAD I @@61 ;Add operand to AC, Indexed Current page @@61", // op 1661
"TAD I @@62 ;Add operand to AC, Indexed Current page @@62", // op 1662
"TAD I @@63 ;Add operand to AC, Indexed Current page @@63", // op 1663
"TAD I @@64 ;Add operand to AC, Indexed Current page @@64", // op 1664
"TAD I @@65 ;Add operand to AC, Indexed Current page @@65", // op 1665
"TAD I @@66 ;Add operand to AC, Indexed Current page @@66", // op 1666
"TAD I @@67 ;Add operand to AC, Indexed Current page @@67", // op 1667
"TAD I @@70 ;Add operand to AC, Indexed Current page @@70", // op 1670
"TAD I @@71 ;Add operand to AC, Indexed Current page @@71", // op 1671
"TAD I @@72 ;Add operand to AC, Indexed Current page @@72", // op 1672
"TAD I @@73 ;Add operand to AC, Indexed Current page @@73", // op 1673
"TAD I @@74 ;Add operand to AC, Indexed Current page @@74", // op 1674
"TAD I @@75 ;Add operand to AC, Indexed Current page @@75", // op 1675
"TAD I @@76 ;Add operand to AC, Indexed Current page @@76", // op 1676
"TAD I @@77 ;Add operand to AC, Indexed Current page @@77", // op 1677
"TAD I @@100 ;Add operand to AC, Indexed Current page @@100", // op 1700
"TAD I @@101 ;Add operand to AC, Indexed Current page @@101", // op 1701
"TAD I @@102 ;Add operand to AC, Indexed Current page @@102", // op 1702
"TAD I @@103 ;Add operand to AC, Indexed Current page @@103", // op 1703
"TAD I @@104 ;Add operand to AC, Indexed Current page @@104", // op 1704
"TAD I @@105 ;Add operand to AC, Indexed Current page @@105", // op 1705
"TAD I @@106 ;Add operand to AC, Indexed Current page @@106", // op 1706
"TAD I @@107 ;Add operand to AC, Indexed Current page @@107", // op 1707
"TAD I @@110 ;Add operand to AC, Indexed Current page @@110", // op 1710
"TAD I @@111 ;Add operand to AC, Indexed Current page @@111", // op 1711
"TAD I @@112 ;Add operand to AC, Indexed Current page @@112", // op 1712
"TAD I @@113 ;Add operand to AC, Indexed Current page @@113", // op 1713
"TAD I @@114 ;Add operand to AC, Indexed Current page @@114", // op 1714
"TAD I @@115 ;Add operand to AC, Indexed Current page @@115", // op 1715
"TAD I @@116 ;Add operand to AC, Indexed Current page @@116", // op 1716
"TAD I @@117 ;Add operand to AC, Indexed Current page @@117", // op 1717
"TAD I @@120 ;Add operand to AC, Indexed Current page @@120", // op 1720
"TAD I @@121 ;Add operand to AC, Indexed Current page @@121", // op 1721
"TAD I @@122 ;Add operand to AC, Indexed Current page @@122", // op 1722
"TAD I @@123 ;Add operand to AC, Indexed Current page @@123", // op 1723
"TAD I @@124 ;Add operand to AC, Indexed Current page @@124", // op 1724
"TAD I @@125 ;Add operand to AC, Indexed Current page @@125", // op 1725
"TAD I @@126 ;Add operand to AC, Indexed Current page @@126", // op 1726
"TAD I @@127 ;Add operand to AC, Indexed Current page @@127", // op 1727
"TAD I @@130 ;Add operand to AC, Indexed Current page @@130", // op 1730
"TAD I @@131 ;Add operand to AC, Indexed Current page @@131", // op 1731
"TAD I @@132 ;Add operand to AC, Indexed Current page @@132", // op 1732
"TAD I @@133 ;Add operand to AC, Indexed Current page @@133", // op 1733
"TAD I @@134 ;Add operand to AC, Indexed Current page @@134", // op 1734
"TAD I @@135 ;Add operand to AC, Indexed Current page @@135", // op 1735
"TAD I @@136 ;Add operand to AC, Indexed Current page @@136", // op 1736
"TAD I @@137 ;Add operand to AC, Indexed Current page @@137", // op 1737