-
Notifications
You must be signed in to change notification settings - Fork 0
/
abersoftforth2z80dasmblocks_printout.txt
1795 lines (1792 loc) · 92.6 KB
/
abersoftforth2z80dasmblocks_printout.txt
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
; This file was automatically created by AbersoftForthz80dasmBlocks
; This file is part of Abersoft Forth disassembled
; By Marcos Cruz (programandala.net), 2015
; http://programandala.net/en.program.abersoft_forth.html
C_nfa: first 0x7B22 last 0x7B23 type bytedata
C_lfa: first 0x7B24 last 0x7B25 type pointers
C_cfa: first 0x7B26 last 0x7B27 type pointers
C_pfa: first 0x7B28 last 0x7B63 type pointers
TILL_nfa: first 0x7AF9 last 0x7AFD type bytedata
TILL_lfa: first 0x7AFE last 0x7AFF type pointers
TILL_cfa: first 0x7B00 last 0x7B01 type pointers
TILL_pfa: first 0x7B02 last 0x7B21 type pointers
X_nfa: first 0x7AE1 last 0x7AE2 type bytedata
X_lfa: first 0x7AE3 last 0x7AE4 type pointers
X_cfa: first 0x7AE5 last 0x7AE6 type pointers
X_pfa: first 0x7AE7 last 0x7AF8 type pointers
B_nfa: first 0x7AD1 last 0x7AD2 type bytedata
B_lfa: first 0x7AD3 last 0x7AD4 type pointers
B_cfa: first 0x7AD5 last 0x7AD6 type pointers
B_pfa: first 0x7AD7 last 0x7AE0 type pointers
F_nfa: first 0x7AC3 last 0x7AC4 type bytedata
F_lfa: first 0x7AC5 last 0x7AC6 type pointers
F_cfa: first 0x7AC7 last 0x7AC8 type pointers
F_pfa: first 0x7AC9 last 0x7AD0 type pointers
N_nfa: first 0x7AB5 last 0x7AB6 type bytedata
N_lfa: first 0x7AB7 last 0x7AB8 type pointers
N_cfa: first 0x7AB9 last 0x7ABA type pointers
N_pfa: first 0x7ABB last 0x7AC2 type pointers
DELETE_nfa: first 0x7A86 last 0x7A8C type bytedata
DELETE_lfa: first 0x7A8D last 0x7A8E type pointers
DELETE_cfa: first 0x7A8F last 0x7A90 type pointers
DELETE_pfa: first 0x7A91 last 0x7AB4 type pointers
FIND_nfa: first 0x7A57 last 0x7A5B type bytedata
FIND_lfa: first 0x7A5C last 0x7A5D type pointers
FIND_cfa: first 0x7A5E last 0x7A5F type pointers
FIND_pfa: first 0x7A60 last 0x7A61 type pointers
literal_at_0x7A62: first 0x7A62 last 0x7A63 type worddata
FIND_pfa001: first 0x7A64 last 0x7A6B type pointers
literal_at_0x7A6C: first 0x7A6C last 0x7A6D type worddata
FIND_pfa002: first 0x7A6E last 0x7A81 type pointers
literal_at_0x7A82: first 0x7A82 last 0x7A83 type worddata
FIND_pfa003: first 0x7A84 last 0x7A85 type pointers
1LINE_nfa: first 0x7A3F last 0x7A44 type bytedata
1LINE_lfa: first 0x7A45 last 0x7A46 type pointers
1LINE_cfa: first 0x7A47 last 0x7A48 type pointers
1LINE_pfa: first 0x7A49 last 0x7A56 type pointers
MATCH_nfa: first 0x79F1 last 0x79F6 type bytedata
MATCH_lfa: first 0x79F7 last 0x79F8 type pointers
MATCH_cfa: first 0x79F9 last 0x79FA type pointers
MATCH_pfa: first 0x79FB last 0x7A16 type pointers
literal_at_0x7A17: first 0x7A17 last 0x7A18 type worddata
MATCH_pfa001: first 0x7A19 last 0x7A32 type pointers
literal_at_0x7A33: first 0x7A33 last 0x7A34 type worddata
MATCH_pfa002: first 0x7A35 last 0x7A3E type pointers
-TEXT_nfa: first 0x79B1 last 0x79B6 type bytedata
-TEXT_lfa: first 0x79B7 last 0x79B8 type pointers
-TEXT_cfa: first 0x79B9 last 0x79BA type pointers
-TEXT_pfa: first 0x79BB last 0x79C0 type pointers
literal_at_0x79C1: first 0x79C1 last 0x79C2 type worddata
-TEXT_pfa001: first 0x79C3 last 0x79D6 type pointers
literal_at_0x79D7: first 0x79D7 last 0x79D8 type worddata
-TEXT_pfa002: first 0x79D9 last 0x79DE type pointers
literal_at_0x79DF: first 0x79DF last 0x79E0 type worddata
-TEXT_pfa003: first 0x79E1 last 0x79E4 type pointers
literal_at_0x79E5: first 0x79E5 last 0x79E6 type worddata
-TEXT_pfa004: first 0x79E7 last 0x79E8 type pointers
literal_at_0x79E9: first 0x79E9 last 0x79EA type worddata
-TEXT_pfa005: first 0x79EB last 0x79F0 type pointers
COPY_nfa: first 0x7974 last 0x7978 type bytedata
COPY_lfa: first 0x7979 last 0x797A type pointers
COPY_cfa: first 0x797B last 0x797C type pointers
COPY_pfa: first 0x797D last 0x79A8 type pointers
literal_at_0x79A9: first 0x79A9 last 0x79AA type worddata
COPY_pfa001: first 0x79AB last 0x79B0 type pointers
CLEAR_nfa: first 0x7954 last 0x7959 type bytedata
CLEAR_lfa: first 0x795A last 0x795B type pointers
CLEAR_cfa: first 0x795C last 0x795D type pointers
CLEAR_pfa: first 0x795E last 0x7963 type pointers
literal_at_0x7964: first 0x7964 last 0x7965 type worddata
CLEAR_pfa001: first 0x7966 last 0x796F type pointers
literal_at_0x7970: first 0x7970 last 0x7971 type worddata
CLEAR_pfa002: first 0x7972 last 0x7973 type pointers
TOP_nfa: first 0x7944 last 0x7947 type bytedata
TOP_lfa: first 0x7948 last 0x7949 type pointers
TOP_cfa: first 0x794A last 0x794B type pointers
TOP_pfa: first 0x794C last 0x7953 type pointers
editor_I_nfa: first 0x7936 last 0x7937 type bytedata
editor_I_lfa: first 0x7938 last 0x7939 type pointers
editor_I_cfa: first 0x793A last 0x793B type pointers
editor_I_pfa: first 0x793C last 0x7943 type pointers
P_nfa: first 0x7928 last 0x7929 type bytedata
P_lfa: first 0x792A last 0x792B type pointers
P_cfa: first 0x792C last 0x792D type pointers
P_pfa: first 0x792E last 0x7935 type pointers
editor_R_nfa: first 0x7918 last 0x7919 type bytedata
editor_R_lfa: first 0x791A last 0x791B type pointers
editor_R_cfa: first 0x791C last 0x791D type pointers
editor_R_pfa: first 0x791E last 0x7927 type pointers
L_nfa: first 0x7906 last 0x7907 type bytedata
L_lfa: first 0x7908 last 0x7909 type pointers
L_cfa: first 0x790A last 0x790B type pointers
L_pfa: first 0x790C last 0x7917 type pointers
T_nfa: first 0x78EC last 0x78ED type bytedata
T_lfa: first 0x78EE last 0x78EF type pointers
T_cfa: first 0x78F0 last 0x78F1 type pointers
T_pfa: first 0x78F2 last 0x7905 type pointers
M_nfa: first 0x78C8 last 0x78C9 type bytedata
M_lfa: first 0x78CA last 0x78CB type pointers
M_cfa: first 0x78CC last 0x78CD type pointers
M_pfa: first 0x78CE last 0x78DB type pointers
literal_at_0x78DC: first 0x78DC last 0x78DD type worddata
M_pfa001: first 0x78DE last 0x78EB type pointers
D_nfa: first 0x78A2 last 0x78A3 type bytedata
D_lfa: first 0x78A4 last 0x78A5 type pointers
D_cfa: first 0x78A6 last 0x78A7 type pointers
D_pfa: first 0x78A8 last 0x78AD type pointers
literal_at_0x78AE: first 0x78AE last 0x78AF type worddata
D_pfa001: first 0x78B0 last 0x78C1 type pointers
literal_at_0x78C2: first 0x78C2 last 0x78C3 type worddata
D_pfa002: first 0x78C4 last 0x78C7 type pointers
S_nfa: first 0x787A last 0x787B type bytedata
S_lfa: first 0x787C last 0x787D type pointers
S_cfa: first 0x787E last 0x787F type pointers
S_pfa: first 0x7880 last 0x7887 type pointers
literal_at_0x7888: first 0x7888 last 0x7889 type worddata
S_pfa001: first 0x788A last 0x7897 type pointers
literal_at_0x7898: first 0x7898 last 0x7899 type worddata
S_pfa002: first 0x789A last 0x789B type pointers
literal_at_0x789C: first 0x789C last 0x789D type worddata
S_pfa003: first 0x789E last 0x78A1 type pointers
E_nfa: first 0x786A last 0x786B type bytedata
E_lfa: first 0x786C last 0x786D type pointers
E_cfa: first 0x786E last 0x786F type pointers
E_pfa: first 0x7870 last 0x7879 type pointers
H_nfa: first 0x7852 last 0x7853 type bytedata
H_lfa: first 0x7854 last 0x7855 type pointers
H_cfa: first 0x7856 last 0x7857 type pointers
H_pfa: first 0x7858 last 0x7869 type pointers
-MOVE_nfa: first 0x783E last 0x7843 type bytedata
-MOVE_lfa: first 0x7844 last 0x7845 type pointers
-MOVE_cfa: first 0x7846 last 0x7847 type pointers
-MOVE_pfa: first 0x7848 last 0x7851 type pointers
#LAG_nfa: first 0x7825 last 0x7829 type bytedata
#LAG_lfa: first 0x782A last 0x782B type pointers
#LAG_cfa: first 0x782C last 0x782D type pointers
#LAG_pfa: first 0x782E last 0x783D type pointers
#LEAD_nfa: first 0x7813 last 0x7818 type bytedata
#LEAD_lfa: first 0x7819 last 0x781A type pointers
#LEAD_cfa: first 0x781B last 0x781C type pointers
#LEAD_pfa: first 0x781D last 0x7824 type pointers
#LOCATE_nfa: first 0x77FD last 0x7804 type bytedata
#LOCATE_lfa: first 0x7805 last 0x7806 type pointers
#LOCATE_cfa: first 0x7807 last 0x7808 type pointers
#LOCATE_pfa: first 0x7809 last 0x7812 type pointers
UDG_nfa: first 0x8149 last 0x814C type bytedata
UDG_lfa: first 0x814D last 0x814E type pointers
UDG_cfa: first 0x814F last 0x8150 type pointers
UDG_pfa: first 0x8151 last 0x8152 type pointers
literal_at_0x8153: first 0x8153 last 0x8154 type worddata
UDG_pfa001: first 0x8155 last 0x8158 type pointers
INIT-DISC_nfa: first 0x812F last 0x8138 type bytedata
INIT-DISC_lfa: first 0x8139 last 0x813A type pointers
INIT-DISC_cfa: first 0x813B last 0x813C type pointers
INIT-DISC_pfa: first 0x813D last 0x8148 type pointers
INKEY_nfa: first 0x810C last 0x8111 type bytedata
INKEY_lfa: first 0x8112 last 0x8113 type pointers
INKEY_cfa: first 0x8114 last 0x8115 type pointers
INKEY_pfa: first 0x8116 last 0x812E type code
ENDCASE_nfa: first 0x80DA last 0x80E1 type bytedata
ENDCASE_lfa: first 0x80E2 last 0x80E3 type pointers
ENDCASE_cfa: first 0x80E4 last 0x80E5 type pointers
ENDCASE_pfa: first 0x80E6 last 0x80E7 type pointers
literal_at_0x80E8: first 0x80E8 last 0x80E9 type worddata
ENDCASE_pfa001: first 0x80EA last 0x80FB type pointers
literal_at_0x80FC: first 0x80FC last 0x80FD type worddata
ENDCASE_pfa002: first 0x80FE last 0x8103 type pointers
literal_at_0x8104: first 0x8104 last 0x8105 type worddata
ENDCASE_pfa003: first 0x8106 last 0x810B type pointers
ENDOF_nfa: first 0x80B4 last 0x80B9 type bytedata
ENDOF_lfa: first 0x80BA last 0x80BB type pointers
ENDOF_cfa: first 0x80BC last 0x80BD type pointers
ENDOF_pfa: first 0x80BE last 0x80BF type pointers
literal_at_0x80C0: first 0x80C0 last 0x80C1 type worddata
ENDOF_pfa001: first 0x80C2 last 0x80D5 type pointers
literal_at_0x80D6: first 0x80D6 last 0x80D7 type worddata
ENDOF_pfa002: first 0x80D8 last 0x80D9 type pointers
OF_nfa: first 0x808B last 0x808D type bytedata
OF_lfa: first 0x808E last 0x808F type pointers
OF_cfa: first 0x8090 last 0x8091 type pointers
OF_pfa: first 0x8092 last 0x8093 type pointers
literal_at_0x8094: first 0x8094 last 0x8095 type worddata
OF_pfa001: first 0x8096 last 0x80AF type pointers
literal_at_0x80B0: first 0x80B0 last 0x80B1 type worddata
OF_pfa002: first 0x80B2 last 0x80B3 type pointers
CASE_nfa: first 0x8074 last 0x8078 type bytedata
CASE_lfa: first 0x8079 last 0x807A type pointers
CASE_cfa: first 0x807B last 0x807C type pointers
CASE_pfa: first 0x807D last 0x8086 type pointers
literal_at_0x8087: first 0x8087 last 0x8088 type worddata
CASE_pfa001: first 0x8089 last 0x808A type pointers
DRAW_nfa: first 0x7FB7 last 0x7FBB type bytedata
DRAW_lfa: first 0x7FBC last 0x7FBD type pointers
DRAW_cfa: first 0x7FBE last 0x7FBF type pointers
DRAW_pfa: first 0x7FC0 last 0x7FC1 type pointers
literal_at_0x7FC2: first 0x7FC2 last 0x7FC3 type worddata
DRAW_pfa001: first 0x7FC4 last 0x7FD9 type pointers
literal_at_0x7FDA: first 0x7FDA last 0x7FDB type worddata
DRAW_pfa002: first 0x7FDC last 0x7FF9 type pointers
literal_at_0x7FFA: first 0x7FFA last 0x7FFB type worddata
DRAW_pfa003: first 0x7FFC last 0x8009 type pointers
literal_at_0x800A: first 0x800A last 0x800B type worddata
DRAW_pfa004: first 0x800C last 0x801F type pointers
literal_at_0x8020: first 0x8020 last 0x8021 type worddata
DRAW_pfa005: first 0x8022 last 0x802F type pointers
literal_at_0x8030: first 0x8030 last 0x8031 type worddata
DRAW_pfa006: first 0x8032 last 0x806F type pointers
literal_at_0x8070: first 0x8070 last 0x8071 type worddata
DRAW_pfa007: first 0x8072 last 0x8073 type pointers
INCY_nfa: first 0x7FAA last 0x7FAE type bytedata
INCY_lfa: first 0x7FAF last 0x7FB0 type pointers
INCY_cfa: first 0x7FB1 last 0x7FB2 type pointers
INCY_pfa: first 0x7FB3 last 0x7FB6 type worddata
INCX_nfa: first 0x7F9D last 0x7FA1 type bytedata
INCX_lfa: first 0x7FA2 last 0x7FA3 type pointers
INCX_cfa: first 0x7FA4 last 0x7FA5 type pointers
INCX_pfa: first 0x7FA6 last 0x7FA9 type worddata
Y1_nfa: first 0x7F92 last 0x7F94 type bytedata
Y1_lfa: first 0x7F95 last 0x7F96 type pointers
Y1_cfa: first 0x7F97 last 0x7F98 type pointers
Y1_pfa: first 0x7F99 last 0x7F9C type worddata
X1_nfa: first 0x7F87 last 0x7F89 type bytedata
X1_lfa: first 0x7F8A last 0x7F8B type pointers
X1_cfa: first 0x7F8C last 0x7F8D type pointers
X1_pfa: first 0x7F8E last 0x7F91 type worddata
PLOT_nfa: first 0x7F65 last 0x7F69 type bytedata
PLOT_lfa: first 0x7F6A last 0x7F6B type pointers
PLOT_cfa: first 0x7F6C last 0x7F6D type pointers
PLOT_pfa: first 0x7F6E last 0x7F86 type code
EXIT_nfa: first 0x7F54 last 0x7F58 type bytedata
EXIT_lfa: first 0x7F59 last 0x7F5A type pointers
EXIT_cfa: first 0x7F5B last 0x7F5C type pointers
EXIT_pfa: first 0x7F5D last 0x7F62 type pointers
2OVER_nfa: first 0x7F3A last 0x7F3F type bytedata
2OVER_lfa: first 0x7F40 last 0x7F41 type pointers
2OVER_cfa: first 0x7F42 last 0x7F43 type pointers
2OVER_pfa: first 0x7F44 last 0x7F53 type pointers
U.R_nfa: first 0x7F28 last 0x7F2B type bytedata
U.R_lfa: first 0x7F2C last 0x7F2D type pointers
U.R_cfa: first 0x7F2E last 0x7F2F type pointers
U.R_pfa: first 0x7F30 last 0x7F39 type pointers
2VARIABLE_nfa: first 0x7F11 last 0x7F1A type bytedata
2VARIABLE_lfa: first 0x7F1B last 0x7F1C type pointers
2VARIABLE_cfa: first 0x7F1D last 0x7F1E type pointers
2VARIABLE_pfa: first 0x7F1F last 0x7F22 type pointers
2VARIABLE_pfa100: first 0x7F23 last 0x7F27 type code
2CONSTANT_nfa: first 0x7EE2 last 0x7EEB type bytedata
2CONSTANT_lfa: first 0x7EEC last 0x7EED type pointers
2CONSTANT_cfa: first 0x7EEE last 0x7EEF type pointers
2CONSTANT_pfa: first 0x7EF0 last 0x7EF9 type pointers
literal_at_0x7EFA: first 0x7EFA last 0x7EFB type worddata
2CONSTANT_pfa001: first 0x7EFC last 0x7EFF type pointers
2CONSTANT_pfa100: first 0x7F00 last 0x7F10 type code
J_nfa: first 0x7ECE last 0x7ECF type bytedata
J_lfa: first 0x7ED0 last 0x7ED1 type pointers
J_cfa: first 0x7ED2 last 0x7ED3 type pointers
J_pfa: first 0x7ED4 last 0x7EE1 type code
I'_nfa: first 0x7EBB last 0x7EBD type bytedata
I'_lfa: first 0x7EBE last 0x7EBF type pointers
I'_cfa: first 0x7EC0 last 0x7EC1 type pointers
I'_pfa: first 0x7EC2 last 0x7ECD type code
NOT_nfa: first 0x7EAF last 0x7EB2 type bytedata
NOT_lfa: first 0x7EB3 last 0x7EB4 type pointers
NOT_cfa: first 0x7EB5 last 0x7EB6 type pointers
NOT_pfa: first 0x7EB7 last 0x7EBA type pointers
INVERSE_nfa: first 0x7E75 last 0x7E7C type bytedata
INVERSE_lfa: first 0x7E7D last 0x7E7E type pointers
INVERSE_cfa: first 0x7E7F last 0x7E80 type pointers
INVERSE_pfa: first 0x7E81 last 0x7E82 type pointers
literal_at_0x7E83: first 0x7E83 last 0x7E84 type worddata
INVERSE_pfa001: first 0x7E85 last 0x7E86 type pointers
literal_at_0x7E87: first 0x7E87 last 0x7E88 type worddata
INVERSE_pfa002: first 0x7E89 last 0x7E8C type pointers
literal_at_0x7E8D: first 0x7E8D last 0x7E8E type worddata
INVERSE_pfa003: first 0x7E8F last 0x7E92 type pointers
literal_at_0x7E93: first 0x7E93 last 0x7E94 type worddata
INVERSE_pfa004: first 0x7E95 last 0x7E98 type pointers
literal_at_0x7E99: first 0x7E99 last 0x7E9A type worddata
INVERSE_pfa005: first 0x7E9B last 0x7E9C type pointers
literal_at_0x7E9D: first 0x7E9D last 0x7E9E type worddata
INVERSE_pfa006: first 0x7E9F last 0x7EA2 type pointers
literal_at_0x7EA3: first 0x7EA3 last 0x7EA4 type worddata
INVERSE_pfa007: first 0x7EA5 last 0x7EA8 type pointers
literal_at_0x7EA9: first 0x7EA9 last 0x7EAA type worddata
INVERSE_pfa008: first 0x7EAB last 0x7EAE type pointers
GOVER_nfa: first 0x7E3F last 0x7E44 type bytedata
GOVER_lfa: first 0x7E45 last 0x7E46 type pointers
GOVER_cfa: first 0x7E47 last 0x7E48 type pointers
GOVER_pfa: first 0x7E49 last 0x7E4A type pointers
literal_at_0x7E4B: first 0x7E4B last 0x7E4C type worddata
GOVER_pfa001: first 0x7E4D last 0x7E4E type pointers
literal_at_0x7E4F: first 0x7E4F last 0x7E50 type worddata
GOVER_pfa002: first 0x7E51 last 0x7E58 type pointers
literal_at_0x7E59: first 0x7E59 last 0x7E5A type worddata
GOVER_pfa003: first 0x7E5B last 0x7E5E type pointers
literal_at_0x7E5F: first 0x7E5F last 0x7E60 type worddata
GOVER_pfa004: first 0x7E61 last 0x7E62 type pointers
literal_at_0x7E63: first 0x7E63 last 0x7E64 type worddata
GOVER_pfa005: first 0x7E65 last 0x7E68 type pointers
literal_at_0x7E69: first 0x7E69 last 0x7E6A type worddata
GOVER_pfa006: first 0x7E6B last 0x7E6E type pointers
literal_at_0x7E6F: first 0x7E6F last 0x7E70 type worddata
GOVER_pfa007: first 0x7E71 last 0x7E74 type pointers
BRIGHT_nfa: first 0x7E06 last 0x7E0C type bytedata
BRIGHT_lfa: first 0x7E0D last 0x7E0E type pointers
BRIGHT_cfa: first 0x7E0F last 0x7E10 type pointers
BRIGHT_pfa: first 0x7E11 last 0x7E12 type pointers
literal_at_0x7E13: first 0x7E13 last 0x7E14 type worddata
BRIGHT_pfa001: first 0x7E15 last 0x7E16 type pointers
literal_at_0x7E17: first 0x7E17 last 0x7E18 type worddata
BRIGHT_pfa002: first 0x7E19 last 0x7E1C type pointers
literal_at_0x7E1D: first 0x7E1D last 0x7E1E type worddata
BRIGHT_pfa003: first 0x7E1F last 0x7E22 type pointers
literal_at_0x7E23: first 0x7E23 last 0x7E24 type worddata
BRIGHT_pfa004: first 0x7E25 last 0x7E28 type pointers
literal_at_0x7E29: first 0x7E29 last 0x7E2A type worddata
BRIGHT_pfa005: first 0x7E2B last 0x7E2C type pointers
literal_at_0x7E2D: first 0x7E2D last 0x7E2E type worddata
BRIGHT_pfa006: first 0x7E2F last 0x7E32 type pointers
literal_at_0x7E33: first 0x7E33 last 0x7E34 type worddata
BRIGHT_pfa007: first 0x7E35 last 0x7E38 type pointers
literal_at_0x7E39: first 0x7E39 last 0x7E3A type worddata
BRIGHT_pfa008: first 0x7E3B last 0x7E3E type pointers
FLASH_nfa: first 0x7DCE last 0x7DD3 type bytedata
FLASH_lfa: first 0x7DD4 last 0x7DD5 type pointers
FLASH_cfa: first 0x7DD6 last 0x7DD7 type pointers
FLASH_pfa: first 0x7DD8 last 0x7DD9 type pointers
literal_at_0x7DDA: first 0x7DDA last 0x7DDB type worddata
FLASH_pfa001: first 0x7DDC last 0x7DDD type pointers
literal_at_0x7DDE: first 0x7DDE last 0x7DDF type worddata
FLASH_pfa002: first 0x7DE0 last 0x7DE3 type pointers
literal_at_0x7DE4: first 0x7DE4 last 0x7DE5 type worddata
FLASH_pfa003: first 0x7DE6 last 0x7DE9 type pointers
literal_at_0x7DEA: first 0x7DEA last 0x7DEB type worddata
FLASH_pfa004: first 0x7DEC last 0x7DEF type pointers
literal_at_0x7DF0: first 0x7DF0 last 0x7DF1 type worddata
FLASH_pfa005: first 0x7DF2 last 0x7DF3 type pointers
literal_at_0x7DF4: first 0x7DF4 last 0x7DF5 type worddata
FLASH_pfa006: first 0x7DF6 last 0x7DF9 type pointers
literal_at_0x7DFA: first 0x7DFA last 0x7DFB type worddata
FLASH_pfa007: first 0x7DFC last 0x7DFF type pointers
literal_at_0x7E00: first 0x7E00 last 0x7E01 type worddata
FLASH_pfa008: first 0x7E02 last 0x7E05 type pointers
INK_nfa: first 0x7D30 last 0x7D33 type bytedata
INK_lfa: first 0x7D34 last 0x7D35 type pointers
INK_cfa: first 0x7D36 last 0x7D37 type pointers
INK_pfa: first 0x7D38 last 0x7D3D type pointers
literal_at_0x7D3E: first 0x7D3E last 0x7D3F type worddata
INK_pfa001: first 0x7D40 last 0x7D43 type pointers
literal_at_0x7D44: first 0x7D44 last 0x7D45 type worddata
INK_pfa002: first 0x7D46 last 0x7D49 type pointers
literal_at_0x7D4A: first 0x7D4A last 0x7D4B type worddata
INK_pfa003: first 0x7D4C last 0x7D4F type pointers
literal_at_0x7D50: first 0x7D50 last 0x7D51 type worddata
INK_pfa004: first 0x7D52 last 0x7D55 type pointers
literal_at_0x7D56: first 0x7D56 last 0x7D57 type worddata
INK_pfa005: first 0x7D58 last 0x7D59 type pointers
literal_at_0x7D5A: first 0x7D5A last 0x7D5B type worddata
INK_pfa006: first 0x7D5C last 0x7D5F type pointers
literal_at_0x7D60: first 0x7D60 last 0x7D61 type worddata
INK_pfa007: first 0x7D62 last 0x7D65 type pointers
literal_at_0x7D66: first 0x7D66 last 0x7D67 type worddata
INK_pfa008: first 0x7D68 last 0x7D6D type pointers
literal_at_0x7D6E: first 0x7D6E last 0x7D6F type worddata
INK_pfa009: first 0x7D70 last 0x7D73 type pointers
literal_at_0x7D74: first 0x7D74 last 0x7D75 type worddata
INK_pfa010: first 0x7D76 last 0x7D79 type pointers
literal_at_0x7D7A: first 0x7D7A last 0x7D7B type worddata
INK_pfa011: first 0x7D7C last 0x7D7D type pointers
literal_at_0x7D7E: first 0x7D7E last 0x7D7F type worddata
INK_pfa012: first 0x7D80 last 0x7D83 type pointers
literal_at_0x7D84: first 0x7D84 last 0x7D85 type worddata
INK_pfa013: first 0x7D86 last 0x7D89 type pointers
literal_at_0x7D8A: first 0x7D8A last 0x7D8B type worddata
INK_pfa014: first 0x7D8C last 0x7D91 type pointers
literal_at_0x7D92: first 0x7D92 last 0x7D93 type worddata
INK_pfa015: first 0x7D94 last 0x7D95 type pointers
literal_at_0x7D96: first 0x7D96 last 0x7D97 type worddata
INK_pfa016: first 0x7D98 last 0x7D9B type pointers
literal_at_0x7D9C: first 0x7D9C last 0x7D9D type worddata
INK_pfa017: first 0x7D9E last 0x7DA3 type pointers
literal_at_0x7DA4: first 0x7DA4 last 0x7DA5 type worddata
INK_pfa018: first 0x7DA6 last 0x7DA9 type pointers
literal_at_0x7DAA: first 0x7DAA last 0x7DAB type worddata
INK_pfa019: first 0x7DAC last 0x7DAF type pointers
literal_at_0x7DB0: first 0x7DB0 last 0x7DB1 type worddata
INK_pfa020: first 0x7DB2 last 0x7DB5 type pointers
literal_at_0x7DB6: first 0x7DB6 last 0x7DB7 type worddata
INK_pfa021: first 0x7DB8 last 0x7DBB type pointers
literal_at_0x7DBC: first 0x7DBC last 0x7DBD type worddata
INK_pfa022: first 0x7DBE last 0x7DC1 type pointers
literal_at_0x7DC2: first 0x7DC2 last 0x7DC3 type worddata
INK_pfa023: first 0x7DC4 last 0x7DC7 type pointers
literal_at_0x7DC8: first 0x7DC8 last 0x7DC9 type worddata
INK_pfa024: first 0x7DCA last 0x7DCD type pointers
POINT_nfa: first 0x7D07 last 0x7D0C type bytedata
POINT_lfa: first 0x7D0D last 0x7D0E type pointers
POINT_cfa: first 0x7D0F last 0x7D10 type pointers
POINT_pfa: first 0x7D11 last 0x7D2F type code
ATTR_nfa: first 0x7CE7 last 0x7CEB type bytedata
ATTR_lfa: first 0x7CEC last 0x7CED type pointers
ATTR_cfa: first 0x7CEE last 0x7CEF type pointers
ATTR_pfa: first 0x7CF0 last 0x7D06 type code
PAPER_nfa: first 0x7C41 last 0x7C46 type bytedata
PAPER_lfa: first 0x7C47 last 0x7C48 type pointers
PAPER_cfa: first 0x7C49 last 0x7C4A type pointers
PAPER_pfa: first 0x7C4B last 0x7C50 type pointers
literal_at_0x7C51: first 0x7C51 last 0x7C52 type worddata
PAPER_pfa001: first 0x7C53 last 0x7C56 type pointers
literal_at_0x7C57: first 0x7C57 last 0x7C58 type worddata
PAPER_pfa002: first 0x7C59 last 0x7C5C type pointers
literal_at_0x7C5D: first 0x7C5D last 0x7C5E type worddata
PAPER_pfa003: first 0x7C5F last 0x7C62 type pointers
literal_at_0x7C63: first 0x7C63 last 0x7C64 type worddata
PAPER_pfa004: first 0x7C65 last 0x7C68 type pointers
literal_at_0x7C69: first 0x7C69 last 0x7C6A type worddata
PAPER_pfa005: first 0x7C6B last 0x7C6C type pointers
literal_at_0x7C6D: first 0x7C6D last 0x7C6E type worddata
PAPER_pfa006: first 0x7C6F last 0x7C72 type pointers
literal_at_0x7C73: first 0x7C73 last 0x7C74 type worddata
PAPER_pfa007: first 0x7C75 last 0x7C78 type pointers
literal_at_0x7C79: first 0x7C79 last 0x7C7A type worddata
PAPER_pfa008: first 0x7C7B last 0x7C80 type pointers
literal_at_0x7C81: first 0x7C81 last 0x7C82 type worddata
PAPER_pfa009: first 0x7C83 last 0x7C86 type pointers
literal_at_0x7C87: first 0x7C87 last 0x7C88 type worddata
PAPER_pfa010: first 0x7C89 last 0x7C8C type pointers
literal_at_0x7C8D: first 0x7C8D last 0x7C8E type worddata
PAPER_pfa011: first 0x7C8F last 0x7C90 type pointers
literal_at_0x7C91: first 0x7C91 last 0x7C92 type worddata
PAPER_pfa012: first 0x7C93 last 0x7C96 type pointers
literal_at_0x7C97: first 0x7C97 last 0x7C98 type worddata
PAPER_pfa013: first 0x7C99 last 0x7C9C type pointers
literal_at_0x7C9D: first 0x7C9D last 0x7C9E type worddata
PAPER_pfa014: first 0x7C9F last 0x7CA4 type pointers
literal_at_0x7CA5: first 0x7CA5 last 0x7CA6 type worddata
PAPER_pfa015: first 0x7CA7 last 0x7CA8 type pointers
literal_at_0x7CA9: first 0x7CA9 last 0x7CAA type worddata
PAPER_pfa016: first 0x7CAB last 0x7CAE type pointers
literal_at_0x7CAF: first 0x7CAF last 0x7CB0 type worddata
PAPER_pfa017: first 0x7CB1 last 0x7CB4 type pointers
literal_at_0x7CB5: first 0x7CB5 last 0x7CB6 type worddata
PAPER_pfa018: first 0x7CB7 last 0x7CBC type pointers
literal_at_0x7CBD: first 0x7CBD last 0x7CBE type worddata
PAPER_pfa019: first 0x7CBF last 0x7CC2 type pointers
literal_at_0x7CC3: first 0x7CC3 last 0x7CC4 type worddata
PAPER_pfa020: first 0x7CC5 last 0x7CC8 type pointers
literal_at_0x7CC9: first 0x7CC9 last 0x7CCA type worddata
PAPER_pfa021: first 0x7CCB last 0x7CCE type pointers
literal_at_0x7CCF: first 0x7CCF last 0x7CD0 type worddata
PAPER_pfa022: first 0x7CD1 last 0x7CD4 type pointers
literal_at_0x7CD5: first 0x7CD5 last 0x7CD6 type worddata
PAPER_pfa023: first 0x7CD7 last 0x7CDA type pointers
literal_at_0x7CDB: first 0x7CDB last 0x7CDC type worddata
PAPER_pfa024: first 0x7CDD last 0x7CE0 type pointers
literal_at_0x7CE1: first 0x7CE1 last 0x7CE2 type worddata
PAPER_pfa025: first 0x7CE3 last 0x7CE6 type pointers
BLEEP_nfa: first 0x7C29 last 0x7C2E type bytedata
BLEEP_lfa: first 0x7C2F last 0x7C30 type pointers
BLEEP_cfa: first 0x7C31 last 0x7C32 type pointers
BLEEP_pfa: first 0x7C33 last 0x7C40 type code
BORDER_nfa: first 0x7C14 last 0x7C1A type bytedata
BORDER_lfa: first 0x7C1B last 0x7C1C type pointers
BORDER_cfa: first 0x7C1D last 0x7C1E type pointers
BORDER_pfa: first 0x7C1F last 0x7C28 type code
AT_nfa: first 0x7BD7 last 0x7BD9 type bytedata
AT_lfa: first 0x7BDA last 0x7BDB type pointers
AT_cfa: first 0x7BDC last 0x7BDD type pointers
AT_pfa: first 0x7BDE last 0x7BE3 type pointers
literal_at_0x7BE4: first 0x7BE4 last 0x7BE5 type worddata
AT_pfa001: first 0x7BE6 last 0x7BE9 type pointers
literal_at_0x7BEA: first 0x7BEA last 0x7BEB type worddata
AT_pfa002: first 0x7BEC last 0x7BEF type pointers
literal_at_0x7BF0: first 0x7BF0 last 0x7BF1 type worddata
AT_pfa003: first 0x7BF2 last 0x7BF9 type pointers
literal_at_0x7BFA: first 0x7BFA last 0x7BFB type worddata
AT_pfa004: first 0x7BFC last 0x7BFF type pointers
literal_at_0x7C00: first 0x7C00 last 0x7C01 type worddata
AT_pfa005: first 0x7C02 last 0x7C05 type pointers
literal_at_0x7C06: first 0x7C06 last 0x7C07 type worddata
AT_pfa006: first 0x7C08 last 0x7C09 type pointers
literal_at_0x7C0A: first 0x7C0A last 0x7C0B type worddata
AT_pfa007: first 0x7C0C last 0x7C13 type pointers
SCREEN_nfa: first 0x7BB4 last 0x7BBA type bytedata
SCREEN_lfa: first 0x7BBB last 0x7BBC type pointers
SCREEN_cfa: first 0x7BBD last 0x7BBE type pointers
SCREEN_pfa: first 0x7BBF last 0x7BD6 type code
OUTP_nfa: first 0x7B9F last 0x7BA3 type bytedata
OUTP_lfa: first 0x7BA4 last 0x7BA5 type pointers
OUTP_cfa: first 0x7BA6 last 0x7BA7 type pointers
OUTP_pfa: first 0x7BA8 last 0x7BB3 type code
INP_nfa: first 0x7B89 last 0x7B8C type bytedata
INP_lfa: first 0x7B8D last 0x7B8E type pointers
INP_cfa: first 0x7B8F last 0x7B90 type pointers
INP_pfa: first 0x7B91 last 0x7B9E type code
PUSHDE_nfa: first 0x7B7C last 0x7B82 type bytedata
PUSHDE_lfa: first 0x7B83 last 0x7B84 type pointers
PUSHDE_cfa: first 0x7B85 last 0x7B86 type pointers
PUSHDE_pfa: first 0x7B87 last 0x7B88 type worddata
PUSHHL_nfa: first 0x7B6F last 0x7B75 type bytedata
PUSHHL_lfa: first 0x7B76 last 0x7B77 type pointers
PUSHHL_cfa: first 0x7B78 last 0x7B79 type pointers
PUSHHL_pfa: first 0x7B7A last 0x7B7B type worddata
NEXT_nfa: first 0x7B64 last 0x7B68 type bytedata
NEXT_lfa: first 0x7B69 last 0x7B6A type pointers
NEXT_cfa: first 0x7B6B last 0x7B6C type pointers
NEXT_pfa: first 0x7B6D last 0x7B6E type worddata
WHERE_nfa: first 0x77AE last 0x77B3 type bytedata
WHERE_lfa: first 0x77B4 last 0x77B5 type pointers
WHERE_cfa: first 0x77B6 last 0x77B7 type pointers
WHERE_pfa: first 0x77B8 last 0x77C5 type pointers
string_at_0x77C6: first 0x77C6 last 0x77CC type bytedata
WHERE_pfa001: first 0x77CD last 0x77F2 type pointers
literal_at_0x77F3: first 0x77F3 last 0x77F4 type worddata
WHERE_pfa002: first 0x77F5 last 0x77FC type pointers
EDITOR_nfa: first 0x779B last 0x77A1 type bytedata
EDITOR_lfa: first 0x77A2 last 0x77A3 type pointers
EDITOR_cfa: first 0x77A4 last 0x77A5 type pointers
EDITOR_pfa: first 0x77A6 last 0x77A7 type pointers
literal_at_0x77A8: first 0x77A8 last 0x77A9 type worddata
EDITOR_pfa001: first 0x77AA last 0x77AD type pointers
TRIAD_nfa: first 0x7769 last 0x776E type bytedata
TRIAD_lfa: first 0x776F last 0x7770 type pointers
TRIAD_cfa: first 0x7771 last 0x7772 type pointers
TRIAD_pfa: first 0x7773 last 0x7790 type pointers
literal_at_0x7791: first 0x7791 last 0x7792 type worddata
TRIAD_pfa001: first 0x7793 last 0x7796 type pointers
literal_at_0x7797: first 0x7797 last 0x7798 type worddata
TRIAD_pfa002: first 0x7799 last 0x779A type pointers
INDEX_nfa: first 0x7739 last 0x773E type bytedata
INDEX_lfa: first 0x773F last 0x7740 type pointers
INDEX_cfa: first 0x7741 last 0x7742 type pointers
INDEX_pfa: first 0x7743 last 0x775E type pointers
literal_at_0x775F: first 0x775F last 0x7760 type worddata
INDEX_pfa001: first 0x7761 last 0x7764 type pointers
literal_at_0x7765: first 0x7765 last 0x7766 type worddata
INDEX_pfa002: first 0x7767 last 0x7768 type pointers
FORGET_nfa: first 0x76FA last 0x7700 type bytedata
FORGET_lfa: first 0x7701 last 0x7702 type pointers
FORGET_cfa: first 0x7703 last 0x7704 type pointers
FORGET_pfa: first 0x7705 last 0x7710 type pointers
literal_at_0x7711: first 0x7711 last 0x7712 type worddata
FORGET_pfa001: first 0x7713 last 0x7720 type pointers
literal_at_0x7721: first 0x7721 last 0x7722 type worddata
FORGET_pfa002: first 0x7723 last 0x7738 type pointers
FREE_nfa: first 0x76E9 last 0x76ED type bytedata
FREE_lfa: first 0x76EE last 0x76EF type pointers
FREE_cfa: first 0x76F0 last 0x76F1 type pointers
FREE_pfa: first 0x76F2 last 0x76F9 type pointers
SIZE_nfa: first 0x76D6 last 0x76DA type bytedata
SIZE_lfa: first 0x76DB last 0x76DC type pointers
SIZE_cfa: first 0x76DD last 0x76DE type pointers
SIZE_pfa: first 0x76DF last 0x76E8 type pointers
2SWAP_nfa: first 0x76C2 last 0x76C7 type bytedata
2SWAP_lfa: first 0x76C8 last 0x76C9 type pointers
2SWAP_cfa: first 0x76CA last 0x76CB type pointers
2SWAP_pfa: first 0x76CC last 0x76D5 type pointers
2DROP_nfa: first 0x76B2 last 0x76B7 type bytedata
2DROP_lfa: first 0x76B8 last 0x76B9 type pointers
2DROP_cfa: first 0x76BA last 0x76BB type pointers
2DROP_pfa: first 0x76BC last 0x76C1 type pointers
VERIFY_nfa: first 0x76A1 last 0x76A7 type bytedata
VERIFY_lfa: first 0x76A8 last 0x76A9 type pointers
VERIFY_cfa: first 0x76AA last 0x76AB type pointers
VERIFY_pfa: first 0x76AC last 0x76B1 type pointers
SAVET_nfa: first 0x768F last 0x7694 type bytedata
SAVET_lfa: first 0x7695 last 0x7696 type pointers
SAVET_cfa: first 0x7697 last 0x7698 type pointers
SAVET_pfa: first 0x7699 last 0x76A0 type pointers
LOADT_nfa: first 0x767F last 0x7684 type bytedata
LOADT_lfa: first 0x7685 last 0x7686 type pointers
LOADT_cfa: first 0x7687 last 0x7688 type pointers
LOADT_pfa: first 0x7689 last 0x768E type pointers
LINE_nfa: first 0x765E last 0x7662 type bytedata
LINE_lfa: first 0x7663 last 0x7664 type pointers
LINE_cfa: first 0x7665 last 0x7666 type pointers
LINE_pfa: first 0x7667 last 0x766A type pointers
literal_at_0x766B: first 0x766B last 0x766C type worddata
LINE_pfa001: first 0x766D last 0x7670 type pointers
literal_at_0x7671: first 0x7671 last 0x7672 type worddata
LINE_pfa002: first 0x7673 last 0x767E type pointers
TEXT_nfa: first 0x763F last 0x7643 type bytedata
TEXT_lfa: first 0x7644 last 0x7645 type pointers
TEXT_cfa: first 0x7646 last 0x7647 type pointers
TEXT_pfa: first 0x7648 last 0x765D type pointers
MON_nfa: first 0x762B last 0x762E type bytedata
MON_lfa: first 0x762F last 0x7630 type pointers
MON_cfa: first 0x7631 last 0x7632 type pointers
MON_pfa: first 0x7633 last 0x763E type code
(TAPE)_nfa: first 0x7608 last 0x760E type bytedata
(TAPE)_lfa: first 0x760F last 0x7610 type pointers
(TAPE)_cfa: first 0x7611 last 0x7612 type pointers
(TAPE)_pfa: first 0x7613 last 0x762A type code
.CPU_nfa: first 0x75CB last 0x75CF type bytedata
.CPU_lfa: first 0x75D0 last 0x75D1 type pointers
.CPU_cfa: first 0x75D2 last 0x75D3 type pointers
.CPU_pfa: first 0x75D4 last 0x75D5 type pointers
string_at_0x75D6: first 0x75D6 last 0x75E3 type bytedata
.CPU_pfa001: first 0x75E4 last 0x75E5 type pointers
CLS_nfa: first 0x75B1 last 0x75B4 type bytedata
CLS_lfa: first 0x75B5 last 0x75B6 type pointers
CLS_cfa: first 0x75B7 last 0x75B8 type pointers
CLS_pfa: first 0x75B9 last 0x75CA type code
LINK_nfa: first 0x759B last 0x759F type bytedata
LINK_lfa: first 0x75A0 last 0x75A1 type pointers
LINK_cfa: first 0x75A2 last 0x75A3 type pointers
LINK_pfa: first 0x75A4 last 0x75B0 type code
LIST_nfa: first 0x7551 last 0x7555 type bytedata
LIST_lfa: first 0x7556 last 0x7557 type pointers
LIST_cfa: first 0x7558 last 0x7559 type pointers
LIST_pfa: first 0x755A last 0x7565 type pointers
string_at_0x7566: first 0x7566 last 0x756C type bytedata
LIST_pfa001: first 0x756D last 0x7570 type pointers
literal_at_0x7571: first 0x7571 last 0x7572 type worddata
LIST_pfa002: first 0x7573 last 0x757C type pointers
literal_at_0x757D: first 0x757D last 0x757E type worddata
LIST_pfa003: first 0x757F last 0x758E type pointers
literal_at_0x758F: first 0x758F last 0x7590 type worddata
LIST_pfa004: first 0x7591 last 0x7594 type pointers
literal_at_0x7595: first 0x7595 last 0x7596 type worddata
LIST_pfa005: first 0x7597 last 0x759A type pointers
VLIST_nfa: first 0x7503 last 0x7508 type bytedata
VLIST_lfa: first 0x7509 last 0x750A type pointers
VLIST_cfa: first 0x750B last 0x750C type pointers
VLIST_pfa: first 0x750D last 0x750E type pointers
literal_at_0x750F: first 0x750F last 0x7510 type worddata
VLIST_pfa001: first 0x7511 last 0x7520 type pointers
literal_at_0x7521: first 0x7521 last 0x7522 type worddata
VLIST_pfa002: first 0x7523 last 0x7524 type pointers
literal_at_0x7525: first 0x7525 last 0x7526 type worddata
VLIST_pfa003: first 0x7527 last 0x752C type pointers
literal_at_0x752D: first 0x752D last 0x752E type worddata
VLIST_pfa004: first 0x752F last 0x754A type pointers
literal_at_0x754B: first 0x754B last 0x754C type worddata
VLIST_pfa005: first 0x754D last 0x7550 type pointers
U._nfa: first 0x74F6 last 0x74F8 type bytedata
U._lfa: first 0x74F9 last 0x74FA type pointers
U._cfa: first 0x74FB last 0x74FC type pointers
U._pfa: first 0x74FD last 0x7502 type pointers
?_nfa: first 0x74EA last 0x74EB type bytedata
?_lfa: first 0x74EC last 0x74ED type pointers
?_cfa: first 0x74EE last 0x74EF type pointers
?_pfa: first 0x74F0 last 0x74F5 type pointers
._nfa: first 0x74DE last 0x74DF type bytedata
._lfa: first 0x74E0 last 0x74E1 type pointers
._cfa: first 0x74E2 last 0x74E3 type pointers
._pfa: first 0x74E4 last 0x74E9 type pointers
D._nfa: first 0x74CF last 0x74D1 type bytedata
D._lfa: first 0x74D2 last 0x74D3 type pointers
D._cfa: first 0x74D4 last 0x74D5 type pointers
D._pfa: first 0x74D6 last 0x74DD type pointers
.R_nfa: first 0x74BE last 0x74C0 type bytedata
.R_lfa: first 0x74C1 last 0x74C2 type pointers
.R_cfa: first 0x74C3 last 0x74C4 type pointers
.R_pfa: first 0x74C5 last 0x74CE type pointers
D.R_nfa: first 0x749A last 0x749D type bytedata
D.R_lfa: first 0x749E last 0x749F type pointers
D.R_cfa: first 0x74A0 last 0x74A1 type pointers
D.R_pfa: first 0x74A2 last 0x74BD type pointers
#S_nfa: first 0x7483 last 0x7485 type bytedata
#S_lfa: first 0x7486 last 0x7487 type pointers
#S_cfa: first 0x7488 last 0x7489 type pointers
#S_pfa: first 0x748A last 0x7495 type pointers
literal_at_0x7496: first 0x7496 last 0x7497 type worddata
#S_pfa001: first 0x7498 last 0x7499 type pointers
#_nfa: first 0x7459 last 0x745A type bytedata
#_lfa: first 0x745B last 0x745C type pointers
#_cfa: first 0x745D last 0x745E type pointers
#_pfa: first 0x745F last 0x7468 type pointers
literal_at_0x7469: first 0x7469 last 0x746A type worddata
#_pfa001: first 0x746B last 0x7470 type pointers
literal_at_0x7471: first 0x7471 last 0x7472 type worddata
#_pfa002: first 0x7473 last 0x7474 type pointers
literal_at_0x7475: first 0x7475 last 0x7476 type worddata
#_pfa003: first 0x7477 last 0x747A type pointers
literal_at_0x747B: first 0x747B last 0x747C type worddata
#_pfa004: first 0x747D last 0x7482 type pointers
SIGN_nfa: first 0x7440 last 0x7444 type bytedata
SIGN_lfa: first 0x7445 last 0x7446 type pointers
SIGN_cfa: first 0x7447 last 0x7448 type pointers
SIGN_pfa: first 0x7449 last 0x744E type pointers
literal_at_0x744F: first 0x744F last 0x7450 type worddata
SIGN_pfa001: first 0x7451 last 0x7452 type pointers
literal_at_0x7453: first 0x7453 last 0x7454 type worddata
SIGN_pfa002: first 0x7455 last 0x7458 type pointers
#>_nfa: first 0x7429 last 0x742B type bytedata
#>_lfa: first 0x742C last 0x742D type pointers
#>_cfa: first 0x742E last 0x742F type pointers
#>_pfa: first 0x7430 last 0x743F type pointers
<#_nfa: first 0x741A last 0x741C type bytedata
<#_lfa: first 0x741D last 0x741E type pointers
<#_cfa: first 0x741F last 0x7420 type pointers
<#_pfa: first 0x7421 last 0x7428 type pointers
SPACES_nfa: first 0x73F9 last 0x73FF type bytedata
SPACES_lfa: first 0x7400 last 0x7401 type pointers
SPACES_cfa: first 0x7402 last 0x7403 type pointers
SPACES_pfa: first 0x7404 last 0x740B type pointers
literal_at_0x740C: first 0x740C last 0x740D type worddata
SPACES_pfa001: first 0x740E last 0x7415 type pointers
literal_at_0x7416: first 0x7416 last 0x7417 type worddata
SPACES_pfa002: first 0x7418 last 0x7419 type pointers
WHILE_nfa: first 0x73E9 last 0x73EE type bytedata
WHILE_lfa: first 0x73EF last 0x73F0 type pointers
WHILE_cfa: first 0x73F1 last 0x73F2 type pointers
WHILE_pfa: first 0x73F3 last 0x73F8 type pointers
ELSE_nfa: first 0x73C8 last 0x73CC type bytedata
ELSE_lfa: first 0x73CD last 0x73CE type pointers
ELSE_cfa: first 0x73CF last 0x73D0 type pointers
ELSE_pfa: first 0x73D1 last 0x73E8 type pointers
IF_nfa: first 0x73B3 last 0x73B5 type bytedata
IF_lfa: first 0x73B6 last 0x73B7 type pointers
IF_cfa: first 0x73B8 last 0x73B9 type pointers
IF_pfa: first 0x73BA last 0x73C7 type pointers
REPEAT_nfa: first 0x7396 last 0x739C type bytedata
REPEAT_lfa: first 0x739D last 0x739E type pointers
REPEAT_cfa: first 0x739F last 0x73A0 type pointers
REPEAT_pfa: first 0x73A1 last 0x73B2 type pointers
AGAIN_nfa: first 0x7380 last 0x7385 type bytedata
AGAIN_lfa: first 0x7386 last 0x7387 type pointers
AGAIN_cfa: first 0x7388 last 0x7389 type pointers
AGAIN_pfa: first 0x738A last 0x7395 type pointers
END_nfa: first 0x7374 last 0x7377 type bytedata
END_lfa: first 0x7378 last 0x7379 type pointers
END_cfa: first 0x737A last 0x737B type pointers
END_pfa: first 0x737C last 0x737F type pointers
UNTIL_nfa: first 0x735E last 0x7363 type bytedata
UNTIL_lfa: first 0x7364 last 0x7365 type pointers
UNTIL_cfa: first 0x7366 last 0x7367 type pointers
UNTIL_pfa: first 0x7368 last 0x7373 type pointers
+LOOP_nfa: first 0x7348 last 0x734D type bytedata
+LOOP_lfa: first 0x734E last 0x734F type pointers
+LOOP_cfa: first 0x7350 last 0x7351 type pointers
+LOOP_pfa: first 0x7352 last 0x735D type pointers
LOOP_nfa: first 0x7333 last 0x7337 type bytedata
LOOP_lfa: first 0x7338 last 0x7339 type pointers
LOOP_cfa: first 0x733A last 0x733B type pointers
LOOP_pfa: first 0x733C last 0x7347 type pointers
DO_nfa: first 0x7322 last 0x7324 type bytedata
DO_lfa: first 0x7325 last 0x7326 type pointers
DO_cfa: first 0x7327 last 0x7328 type pointers
DO_pfa: first 0x7329 last 0x7332 type pointers
THEN_nfa: first 0x7315 last 0x7319 type bytedata
THEN_lfa: first 0x731A last 0x731B type pointers
THEN_cfa: first 0x731C last 0x731D type pointers
THEN_pfa: first 0x731E last 0x7321 type pointers
ENDIF_nfa: first 0x72F9 last 0x72FE type bytedata
ENDIF_lfa: first 0x72FF last 0x7300 type pointers
ENDIF_cfa: first 0x7301 last 0x7302 type pointers
ENDIF_pfa: first 0x7303 last 0x7314 type pointers
BEGIN_nfa: first 0x72E7 last 0x72EC type bytedata
BEGIN_lfa: first 0x72ED last 0x72EE type pointers
BEGIN_cfa: first 0x72EF last 0x72F0 type pointers
BEGIN_pfa: first 0x72F1 last 0x72F8 type pointers
BACK_nfa: first 0x72D6 last 0x72DA type bytedata
BACK_lfa: first 0x72DB last 0x72DC type pointers
BACK_cfa: first 0x72DD last 0x72DE type pointers
BACK_pfa: first 0x72DF last 0x72E6 type pointers
'_nfa: first 0x72C2 last 0x72C3 type bytedata
'_lfa: first 0x72C4 last 0x72C5 type pointers
'_cfa: first 0x72C6 last 0x72C7 type pointers
'_pfa: first 0x72C8 last 0x72D5 type pointers
-->_nfa: first 0x72A0 last 0x72A3 type bytedata
-->_lfa: first 0x72A4 last 0x72A5 type pointers
-->_cfa: first 0x72A6 last 0x72A7 type pointers
-->_pfa: first 0x72A8 last 0x72C1 type pointers
LOAD_nfa: first 0x7261 last 0x7265 type bytedata
LOAD_lfa: first 0x7266 last 0x7267 type pointers
LOAD_cfa: first 0x7268 last 0x7269 type pointers
LOAD_pfa: first 0x726A last 0x7271 type pointers
literal_at_0x7272: first 0x7272 last 0x7273 type worddata
LOAD_pfa001: first 0x7274 last 0x729F type pointers
FLUSH_nfa: first 0x7243 last 0x7248 type bytedata
FLUSH_lfa: first 0x7249 last 0x724A type pointers
FLUSH_cfa: first 0x724B last 0x724C type pointers
FLUSH_pfa: first 0x724D last 0x725C type pointers
literal_at_0x725D: first 0x725D last 0x725E type worddata
FLUSH_pfa001: first 0x725F last 0x7260 type pointers
R/W_nfa: first 0x7217 last 0x721A type bytedata
R/W_lfa: first 0x721B last 0x721C type pointers
R/W_cfa: first 0x721D last 0x721E type pointers
R/W_pfa: first 0x721F last 0x7238 type pointers
literal_at_0x7239: first 0x7239 last 0x723A type worddata
R/W_pfa001: first 0x723B last 0x7242 type pointers
HI_nfa: first 0x720E last 0x7210 type bytedata
HI_lfa: first 0x7211 last 0x7212 type pointers
HI_cfa: first 0x7213 last 0x7214 type pointers
HI_pfa: first 0x7215 last 0x7216 type worddata
LO_nfa: first 0x7205 last 0x7207 type bytedata
LO_lfa: first 0x7208 last 0x7209 type pointers
LO_cfa: first 0x720A last 0x720B type pointers
LO_pfa: first 0x720C last 0x720D type worddata
BLOCK_nfa: first 0x71A5 last 0x71AA type bytedata
BLOCK_lfa: first 0x71AB last 0x71AC type pointers
BLOCK_cfa: first 0x71AD last 0x71AE type pointers
BLOCK_pfa: first 0x71AF last 0x71C8 type pointers
literal_at_0x71C9: first 0x71C9 last 0x71CA type worddata
BLOCK_pfa001: first 0x71CB last 0x71D0 type pointers
literal_at_0x71D1: first 0x71D1 last 0x71D2 type worddata
BLOCK_pfa002: first 0x71D3 last 0x71F4 type pointers
literal_at_0x71F5: first 0x71F5 last 0x71F6 type worddata
BLOCK_pfa003: first 0x71F7 last 0x7204 type pointers
BUFFER_nfa: first 0x715C last 0x7162 type bytedata
BUFFER_lfa: first 0x7163 last 0x7164 type pointers
BUFFER_cfa: first 0x7165 last 0x7166 type pointers
BUFFER_pfa: first 0x7167 last 0x7172 type pointers
literal_at_0x7173: first 0x7173 last 0x7174 type worddata
BUFFER_pfa001: first 0x7175 last 0x7180 type pointers
literal_at_0x7181: first 0x7181 last 0x7182 type worddata
BUFFER_pfa002: first 0x7183 last 0x718C type pointers
literal_at_0x718D: first 0x718D last 0x718E type worddata
BUFFER_pfa003: first 0x718F last 0x71A4 type pointers
DR0_nfa: first 0x714C last 0x714F type bytedata
DR0_lfa: first 0x7150 last 0x7151 type pointers
DR0_cfa: first 0x7152 last 0x7153 type pointers
DR0_pfa: first 0x7154 last 0x715B type pointers
EMPTY-BUFFERS_nfa: first 0x7118 last 0x7125 type bytedata
EMPTY-BUFFERS_lfa: first 0x7126 last 0x7127 type pointers
EMPTY-BUFFERS_cfa: first 0x7128 last 0x7129 type pointers
EMPTY-BUFFERS_pfa: first 0x712A last 0x713B type pointers
literal_at_0x713C: first 0x713C last 0x713D type worddata
EMPTY-BUFFERS_pfa001: first 0x713E last 0x7143 type pointers
literal_at_0x7144: first 0x7144 last 0x7145 type worddata
EMPTY-BUFFERS_pfa002: first 0x7146 last 0x7147 type pointers
literal_at_0x7148: first 0x7148 last 0x7149 type worddata
EMPTY-BUFFERS_pfa003: first 0x714A last 0x714B type pointers
UPDATE_nfa: first 0x70F9 last 0x70FF type bytedata
UPDATE_lfa: first 0x7100 last 0x7101 type pointers
UPDATE_cfa: first 0x7102 last 0x7103 type pointers
UPDATE_pfa: first 0x7104 last 0x710B type pointers
literal_at_0x710C: first 0x710C last 0x710D type worddata
UPDATE_pfa001: first 0x710E last 0x7117 type pointers
+BUF_nfa: first 0x70D2 last 0x70D6 type bytedata
+BUF_lfa: first 0x70D7 last 0x70D8 type pointers
+BUF_cfa: first 0x70D9 last 0x70DA type pointers
+BUF_pfa: first 0x70DB last 0x70DC type pointers
literal_at_0x70DD: first 0x70DD last 0x70DE type worddata
+BUF_pfa001: first 0x70DF last 0x70E8 type pointers
literal_at_0x70E9: first 0x70E9 last 0x70EA type worddata
+BUF_pfa002: first 0x70EB last 0x70F8 type pointers
#BUFF_nfa: first 0x70C6 last 0x70CB type bytedata
#BUFF_lfa: first 0x70CC last 0x70CD type pointers
#BUFF_cfa: first 0x70CE last 0x70CF type pointers
#BUFF_pfa: first 0x70D0 last 0x70D1 type worddata
PREV_nfa: first 0x70BB last 0x70BF type bytedata
PREV_lfa: first 0x70C0 last 0x70C1 type pointers
PREV_cfa: first 0x70C2 last 0x70C3 type pointers
PREV_pfa: first 0x70C4 last 0x70C5 type worddata
USE_nfa: first 0x70B1 last 0x70B4 type bytedata
USE_lfa: first 0x70B5 last 0x70B6 type pointers
USE_cfa: first 0x70B7 last 0x70B8 type pointers
USE_pfa: first 0x70B9 last 0x70BA type worddata
MESSAGE_nfa: first 0x6F83 last 0x6F8A type bytedata
MESSAGE_lfa: first 0x6F8B last 0x6F8C type pointers
MESSAGE_cfa: first 0x6F8D last 0x6F8E type pointers
MESSAGE_pfa: first 0x6F8F last 0x6F94 type pointers
literal_at_0x6F95: first 0x6F95 last 0x6F96 type worddata
MESSAGE_pfa001: first 0x6F97 last 0x6F9A type pointers
literal_at_0x6F9B: first 0x6F9B last 0x6F9C type worddata
MESSAGE_pfa002: first 0x6F9D last 0x6F9E type pointers
literal_at_0x6F9F: first 0x6F9F last 0x6FA0 type worddata
MESSAGE_pfa003: first 0x6FA1 last 0x6FB0 type pointers
literal_at_0x6FB1: first 0x6FB1 last 0x6FB2 type worddata
MESSAGE_pfa004: first 0x6FB3 last 0x6FB4 type pointers
string_at_0x6FB5: first 0x6FB5 last 0x6FBB type bytedata
MESSAGE_pfa005: first 0x6FBC last 0x6FBF type pointers
.LINE_nfa: first 0x6F71 last 0x6F76 type bytedata
.LINE_lfa: first 0x6F77 last 0x6F78 type pointers
.LINE_cfa: first 0x6F79 last 0x6F7A type pointers
.LINE_pfa: first 0x6F7B last 0x6F82 type pointers
(LINE)_nfa: first 0x6F4A last 0x6F50 type bytedata
(LINE)_lfa: first 0x6F51 last 0x6F52 type pointers
(LINE)_cfa: first 0x6F53 last 0x6F54 type pointers
(LINE)_pfa: first 0x6F55 last 0x6F58 type pointers
literal_at_0x6F59: first 0x6F59 last 0x6F5A type worddata
(LINE)_pfa001: first 0x6F5B last 0x6F6C type pointers
literal_at_0x6F6D: first 0x6F6D last 0x6F6E type worddata
(LINE)_pfa002: first 0x6F6F last 0x6F70 type pointers
M/MOD_nfa: first 0x6F2C last 0x6F31 type bytedata
M/MOD_lfa: first 0x6F32 last 0x6F33 type pointers
M/MOD_cfa: first 0x6F34 last 0x6F35 type pointers
M/MOD_pfa: first 0x6F36 last 0x6F49 type pointers
*/_nfa: first 0x6F1D last 0x6F1F type bytedata
*/_lfa: first 0x6F20 last 0x6F21 type pointers
*/_cfa: first 0x6F22 last 0x6F23 type pointers
*/_pfa: first 0x6F24 last 0x6F2B type pointers
*/MOD_nfa: first 0x6F09 last 0x6F0E type bytedata
*/MOD_lfa: first 0x6F0F last 0x6F10 type pointers
*/MOD_cfa: first 0x6F11 last 0x6F12 type pointers
*/MOD_pfa: first 0x6F13 last 0x6F1C type pointers
MOD_nfa: first 0x6EFB last 0x6EFE type bytedata
MOD_lfa: first 0x6EFF last 0x6F00 type pointers
MOD_cfa: first 0x6F01 last 0x6F02 type pointers
MOD_pfa: first 0x6F03 last 0x6F08 type pointers
/_nfa: first 0x6EED last 0x6EEE type bytedata
/_lfa: first 0x6EEF last 0x6EF0 type pointers
/_cfa: first 0x6EF1 last 0x6EF2 type pointers
/_pfa: first 0x6EF3 last 0x6EFA type pointers
/MOD_nfa: first 0x6EDA last 0x6EDE type bytedata
/MOD_lfa: first 0x6EDF last 0x6EE0 type pointers
/MOD_cfa: first 0x6EE1 last 0x6EE2 type pointers
/MOD_pfa: first 0x6EE3 last 0x6EEC type pointers
*_nfa: first 0x6ECE last 0x6ECF type bytedata
*_lfa: first 0x6ED0 last 0x6ED1 type pointers
*_cfa: first 0x6ED2 last 0x6ED3 type pointers
*_pfa: first 0x6ED4 last 0x6ED9 type pointers
M/_nfa: first 0x6EA7 last 0x6EA9 type bytedata
M/_lfa: first 0x6EAA last 0x6EAB type pointers
M/_cfa: first 0x6EAC last 0x6EAD type pointers
M/_pfa: first 0x6EAE last 0x6ECD type pointers
M*_nfa: first 0x6E8C last 0x6E8E type bytedata
M*_lfa: first 0x6E8F last 0x6E90 type pointers
M*_cfa: first 0x6E91 last 0x6E92 type pointers
M*_pfa: first 0x6E93 last 0x6EA6 type pointers
MAX_nfa: first 0x6E76 last 0x6E79 type bytedata
MAX_lfa: first 0x6E7A last 0x6E7B type pointers
MAX_cfa: first 0x6E7C last 0x6E7D type pointers
MAX_pfa: first 0x6E7E last 0x6E83 type pointers
literal_at_0x6E84: first 0x6E84 last 0x6E85 type worddata
MAX_pfa001: first 0x6E86 last 0x6E8B type pointers
MIN_nfa: first 0x6E60 last 0x6E63 type bytedata
MIN_lfa: first 0x6E64 last 0x6E65 type pointers
MIN_cfa: first 0x6E66 last 0x6E67 type pointers
MIN_pfa: first 0x6E68 last 0x6E6D type pointers
literal_at_0x6E6E: first 0x6E6E last 0x6E6F type worddata
MIN_pfa001: first 0x6E70 last 0x6E75 type pointers
DABS_nfa: first 0x6E51 last 0x6E55 type bytedata
DABS_lfa: first 0x6E56 last 0x6E57 type pointers
DABS_cfa: first 0x6E58 last 0x6E59 type pointers
DABS_pfa: first 0x6E5A last 0x6E5F type pointers
ABS_nfa: first 0x6E43 last 0x6E46 type bytedata
ABS_lfa: first 0x6E47 last 0x6E48 type pointers
ABS_cfa: first 0x6E49 last 0x6E4A type pointers
ABS_pfa: first 0x6E4B last 0x6E50 type pointers
D+-_nfa: first 0x6E31 last 0x6E34 type bytedata
D+-_lfa: first 0x6E35 last 0x6E36 type pointers
D+-_cfa: first 0x6E37 last 0x6E38 type pointers
D+-_pfa: first 0x6E39 last 0x6E3C type pointers
literal_at_0x6E3D: first 0x6E3D last 0x6E3E type worddata
D+-_pfa001: first 0x6E3F last 0x6E42 type pointers
+-_nfa: first 0x6E20 last 0x6E22 type bytedata
+-_lfa: first 0x6E23 last 0x6E24 type pointers
+-_cfa: first 0x6E25 last 0x6E26 type pointers
+-_pfa: first 0x6E27 last 0x6E2A type pointers
literal_at_0x6E2B: first 0x6E2B last 0x6E2C type worddata
+-_pfa001: first 0x6E2D last 0x6E30 type pointers
S->D_nfa: first 0x6E0A last 0x6E0E type bytedata
S->D_lfa: first 0x6E0F last 0x6E10 type pointers
S->D_cfa: first 0x6E11 last 0x6E12 type pointers
S->D_pfa: first 0x6E13 last 0x6E1F type code
COLD_nfa: first 0x6DC9 last 0x6DCD type bytedata
COLD_lfa: first 0x6DCE last 0x6DCF type pointers
COLD_cfa: first 0x6DD0 last 0x6DD1 type pointers
COLD_pfa: first 0x6DD2 last 0x6DE7 type pointers
literal_at_0x6DE8: first 0x6DE8 last 0x6DE9 type worddata
COLD_pfa001: first 0x6DEA last 0x6DEB type pointers
literal_at_0x6DEC: first 0x6DEC last 0x6DED type worddata
COLD_pfa002: first 0x6DEE last 0x6DF1 type pointers
literal_at_0x6DF2: first 0x6DF2 last 0x6DF3 type worddata
COLD_pfa003: first 0x6DF4 last 0x6DF7 type pointers
literal_at_0x6DF8: first 0x6DF8 last 0x6DF9 type worddata
COLD_pfa004: first 0x6DFA last 0x6DFD type pointers
literal_at_0x6DFE: first 0x6DFE last 0x6DFF type worddata
COLD_pfa005: first 0x6E00 last 0x6E03 type pointers
literal_at_0x6E04: first 0x6E04 last 0x6E05 type worddata
COLD_pfa006: first 0x6E06 last 0x6E09 type pointers
WARM_nfa: first 0x6DA3 last 0x6DA7 type bytedata
WARM_lfa: first 0x6DA8 last 0x6DA9 type pointers
WARM_cfa: first 0x6DAA last 0x6DAB type pointers
WARM_pfa: first 0x6DAC last 0x6DAF type pointers
ABORT_nfa: first 0x6D50 last 0x6D55 type bytedata
ABORT_lfa: first 0x6D56 last 0x6D57 type pointers
ABORT_cfa: first 0x6D58 last 0x6D59 type pointers
ABORT_pfa: first 0x6D5A last 0x6D67 type pointers
string_at_0x6D68: first 0x6D68 last 0x6D76 type bytedata
ABORT_pfa001: first 0x6D77 last 0x6D7A type pointers
string_at_0x6D7B: first 0x6D7B last 0x6D8A type bytedata
ABORT_pfa002: first 0x6D8B last 0x6D92 type pointers
QUIT_nfa: first 0x6D24 last 0x6D28 type bytedata
QUIT_lfa: first 0x6D29 last 0x6D2A type pointers
QUIT_cfa: first 0x6D2B last 0x6D2C type pointers
QUIT_pfa: first 0x6D2D last 0x6D44 type pointers
literal_at_0x6D45: first 0x6D45 last 0x6D46 type worddata
QUIT_pfa001: first 0x6D47 last 0x6D48 type pointers
string_at_0x6D49: first 0x6D49 last 0x6D4B type bytedata
QUIT_pfa002: first 0x6D4C last 0x6D4D type pointers
literal_at_0x6D4E: first 0x6D4E last 0x6D4F type worddata
(_nfa: first 0x6D16 last 0x6D17 type bytedata
(_lfa: first 0x6D18 last 0x6D19 type pointers