-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz80dasm_blocks.txt
1847 lines (1828 loc) · 95.6 KB
/
z80dasm_blocks.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
;
;
; Abersoft Forth disassembled
; By Marcos Cruz (programandala.net), 2015
; Modified by Makefile using <words_labels.z80dasm_blocks.vim>.
; This file is part of
; This file is part of Abersoft Forth disassembled
; This file was automatically created by AbersoftForthz80dasmBlocks
; z80dasm_blocks.custom.txt
; vim: filetype=z80
top_most_word_in_forth_voc: first 0x5E4C unlabeled last 0x5E4D type pointers
backspace_char: first 0x5E4E unlabeled last 0x5E4F type worddata
init_user_pointer_value: first 0x5E50 unlabeled last 0x5E51 type pointers
cpu_name: first 0x5E62 unlabeled last 0x5E65 type worddata
lit_nfa: first 0x5E77 last 0x5E7A type bytedata
lit_lfa: first 0x5E7B last 0x5E7C type worddata
lit_cfa: first 0x5E7D last 0x5E7E type pointers
lit_pfa: first 0x5E7F last 0x5E87 type code
execute_nfa: first 0x5E88 last 0x5E8F type bytedata
execute_lfa: first 0x5E90 last 0x5E91 type pointers
execute_cfa: first 0x5E92 last 0x5E93 type pointers
execute_pfa: first 0x5E94 last 0x5E97 type code
branch_nfa: first 0x5E98 last 0x5E9E type bytedata
branch_lfa: first 0x5E9F last 0x5EA0 type pointers
branch_cfa: first 0x5EA1 last 0x5EA2 type pointers
branch_pfa: first 0x5EA3 last 0x5EAE type code
zero_branch_nfa: first 0x5EAF last 0x5EB6 type bytedata
zero_branch_lfa: first 0x5EB7 last 0x5EB8 type pointers
zero_branch_cfa: first 0x5EB9 last 0x5EBA type pointers
zero_branch_pfa: first 0x5EBB last 0x5EC4 type code
paren_loop_nfa: first 0x5EC5 last 0x5ECB type bytedata
paren_loop_lfa: first 0x5ECC last 0x5ECD type pointers
paren_loop_cfa: first 0x5ECE last 0x5ECF type pointers
paren_loop_pfa: first 0x5ED0 last 0x5EFD type code
paren_plus_loop_nfa: first 0x5EFE last 0x5F05 type bytedata
paren_plus_loop_lfa: first 0x5F06 last 0x5F07 type pointers
paren_plus_loop_cfa: first 0x5F08 last 0x5F09 type pointers
paren_plus_loop_pfa: first 0x5F0A last 0x5F0C type code
paren_do_nfa: first 0x5F0D last 0x5F11 type bytedata
paren_do_lfa: first 0x5F12 last 0x5F13 type pointers
paren_do_cfa: first 0x5F14 last 0x5F15 type pointers
paren_do_pfa: first 0x5F16 last 0x5F2B type code
i_nfa: first 0x5F2C last 0x5F2D type bytedata
i_lfa: first 0x5F2E last 0x5F2F type pointers
i_cfa: first 0x5F30 last 0x5F31 type pointers
i_pfa: first 0x5F32 last 0x5F3B type code
digit_nfa: first 0x5F3C last 0x5F41 type bytedata
digit_lfa: first 0x5F42 last 0x5F43 type pointers
digit_cfa: first 0x5F44 last 0x5F45 type pointers
digit_pfa: first 0x5F46 last 0x5F68 type code
paren_find_nfa: first 0x5F69 last 0x5F6F type bytedata
paren_find_lfa: first 0x5F70 last 0x5F71 type pointers
paren_find_cfa: first 0x5F72 last 0x5F73 type pointers
paren_find_pfa: first 0x5F74 last 0x5FB1 type code
enclose_nfa: first 0x5FB2 last 0x5FB9 type bytedata
enclose_lfa: first 0x5FBA last 0x5FBB type pointers
enclose_cfa: first 0x5FBC last 0x5FBD type pointers
enclose_pfa: first 0x5FBE last 0x5FF4 type code
emit_nfa: first 0x5FF5 last 0x5FF9 type bytedata
emit_lfa: first 0x5FFA last 0x5FFB type pointers
emit_cfa: first 0x5FFC last 0x5FFD type pointers
emit_pfa: first 0x5FFE last 0x6007 type pointers
key_nfa: first 0x6008 last 0x600B type bytedata
key_lfa: first 0x600C last 0x600D type pointers
key_cfa: first 0x600E last 0x600F type pointers
key_pfa: first 0x6010 last 0x6012 type code
question_terminal_nfa: first 0x6013 last 0x601C type bytedata
question_terminal_lfa: first 0x601D last 0x601E type pointers
question_terminal_cfa: first 0x601F last 0x6020 type pointers
question_terminal_pfa: first 0x6021 last 0x6026 type code
cr_nfa: first 0x6027 last 0x6029 type bytedata
cr_lfa: first 0x602A last 0x602B type pointers
cr_cfa: first 0x602C last 0x602D type pointers
cr_pfa: first 0x602E last 0x6030 type code
cmove_nfa: first 0x6031 last 0x6036 type bytedata
cmove_lfa: first 0x6037 last 0x6038 type pointers
cmove_cfa: first 0x6039 last 0x603A type pointers
cmove_pfa: first 0x603B last 0x6049 type code
u_star_nfa: first 0x604A last 0x604C type bytedata
u_star_lfa: first 0x604D last 0x604E type pointers
u_star_cfa: first 0x604F last 0x6050 type pointers
u_star_pfa: first 0x6051 last 0x607C type code
u_slash_mod_nfa: first 0x607D last 0x6082 type bytedata
u_slash_mod_lfa: first 0x6083 last 0x6084 type pointers
u_slash_mod_cfa: first 0x6085 last 0x6086 type pointers
u_slash_mod_pfa: first 0x6087 last 0x60C5 type code
and_nfa: first 0x60C6 last 0x60C9 type bytedata
and_lfa: first 0x60CA last 0x60CB type pointers
and_cfa: first 0x60CC last 0x60CD type pointers
and_pfa: first 0x60CE last 0x60D8 type code
or_nfa: first 0x60D9 last 0x60DB type bytedata
or_lfa: first 0x60DC last 0x60DD type pointers
or_cfa: first 0x60DE last 0x60DF type pointers
or_pfa: first 0x60E0 last 0x60EA type code
xor_nfa: first 0x60EB last 0x60EE type bytedata
xor_lfa: first 0x60EF last 0x60F0 type pointers
xor_cfa: first 0x60F1 last 0x60F2 type pointers
xor_pfa: first 0x60F3 last 0x60FD type code
sp_fetch_nfa: first 0x60FE last 0x6101 type bytedata
sp_fetch_lfa: first 0x6102 last 0x6103 type pointers
sp_fetch_cfa: first 0x6104 last 0x6105 type pointers
sp_fetch_pfa: first 0x6106 last 0x610C type code
sp_store_nfa: first 0x610D last 0x6110 type bytedata
sp_store_lfa: first 0x6111 last 0x6112 type pointers
sp_store_cfa: first 0x6113 last 0x6114 type pointers
sp_store_pfa: first 0x6115 last 0x611F type code
rp_fetch_nfa: first 0x6120 last 0x6123 type bytedata
rp_fetch_lfa: first 0x6124 last 0x6125 type pointers
rp_fetch_cfa: first 0x6126 last 0x6127 type pointers
rp_fetch_pfa: first 0x6128 last 0x612D type code
rp_store_nfa: first 0x612E last 0x6131 type bytedata
rp_store_lfa: first 0x6132 last 0x6133 type pointers
rp_store_cfa: first 0x6134 last 0x6135 type pointers
rp_store_pfa: first 0x6136 last 0x6142 type code
semicolon_s_nfa: first 0x6143 last 0x6145 type bytedata
semicolon_s_lfa: first 0x6146 last 0x6147 type pointers
semicolon_s_cfa: first 0x6148 last 0x6149 type pointers
semicolon_s_pfa: first 0x614A last 0x6156 type code
leave_nfa: first 0x6157 last 0x615C type bytedata
leave_lfa: first 0x615D last 0x615E type pointers
leave_cfa: first 0x615F last 0x6160 type pointers
leave_pfa: first 0x6161 last 0x616D type code
to_r_nfa: first 0x616E last 0x6170 type bytedata
to_r_lfa: first 0x6171 last 0x6172 type pointers
to_r_cfa: first 0x6173 last 0x6174 type pointers
to_r_pfa: first 0x6175 last 0x6182 type code
from_r_nfa: first 0x6183 last 0x6185 type bytedata
from_r_lfa: first 0x6186 last 0x6187 type pointers
from_r_cfa: first 0x6188 last 0x6189 type pointers
from_r_pfa: first 0x618A last 0x6197 type code
r_nfa: first 0x6198 last 0x6199 type bytedata
r_lfa: first 0x619A last 0x619B type pointers
r_cfa: first 0x619C last 0x619D type pointers
zero_equals_nfa: first 0x619E last 0x61A0 type bytedata
zero_equals_lfa: first 0x61A1 last 0x61A2 type pointers
zero_equals_cfa: first 0x61A3 last 0x61A4 type pointers
zero_equals_pfa: first 0x61A5 last 0x61B0 type code
zero_less_than_nfa: first 0x61B1 last 0x61B3 type bytedata
zero_less_than_lfa: first 0x61B4 last 0x61B5 type pointers
zero_less_than_cfa: first 0x61B6 last 0x61B7 type pointers
zero_less_than_pfa: first 0x61B8 last 0x61C2 type code
plus_nfa: first 0x61C3 last 0x61C4 type bytedata
plus_lfa: first 0x61C5 last 0x61C6 type pointers
plus_cfa: first 0x61C7 last 0x61C8 type pointers
plus_pfa: first 0x61C9 last 0x61CE type code
d_plus_nfa: first 0x61CF last 0x61D1 type bytedata
d_plus_lfa: first 0x61D2 last 0x61D3 type pointers
d_plus_cfa: first 0x61D4 last 0x61D5 type pointers
d_plus_pfa: first 0x61D6 last 0x61EA type code
minus_nfa: first 0x61EB last 0x61F0 type bytedata
minus_lfa: first 0x61F1 last 0x61F2 type pointers
minus_cfa: first 0x61F3 last 0x61F4 type pointers
minus_pfa: first 0x61F5 last 0x61FE type code
dminus_nfa: first 0x61FF last 0x6205 type bytedata
dminus_lfa: first 0x6206 last 0x6207 type pointers
dminus_cfa: first 0x6208 last 0x6209 type pointers
dminus_pfa: first 0x620A last 0x621E type code
over_nfa: first 0x621F last 0x6223 type bytedata
over_lfa: first 0x6224 last 0x6225 type pointers
over_cfa: first 0x6226 last 0x6227 type pointers
over_pfa: first 0x6228 last 0x622D type code
drop_nfa: first 0x622E last 0x6232 type bytedata
drop_lfa: first 0x6233 last 0x6234 type pointers
drop_cfa: first 0x6235 last 0x6236 type pointers
drop_pfa: first 0x6237 last 0x623A type code
swap_nfa: first 0x623B last 0x623F type bytedata
swap_lfa: first 0x6240 last 0x6241 type pointers
swap_cfa: first 0x6242 last 0x6243 type pointers
swap_pfa: first 0x6244 last 0x6248 type code
dup_nfa: first 0x6249 last 0x624C type bytedata
dup_lfa: first 0x624D last 0x624E type pointers
dup_cfa: first 0x624F last 0x6250 type pointers
dup_pfa: first 0x6251 last 0x6255 type code
two_dup_nfa: first 0x6256 last 0x625A type bytedata
two_dup_lfa: first 0x625B last 0x625C type pointers
two_dup_cfa: first 0x625D last 0x625E type pointers
two_dup_pfa: first 0x625F last 0x6265 type code
plus_store_nfa: first 0x6266 last 0x6268 type bytedata
plus_store_lfa: first 0x6269 last 0x626A type pointers
plus_store_cfa: first 0x626B last 0x626C type pointers
plus_store_pfa: first 0x626D last 0x6278 type code
toggle_nfa: first 0x6279 last 0x627F type bytedata
toggle_lfa: first 0x6280 last 0x6281 type pointers
toggle_cfa: first 0x6282 last 0x6283 type pointers
toggle_pfa: first 0x6284 last 0x628B type code
fetch_nfa: first 0x628C last 0x628D type bytedata
fetch_lfa: first 0x628E last 0x628F type pointers
fetch_cfa: first 0x6290 last 0x6291 type pointers
fetch_pfa: first 0x6292 last 0x6299 type code
c_fetch_nfa: first 0x629A last 0x629C type bytedata
c_fetch_lfa: first 0x629D last 0x629E type pointers
c_fetch_cfa: first 0x629F last 0x62A0 type pointers
c_fetch_pfa: first 0x62A1 last 0x62A7 type code
two_fetch_nfa: first 0x62A8 last 0x62AA type bytedata
two_fetch_lfa: first 0x62AB last 0x62AC type pointers
two_fetch_cfa: first 0x62AD last 0x62AE type pointers
two_fetch_pfa: first 0x62AF last 0x62BE type code
store_nfa: first 0x62BF last 0x62C0 type bytedata
store_lfa: first 0x62C1 last 0x62C2 type pointers
store_cfa: first 0x62C3 last 0x62C4 type pointers
store_pfa: first 0x62C5 last 0x62CC type code
c_store_nfa: first 0x62CD last 0x62CF type bytedata
c_store_lfa: first 0x62D0 last 0x62D1 type pointers
c_store_cfa: first 0x62D2 last 0x62D3 type pointers
c_store_pfa: first 0x62D4 last 0x62D9 type code
two_store_nfa: first 0x62DA last 0x62DC type bytedata
two_store_lfa: first 0x62DD last 0x62DE type pointers
two_store_cfa: first 0x62DF last 0x62E0 type pointers
two_store_pfa: first 0x62E1 last 0x62ED type code
colon_nfa: first 0x62EE last 0x62EF type bytedata
colon_lfa: first 0x62F0 last 0x62F1 type pointers
colon_cfa: first 0x62F2 last 0x62F3 type pointers
colon_pfa: first 0x62F4 last 0x6305 type pointers
colon_pfa100: first 0x6306 last 0x6315 type code
semicolon_nfa: first 0x6316 last 0x6317 type bytedata
semicolon_lfa: first 0x6318 last 0x6319 type pointers
semicolon_cfa: first 0x631A last 0x631B type pointers
semicolon_pfa: first 0x631C last 0x6327 type pointers
noop_nfa: first 0x6328 last 0x632C type bytedata
noop_lfa: first 0x632D last 0x632E type pointers
noop_cfa: first 0x632F last 0x6330 type pointers
noop_pfa: first 0x6331 last 0x6332 type pointers
constant_nfa: first 0x6333 last 0x633B type bytedata
constant_lfa: first 0x633C last 0x633D type pointers
constant_cfa: first 0x633E last 0x633F type pointers
constant_pfa: first 0x6340 last 0x6347 type pointers
constant_pfa100: first 0x6348 last 0x6350 type code
variable_nfa: first 0x6351 last 0x6359 type bytedata
variable_lfa: first 0x635A last 0x635B type pointers
variable_cfa: first 0x635C last 0x635D type pointers
variable_pfa: first 0x635E last 0x6361 type pointers
variable_pfa100: first 0x6362 last 0x6366 type code
user_nfa: first 0x6367 last 0x636B type bytedata
user_lfa: first 0x636C last 0x636D type pointers
user_cfa: first 0x636E last 0x636F type pointers
user_pfa: first 0x6370 last 0x6373 type pointers
user_pfa100: first 0x6374 last 0x637F type code
zero_nfa: first 0x6380 last 0x6381 type bytedata
zero_lfa: first 0x6382 last 0x6383 type pointers
zero_cfa: first 0x6384 last 0x6385 type pointers
zero_pfa: first 0x6386 last 0x6387 type worddata
one_nfa: first 0x6388 last 0x6389 type bytedata
one_lfa: first 0x638A last 0x638B type pointers
one_cfa: first 0x638C last 0x638D type pointers
one_pfa: first 0x638E last 0x638F type worddata
two_nfa: first 0x6390 last 0x6391 type bytedata
two_lfa: first 0x6392 last 0x6393 type pointers
two_cfa: first 0x6394 last 0x6395 type pointers
two_pfa: first 0x6396 last 0x6397 type worddata
three_nfa: first 0x6398 last 0x6399 type bytedata
three_lfa: first 0x639A last 0x639B type pointers
three_cfa: first 0x639C last 0x639D type pointers
three_pfa: first 0x639E last 0x639F type worddata
b_l_nfa: first 0x63A0 last 0x63A2 type bytedata
b_l_lfa: first 0x63A3 last 0x63A4 type pointers
b_l_cfa: first 0x63A5 last 0x63A6 type pointers
b_l_pfa: first 0x63A7 last 0x63A8 type worddata
c_slash_l_nfa: first 0x63A9 last 0x63AC type bytedata
c_slash_l_lfa: first 0x63AD last 0x63AE type pointers
c_slash_l_cfa: first 0x63AF last 0x63B0 type pointers
c_slash_l_pfa: first 0x63B1 last 0x63B2 type worddata
first_nfa: first 0x63B3 last 0x63B8 type bytedata
first_lfa: first 0x63B9 last 0x63BA type pointers
first_cfa: first 0x63BB last 0x63BC type pointers
first_pfa: first 0x63BD last 0x63BE type worddata
limit_nfa: first 0x63BF last 0x63C4 type bytedata
limit_lfa: first 0x63C5 last 0x63C6 type pointers
limit_cfa: first 0x63C7 last 0x63C8 type pointers
limit_pfa: first 0x63C9 last 0x63CA type worddata
b_slash_buf_nfa: first 0x63CB last 0x63D0 type bytedata
b_slash_buf_lfa: first 0x63D1 last 0x63D2 type pointers
b_slash_buf_cfa: first 0x63D3 last 0x63D4 type pointers
b_slash_buf_pfa: first 0x63D5 last 0x63D6 type worddata
b_slash_scr_nfa: first 0x63D7 last 0x63DC type bytedata
b_slash_scr_lfa: first 0x63DD last 0x63DE type pointers
b_slash_scr_cfa: first 0x63DF last 0x63E0 type pointers
b_slash_scr_pfa: first 0x63E1 last 0x63E2 type worddata
plus_origin_nfa: first 0x63E3 last 0x63EA type bytedata
plus_origin_lfa: first 0x63EB last 0x63EC type pointers
plus_origin_cfa: first 0x63ED last 0x63EE type pointers
plus_origin_pfa: first 0x63EF last 0x63F0 type pointers
literal_at_0x63F1: first 0x63F1 last 0x63F2 type worddata
plus_origin_pfa001: first 0x63F3 last 0x63F6 type pointers
s0_nfa: first 0x63F7 last 0x63F9 type bytedata
s0_lfa: first 0x63FA last 0x63FB type pointers
s0_cfa: first 0x63FC last 0x63FD type pointers
s0_pfa: first 0x63FE last 0x63FE type bytedata
r0_nfa: first 0x6400 last 0x6402 type bytedata
r0_lfa: first 0x6403 last 0x6404 type pointers
r0_cfa: first 0x6405 last 0x6406 type pointers
r0_pfa: first 0x6407 last 0x6407 type bytedata
tib_nfa: first 0x6409 last 0x640C type bytedata
tib_lfa: first 0x640D last 0x640E type pointers
tib_cfa: first 0x640F last 0x6410 type pointers
tib_pfa: first 0x6411 last 0x6411 type bytedata
width_nfa: first 0x6412 last 0x6417 type bytedata
width_lfa: first 0x6418 last 0x6419 type pointers
width_cfa: first 0x641A last 0x641B type pointers
width_pfa: first 0x641C last 0x641C type bytedata
warning_nfa: first 0x641D last 0x6424 type bytedata
warning_lfa: first 0x6425 last 0x6426 type pointers
warning_cfa: first 0x6427 last 0x6428 type pointers
warning_pfa: first 0x6429 last 0x6429 type bytedata
fence_nfa: first 0x642A last 0x642F type bytedata
fence_lfa: first 0x6430 last 0x6431 type pointers
fence_cfa: first 0x6432 last 0x6433 type pointers
fence_pfa: first 0x6434 last 0x6434 type bytedata
dp_nfa: first 0x6435 last 0x6437 type bytedata
dp_lfa: first 0x6438 last 0x6439 type pointers
dp_cfa: first 0x643A last 0x643B type pointers
dp_pfa: first 0x643C last 0x643C type bytedata
voc_link_nfa: first 0x643D last 0x6445 type bytedata
voc_link_lfa: first 0x6446 last 0x6447 type pointers
voc_link_cfa: first 0x6448 last 0x6449 type pointers
voc_link_pfa: first 0x644A last 0x644A type bytedata
blk_nfa: first 0x644B last 0x644E type bytedata
blk_lfa: first 0x644F last 0x6450 type pointers
blk_cfa: first 0x6451 last 0x6452 type pointers
blk_pfa: first 0x6453 last 0x6453 type bytedata
in_nfa: first 0x6454 last 0x6456 type bytedata
in_lfa: first 0x6457 last 0x6458 type pointers
in_cfa: first 0x6459 last 0x645A type pointers
in_pfa: first 0x645B last 0x645B type bytedata
out_nfa: first 0x645C last 0x645F type bytedata
out_lfa: first 0x6460 last 0x6461 type pointers
out_cfa: first 0x6462 last 0x6463 type pointers
out_pfa: first 0x6464 last 0x6464 type bytedata
scr_nfa: first 0x6465 last 0x6468 type bytedata
scr_lfa: first 0x6469 last 0x646A type pointers
scr_cfa: first 0x646B last 0x646C type pointers
scr_pfa: first 0x646D last 0x646D type bytedata
offset_nfa: first 0x646E last 0x6474 type bytedata
offset_lfa: first 0x6475 last 0x6476 type pointers
offset_cfa: first 0x6477 last 0x6478 type pointers
offset_pfa: first 0x6479 last 0x6479 type bytedata
context_nfa: first 0x647A last 0x6481 type bytedata
context_lfa: first 0x6482 last 0x6483 type pointers
context_cfa: first 0x6484 last 0x6485 type pointers
context_pfa: first 0x6486 last 0x6486 type bytedata
current_nfa: first 0x6487 last 0x648E type bytedata
current_lfa: first 0x648F last 0x6490 type pointers
current_cfa: first 0x6491 last 0x6492 type pointers
current_pfa: first 0x6493 last 0x6493 type bytedata
state_nfa: first 0x6494 last 0x6499 type bytedata
state_lfa: first 0x649A last 0x649B type pointers
state_cfa: first 0x649C last 0x649D type pointers
state_pfa: first 0x649E last 0x649E type bytedata
base_nfa: first 0x649F last 0x64A3 type bytedata
base_lfa: first 0x64A4 last 0x64A5 type pointers
base_cfa: first 0x64A6 last 0x64A7 type pointers
base_pfa: first 0x64A8 last 0x64A8 type bytedata
dpl_nfa: first 0x64A9 last 0x64AC type bytedata
dpl_lfa: first 0x64AD last 0x64AE type pointers
dpl_cfa: first 0x64AF last 0x64B0 type pointers
dpl_pfa: first 0x64B1 last 0x64B1 type bytedata
fld_nfa: first 0x64B2 last 0x64B5 type bytedata
fld_lfa: first 0x64B6 last 0x64B7 type pointers
fld_cfa: first 0x64B8 last 0x64B9 type pointers
fld_pfa: first 0x64BA last 0x64BA type bytedata
csp_nfa: first 0x64BB last 0x64BE type bytedata
csp_lfa: first 0x64BF last 0x64C0 type pointers
csp_cfa: first 0x64C1 last 0x64C2 type pointers
csp_pfa: first 0x64C3 last 0x64C3 type bytedata
r_hash_nfa: first 0x64C4 last 0x64C6 type bytedata
r_hash_lfa: first 0x64C7 last 0x64C8 type pointers
r_hash_cfa: first 0x64C9 last 0x64CA type pointers
r_hash_pfa: first 0x64CB last 0x64CB type bytedata
hld_nfa: first 0x64CC last 0x64CF type bytedata
hld_lfa: first 0x64D0 last 0x64D1 type pointers
hld_cfa: first 0x64D2 last 0x64D3 type pointers
hld_pfa: first 0x64D4 last 0x64D4 type bytedata
one_plus_nfa: first 0x64D5 last 0x64D7 type bytedata
one_plus_lfa: first 0x64D8 last 0x64D9 type pointers
one_plus_cfa: first 0x64DA last 0x64DB type pointers
one_plus_pfa: first 0x64DC last 0x64E1 type pointers
two_plus_nfa: first 0x64E2 last 0x64E4 type bytedata
two_plus_lfa: first 0x64E5 last 0x64E6 type pointers
two_plus_cfa: first 0x64E7 last 0x64E8 type pointers
two_plus_pfa: first 0x64E9 last 0x64EE type pointers
here_nfa: first 0x64EF last 0x64F3 type bytedata
here_lfa: first 0x64F4 last 0x64F5 type pointers
here_cfa: first 0x64F6 last 0x64F7 type pointers
here_pfa: first 0x64F8 last 0x64FD type pointers
allot_nfa: first 0x64FE last 0x6503 type bytedata
allot_lfa: first 0x6504 last 0x6505 type pointers
allot_cfa: first 0x6506 last 0x6507 type pointers
allot_pfa: first 0x6508 last 0x650D type pointers
comma_nfa: first 0x650E last 0x650F type bytedata
comma_lfa: first 0x6510 last 0x6511 type pointers
comma_cfa: first 0x6512 last 0x6513 type pointers
comma_pfa: first 0x6514 last 0x651D type pointers
c_comma_nfa: first 0x651E last 0x6520 type bytedata
c_comma_lfa: first 0x6521 last 0x6522 type pointers
c_comma_cfa: first 0x6523 last 0x6524 type pointers
c_comma_pfa: first 0x6525 last 0x652E type pointers
minus_sign_nfa: first 0x652F last 0x6530 type bytedata
minus_sign_lfa: first 0x6531 last 0x6532 type pointers
minus_sign_cfa: first 0x6533 last 0x6534 type pointers
minus_sign_pfa: first 0x6535 last 0x653C type code
equals_nfa: first 0x653D last 0x653E type bytedata
equals_lfa: first 0x653F last 0x6540 type pointers
equals_cfa: first 0x6541 last 0x6542 type pointers
equals_pfa: first 0x6543 last 0x6548 type pointers
less_than_nfa: first 0x6549 last 0x654A type bytedata
less_than_lfa: first 0x654B last 0x654C type pointers
less_than_cfa: first 0x654D last 0x654E type pointers
less_than_pfa: first 0x654F last 0x6569 type code
u_less_than_nfa: first 0x656A last 0x656C type bytedata
u_less_than_lfa: first 0x656D last 0x656E type pointers
u_less_than_cfa: first 0x656F last 0x6570 type pointers
u_less_than_pfa: first 0x6571 last 0x6578 type pointers
literal_at_0x6579: first 0x6579 last 0x657A type worddata
u_less_than_pfa001: first 0x657B last 0x6582 type pointers
literal_at_0x6583: first 0x6583 last 0x6584 type worddata
u_less_than_pfa002: first 0x6585 last 0x658A type pointers
greater_than_nfa: first 0x658B last 0x658C type bytedata
greater_than_lfa: first 0x658D last 0x658E type pointers
greater_than_cfa: first 0x658F last 0x6590 type pointers
greater_than_pfa: first 0x6591 last 0x6596 type pointers
rot_nfa: first 0x6597 last 0x659A type bytedata
rot_lfa: first 0x659B last 0x659C type pointers
rot_cfa: first 0x659D last 0x659E type pointers
rot_pfa: first 0x659F last 0x65A4 type code
space_nfa: first 0x65A5 last 0x65AA type bytedata
space_lfa: first 0x65AB last 0x65AC type pointers
space_cfa: first 0x65AD last 0x65AE type pointers
space_pfa: first 0x65AF last 0x65B4 type pointers
minus_dup_nfa: first 0x65B5 last 0x65B9 type bytedata
minus_dup_lfa: first 0x65BA last 0x65BB type pointers
minus_dup_cfa: first 0x65BC last 0x65BD type pointers
minus_dup_pfa: first 0x65BE last 0x65C1 type pointers
literal_at_0x65C2: first 0x65C2 last 0x65C3 type worddata
minus_dup_pfa001: first 0x65C4 last 0x65C7 type pointers
traverse_nfa: first 0x65C8 last 0x65D0 type bytedata
traverse_lfa: first 0x65D1 last 0x65D2 type pointers
traverse_cfa: first 0x65D3 last 0x65D4 type pointers
traverse_pfa: first 0x65D5 last 0x65DC type pointers
literal_at_0x65DD: first 0x65DD last 0x65DE type worddata
traverse_pfa001: first 0x65DF last 0x65E6 type pointers
literal_at_0x65E7: first 0x65E7 last 0x65E8 type worddata
traverse_pfa002: first 0x65E9 last 0x65EE type pointers
latest_nfa: first 0x65EF last 0x65F5 type bytedata
latest_lfa: first 0x65F6 last 0x65F7 type pointers
latest_cfa: first 0x65F8 last 0x65F9 type pointers
latest_pfa: first 0x65FA last 0x6601 type pointers
lfa_nfa: first 0x6602 last 0x6605 type bytedata
lfa_lfa: first 0x6606 last 0x6607 type pointers
lfa_cfa: first 0x6608 last 0x6609 type pointers
lfa_pfa: first 0x660A last 0x660B type pointers
literal_at_0x660C: first 0x660C last 0x660D type worddata
lfa_pfa001: first 0x660E last 0x6611 type pointers
cfa_nfa: first 0x6612 last 0x6615 type bytedata
cfa_lfa: first 0x6616 last 0x6617 type pointers
cfa_cfa: first 0x6618 last 0x6619 type pointers
cfa_pfa: first 0x661A last 0x661F type pointers
nfa_nfa: first 0x6620 last 0x6623 type bytedata
nfa_lfa: first 0x6624 last 0x6625 type pointers
nfa_cfa: first 0x6626 last 0x6627 type pointers
nfa_pfa: first 0x6628 last 0x6629 type pointers
literal_at_0x662A: first 0x662A last 0x662B type worddata
nfa_pfa001: first 0x662C last 0x662F type pointers
literal_at_0x6630: first 0x6630 last 0x6631 type worddata
nfa_pfa002: first 0x6632 last 0x6635 type pointers
pfa_nfa: first 0x6636 last 0x6639 type bytedata
pfa_lfa: first 0x663A last 0x663B type pointers
pfa_cfa: first 0x663C last 0x663D type pointers
pfa_pfa: first 0x663E last 0x6643 type pointers
literal_at_0x6644: first 0x6644 last 0x6645 type worddata
pfa_pfa001: first 0x6646 last 0x6649 type pointers
store_csp_nfa: first 0x664A last 0x664E type bytedata
store_csp_lfa: first 0x664F last 0x6650 type pointers
store_csp_cfa: first 0x6651 last 0x6652 type pointers
store_csp_pfa: first 0x6653 last 0x665A type pointers
question_error_nfa: first 0x665B last 0x6661 type bytedata
question_error_lfa: first 0x6662 last 0x6663 type pointers
question_error_cfa: first 0x6664 last 0x6665 type pointers
question_error_pfa: first 0x6666 last 0x6669 type pointers
literal_at_0x666A: first 0x666A last 0x666B type worddata
question_error_pfa001: first 0x666C last 0x666F type pointers
literal_at_0x6670: first 0x6670 last 0x6671 type worddata
question_error_pfa002: first 0x6672 last 0x6675 type pointers
question_comp_nfa: first 0x6676 last 0x667B type bytedata
question_comp_lfa: first 0x667C last 0x667D type pointers
question_comp_cfa: first 0x667E last 0x667F type pointers
question_comp_pfa: first 0x6680 last 0x6687 type pointers
literal_at_0x6688: first 0x6688 last 0x6689 type worddata
question_comp_pfa001: first 0x668A last 0x668D type pointers
question_exec_nfa: first 0x668E last 0x6693 type bytedata
question_exec_lfa: first 0x6694 last 0x6695 type pointers
question_exec_cfa: first 0x6696 last 0x6697 type pointers
question_exec_pfa: first 0x6698 last 0x669D type pointers
literal_at_0x669E: first 0x669E last 0x669F type worddata
question_exec_pfa001: first 0x66A0 last 0x66A3 type pointers
question_pairs_nfa: first 0x66A4 last 0x66AA type bytedata
question_pairs_lfa: first 0x66AB last 0x66AC type pointers
question_pairs_cfa: first 0x66AD last 0x66AE type pointers
question_pairs_pfa: first 0x66AF last 0x66B2 type pointers
literal_at_0x66B3: first 0x66B3 last 0x66B4 type worddata
question_pairs_pfa001: first 0x66B5 last 0x66B8 type pointers
question_csp_nfa: first 0x66B9 last 0x66BD type bytedata
question_csp_lfa: first 0x66BE last 0x66BF type pointers
question_csp_cfa: first 0x66C0 last 0x66C1 type pointers
question_csp_pfa: first 0x66C2 last 0x66CB type pointers
literal_at_0x66CC: first 0x66CC last 0x66CD type worddata
question_csp_pfa001: first 0x66CE last 0x66D1 type pointers
question_loading_nfa: first 0x66D2 last 0x66DA type bytedata
question_loading_lfa: first 0x66DB last 0x66DC type pointers
question_loading_cfa: first 0x66DD last 0x66DE type pointers
question_loading_pfa: first 0x66DF last 0x66E6 type pointers
literal_at_0x66E7: first 0x66E7 last 0x66E8 type worddata
question_loading_pfa001: first 0x66E9 last 0x66EC type pointers
compile_nfa: first 0x66ED last 0x66F4 type bytedata
compile_lfa: first 0x66F5 last 0x66F6 type pointers
compile_cfa: first 0x66F7 last 0x66F8 type pointers
compile_pfa: first 0x66F9 last 0x6708 type pointers
left_bracket_nfa: first 0x6709 last 0x670A type bytedata
left_bracket_lfa: first 0x670B last 0x670C type pointers
left_bracket_cfa: first 0x670D last 0x670E type pointers
left_bracket_pfa: first 0x670F last 0x6716 type pointers
right_bracket_nfa: first 0x6717 last 0x6718 type bytedata
right_bracket_lfa: first 0x6719 last 0x671A type pointers
right_bracket_cfa: first 0x671B last 0x671C type pointers
right_bracket_pfa: first 0x671D last 0x671E type pointers
literal_at_0x671F: first 0x671F last 0x6720 type worddata
right_bracket_pfa001: first 0x6721 last 0x6726 type pointers
smudge_nfa: first 0x6727 last 0x672D type bytedata
smudge_lfa: first 0x672E last 0x672F type pointers
smudge_cfa: first 0x6730 last 0x6731 type pointers
smudge_pfa: first 0x6732 last 0x6735 type pointers
literal_at_0x6736: first 0x6736 last 0x6737 type worddata
smudge_pfa001: first 0x6738 last 0x673B type pointers
hex_nfa: first 0x673C last 0x673F type bytedata
hex_lfa: first 0x6740 last 0x6741 type pointers
hex_cfa: first 0x6742 last 0x6743 type pointers
hex_pfa: first 0x6744 last 0x6745 type pointers
literal_at_0x6746: first 0x6746 last 0x6747 type worddata
hex_pfa001: first 0x6748 last 0x674D type pointers
decimal_nfa: first 0x674E last 0x6755 type bytedata
decimal_lfa: first 0x6756 last 0x6757 type pointers
decimal_cfa: first 0x6758 last 0x6759 type pointers
decimal_pfa: first 0x675A last 0x675B type pointers
literal_at_0x675C: first 0x675C last 0x675D type worddata
decimal_pfa001: first 0x675E last 0x6763 type pointers
paren_semicolon_code_nfa: first 0x6764 last 0x676B type bytedata
paren_semicolon_code_lfa: first 0x676C last 0x676D type pointers
paren_semicolon_code_cfa: first 0x676E last 0x676F type pointers
paren_semicolon_code_pfa: first 0x6770 last 0x677B type pointers
semicolon_code_nfa: first 0x677C last 0x6781 type bytedata
semicolon_code_lfa: first 0x6782 last 0x6783 type pointers
semicolon_code_cfa: first 0x6784 last 0x6785 type pointers
semicolon_code_pfa: first 0x6786 last 0x6791 type pointers
builds_nfa: first 0x6792 last 0x6799 type bytedata
builds_lfa: first 0x679A last 0x679B type pointers
builds_cfa: first 0x679C last 0x679D type pointers
builds_pfa: first 0x679E last 0x67A3 type pointers
does_nfa: first 0x67A4 last 0x67A9 type bytedata
does_lfa: first 0x67AA last 0x67AB type pointers
does_cfa: first 0x67AC last 0x67AD type pointers
does_pfa: first 0x67AE last 0x67B7 type pointers
does_pfa100: first 0x67B8 last 0x67CA type code
count_nfa: first 0x67CB last 0x67D0 type bytedata
count_lfa: first 0x67D1 last 0x67D2 type pointers
count_cfa: first 0x67D3 last 0x67D4 type pointers
count_pfa: first 0x67D5 last 0x67DE type pointers
type_nfa: first 0x67DF last 0x67E3 type bytedata
type_lfa: first 0x67E4 last 0x67E5 type pointers
type_cfa: first 0x67E6 last 0x67E7 type pointers
type_pfa: first 0x67E8 last 0x67EB type pointers
literal_at_0x67EC: first 0x67EC last 0x67ED type worddata
type_pfa001: first 0x67EE last 0x67FD type pointers
literal_at_0x67FE: first 0x67FE last 0x67FF type worddata
type_pfa002: first 0x6800 last 0x6801 type pointers
literal_at_0x6802: first 0x6802 last 0x6803 type worddata
type_pfa003: first 0x6804 last 0x6807 type pointers
minus_trailing_nfa: first 0x6808 last 0x6811 type bytedata
minus_trailing_lfa: first 0x6812 last 0x6813 type pointers
minus_trailing_cfa: first 0x6814 last 0x6815 type pointers
minus_trailing_pfa: first 0x6816 last 0x682D type pointers
literal_at_0x682E: first 0x682E last 0x682F type worddata
minus_trailing_pfa001: first 0x6830 last 0x6833 type pointers
literal_at_0x6834: first 0x6834 last 0x6835 type worddata
minus_trailing_pfa002: first 0x6836 last 0x683B type pointers
literal_at_0x683C: first 0x683C last 0x683D type worddata
minus_trailing_pfa003: first 0x683E last 0x683F type pointers
paren_dot_quote_nfa: first 0x6840 last 0x6844 type bytedata
paren_dot_quote_lfa: first 0x6845 last 0x6846 type pointers
paren_dot_quote_cfa: first 0x6847 last 0x6848 type pointers
paren_dot_quote_pfa: first 0x6849 last 0x685A type pointers
dot_quote_nfa: first 0x685B last 0x685D type bytedata
dot_quote_lfa: first 0x685E last 0x685F type pointers
dot_quote_cfa: first 0x6860 last 0x6861 type pointers
dot_quote_pfa: first 0x6862 last 0x6863 type pointers
literal_at_0x6864: first 0x6864 last 0x6865 type worddata
dot_quote_pfa001: first 0x6866 last 0x686B type pointers
literal_at_0x686C: first 0x686C last 0x686D type worddata
dot_quote_pfa002: first 0x686E last 0x687D type pointers
literal_at_0x687E: first 0x687E last 0x687F type worddata
dot_quote_pfa003: first 0x6880 last 0x6889 type pointers
expect_nfa: first 0x688A last 0x6890 type bytedata
expect_lfa: first 0x6891 last 0x6892 type pointers
expect_cfa: first 0x6893 last 0x6894 type pointers
expect_pfa: first 0x6895 last 0x68A2 type pointers
literal_at_0x68A3: first 0x68A3 last 0x68A4 type worddata
expect_pfa001: first 0x68A5 last 0x68AC type pointers
literal_at_0x68AD: first 0x68AD last 0x68AE type worddata
expect_pfa002: first 0x68AF last 0x68C4 type pointers
literal_at_0x68C5: first 0x68C5 last 0x68C6 type worddata
expect_pfa003: first 0x68C7 last 0x68CC type pointers
literal_at_0x68CD: first 0x68CD last 0x68CE type worddata
expect_pfa004: first 0x68CF last 0x68D0 type pointers
literal_at_0x68D1: first 0x68D1 last 0x68D2 type worddata
expect_pfa005: first 0x68D3 last 0x68D4 type pointers
literal_at_0x68D5: first 0x68D5 last 0x68D6 type worddata
expect_pfa006: first 0x68D7 last 0x68DA type pointers
literal_at_0x68DB: first 0x68DB last 0x68DC type worddata
expect_pfa007: first 0x68DD last 0x68E0 type pointers
literal_at_0x68E1: first 0x68E1 last 0x68E2 type worddata
expect_pfa008: first 0x68E3 last 0x68EC type pointers
literal_at_0x68ED: first 0x68ED last 0x68EE type worddata
expect_pfa009: first 0x68EF last 0x6900 type pointers
literal_at_0x6901: first 0x6901 last 0x6902 type worddata
expect_pfa010: first 0x6903 last 0x6906 type pointers
query_nfa: first 0x6907 last 0x690C type bytedata
query_lfa: first 0x690D last 0x690E type pointers
query_cfa: first 0x690F last 0x6910 type pointers
query_pfa: first 0x6911 last 0x6916 type pointers
literal_at_0x6917: first 0x6917 last 0x6918 type worddata
query_pfa001: first 0x6919 last 0x6922 type pointers
null_nfa: first 0x6923 last 0x6924 type bytedata
null_lfa: first 0x6925 last 0x6926 type pointers
null_cfa: first 0x6927 last 0x6928 type pointers
null_pfa: first 0x6929 last 0x692E type pointers
literal_at_0x692F: first 0x692F last 0x6930 type worddata
null_pfa001: first 0x6931 last 0x694C type pointers
literal_at_0x694D: first 0x694D last 0x694E type worddata
null_pfa002: first 0x694F last 0x6956 type pointers
literal_at_0x6957: first 0x6957 last 0x6958 type worddata
null_pfa003: first 0x6959 last 0x695E type pointers
fill_nfa: first 0x695F last 0x6963 type bytedata
fill_lfa: first 0x6964 last 0x6965 type pointers
fill_cfa: first 0x6966 last 0x6967 type pointers
fill_pfa: first 0x6968 last 0x697B type code
erase_nfa: first 0x697C last 0x6981 type bytedata
erase_lfa: first 0x6982 last 0x6983 type pointers
erase_cfa: first 0x6984 last 0x6985 type pointers
erase_pfa: first 0x6986 last 0x698B type pointers
blanks_nfa: first 0x698C last 0x6992 type bytedata
blanks_lfa: first 0x6993 last 0x6994 type pointers
blanks_cfa: first 0x6995 last 0x6996 type pointers
blanks_pfa: first 0x6997 last 0x699C type pointers
hold_nfa: first 0x699D last 0x69A1 type bytedata
hold_lfa: first 0x69A2 last 0x69A3 type pointers
hold_cfa: first 0x69A4 last 0x69A5 type pointers
hold_pfa: first 0x69A6 last 0x69A7 type pointers
literal_at_0x69A8: first 0x69A8 last 0x69A9 type worddata
hold_pfa001: first 0x69AA last 0x69B5 type pointers
pad_nfa: first 0x69B6 last 0x69B9 type bytedata
pad_lfa: first 0x69BA last 0x69BB type pointers
pad_cfa: first 0x69BC last 0x69BD type pointers
pad_pfa: first 0x69BE last 0x69C1 type pointers
literal_at_0x69C2: first 0x69C2 last 0x69C3 type worddata
pad_pfa001: first 0x69C4 last 0x69C7 type pointers
word_nfa: first 0x69C8 last 0x69CC type bytedata
word_lfa: first 0x69CD last 0x69CE type pointers
word_cfa: first 0x69CF last 0x69D0 type pointers
word_pfa: first 0x69D1 last 0x69D6 type pointers
literal_at_0x69D7: first 0x69D7 last 0x69D8 type worddata
word_pfa001: first 0x69D9 last 0x69E0 type pointers
literal_at_0x69E1: first 0x69E1 last 0x69E2 type worddata
word_pfa002: first 0x69E3 last 0x69F4 type pointers
literal_at_0x69F5: first 0x69F5 last 0x69F6 type worddata
word_pfa003: first 0x69F7 last 0x6A14 type pointers
paren_number_nfa: first 0x6A15 last 0x6A1D type bytedata
paren_number_lfa: first 0x6A1E last 0x6A1F type pointers
paren_number_cfa: first 0x6A20 last 0x6A21 type pointers
paren_number_pfa: first 0x6A22 last 0x6A31 type pointers
literal_at_0x6A32: first 0x6A32 last 0x6A33 type worddata
paren_number_pfa001: first 0x6A34 last 0x6A4F type pointers
literal_at_0x6A50: first 0x6A50 last 0x6A51 type worddata
paren_number_pfa002: first 0x6A52 last 0x6A5B type pointers
literal_at_0x6A5C: first 0x6A5C last 0x6A5D type worddata
paren_number_pfa003: first 0x6A5E last 0x6A61 type pointers
number_nfa: first 0x6A62 last 0x6A68 type bytedata
number_lfa: first 0x6A69 last 0x6A6A type pointers
number_cfa: first 0x6A6B last 0x6A6C type pointers
number_pfa: first 0x6A6D last 0x6A7A type pointers
literal_at_0x6A7B: first 0x6A7B last 0x6A7C type worddata
number_pfa001: first 0x6A7D last 0x6A86 type pointers
literal_at_0x6A87: first 0x6A87 last 0x6A88 type worddata
number_pfa002: first 0x6A89 last 0x6A98 type pointers
literal_at_0x6A99: first 0x6A99 last 0x6A9A type worddata
number_pfa003: first 0x6A9B last 0x6AA0 type pointers
literal_at_0x6AA1: first 0x6AA1 last 0x6AA2 type worddata
number_pfa004: first 0x6AA3 last 0x6AAC type pointers
literal_at_0x6AAD: first 0x6AAD last 0x6AAE type worddata
number_pfa005: first 0x6AAF last 0x6AB4 type pointers
literal_at_0x6AB5: first 0x6AB5 last 0x6AB6 type worddata
number_pfa006: first 0x6AB7 last 0x6ABA type pointers
minus_find_nfa: first 0x6ABB last 0x6AC0 type bytedata
minus_find_lfa: first 0x6AC1 last 0x6AC2 type pointers
minus_find_cfa: first 0x6AC3 last 0x6AC4 type pointers
minus_find_pfa: first 0x6AC5 last 0x6AD8 type pointers
literal_at_0x6AD9: first 0x6AD9 last 0x6ADA type worddata
minus_find_pfa001: first 0x6ADB last 0x6AE4 type pointers
paren_abort_nfa: first 0x6AE5 last 0x6AEC type bytedata
paren_abort_lfa: first 0x6AED last 0x6AEE type pointers
paren_abort_cfa: first 0x6AEF last 0x6AF0 type pointers
paren_abort_pfa: first 0x6AF1 last 0x6AF4 type pointers
error_nfa: first 0x6AF5 last 0x6AFA type bytedata
error_lfa: first 0x6AFB last 0x6AFC type pointers
error_cfa: first 0x6AFD last 0x6AFE type pointers
error_pfa: first 0x6AFF last 0x6B06 type pointers
literal_at_0x6B07: first 0x6B07 last 0x6B08 type worddata
error_pfa001: first 0x6B09 last 0x6B12 type pointers
string_at_0x6B13: first 0x6B13 last 0x6B15 type bytedata
error_pfa002: first 0x6B16 last 0x6B21 type pointers
literal_at_0x6B22: first 0x6B22 last 0x6B23 type worddata
error_pfa003: first 0x6B24 last 0x6B2B type pointers
id_dot_nfa: first 0x6B2C last 0x6B2F type bytedata
id_dot_lfa: first 0x6B30 last 0x6B31 type pointers
id_dot_cfa: first 0x6B32 last 0x6B33 type pointers
id_dot_pfa: first 0x6B34 last 0x6B37 type pointers
literal_at_0x6B38: first 0x6B38 last 0x6B39 type worddata
id_dot_pfa001: first 0x6B3A last 0x6B3B type pointers
literal_at_0x6B3C: first 0x6B3C last 0x6B3D type worddata
id_dot_pfa002: first 0x6B3E last 0x6B55 type pointers
literal_at_0x6B56: first 0x6B56 last 0x6B57 type worddata
id_dot_pfa003: first 0x6B58 last 0x6B67 type pointers
literal_at_0x6B68: first 0x6B68 last 0x6B69 type worddata
id_dot_pfa004: first 0x6B6A last 0x6B75 type pointers
create_nfa: first 0x6B76 last 0x6B7C type bytedata
create_lfa: first 0x6B7D last 0x6B7E type pointers
create_cfa: first 0x6B7F last 0x6B80 type pointers
create_pfa: first 0x6B81 last 0x6B84 type pointers
literal_at_0x6B85: first 0x6B85 last 0x6B86 type worddata
create_pfa001: first 0x6B87 last 0x6B8E type pointers
literal_at_0x6B8F: first 0x6B8F last 0x6B90 type worddata
create_pfa002: first 0x6B91 last 0x6BA8 type pointers
literal_at_0x6BA9: first 0x6BA9 last 0x6BAA type worddata
create_pfa003: first 0x6BAB last 0x6BB4 type pointers
literal_at_0x6BB5: first 0x6BB5 last 0x6BB6 type worddata
create_pfa004: first 0x6BB7 last 0x6BCA type pointers
bracket_compile_nfa: first 0x6BCB last 0x6BD4 type bytedata
bracket_compile_lfa: first 0x6BD5 last 0x6BD6 type pointers
bracket_compile_cfa: first 0x6BD7 last 0x6BD8 type pointers
bracket_compile_pfa: first 0x6BD9 last 0x6BE8 type pointers
literal_nfa: first 0x6BE9 last 0x6BF0 type bytedata
literal_lfa: first 0x6BF1 last 0x6BF2 type pointers
literal_cfa: first 0x6BF3 last 0x6BF4 type pointers
literal_pfa: first 0x6BF5 last 0x6BFA type pointers
literal_at_0x6BFB: first 0x6BFB last 0x6BFC type worddata
literal_pfa001: first 0x6BFD last 0x6C04 type pointers
dliteral_nfa: first 0x6C05 last 0x6C0D type bytedata
dliteral_lfa: first 0x6C0E last 0x6C0F type pointers
dliteral_cfa: first 0x6C10 last 0x6C11 type pointers
dliteral_pfa: first 0x6C12 last 0x6C17 type pointers
literal_at_0x6C18: first 0x6C18 last 0x6C19 type worddata
dliteral_pfa001: first 0x6C1A last 0x6C21 type pointers
question_stack_nfa: first 0x6C22 last 0x6C28 type bytedata
question_stack_lfa: first 0x6C29 last 0x6C2A type pointers
question_stack_cfa: first 0x6C2B last 0x6C2C type pointers
question_stack_pfa: first 0x6C2D last 0x6C3E type pointers
literal_at_0x6C3F: first 0x6C3F last 0x6C40 type worddata
question_stack_pfa001: first 0x6C41 last 0x6C44 type pointers
literal_at_0x6C45: first 0x6C45 last 0x6C46 type worddata
question_stack_pfa002: first 0x6C47 last 0x6C4E type pointers
interpret_nfa: first 0x6C4F last 0x6C58 type bytedata
interpret_lfa: first 0x6C59 last 0x6C5A type pointers
interpret_cfa: first 0x6C5B last 0x6C5C type pointers
interpret_pfa: first 0x6C5D last 0x6C60 type pointers
literal_at_0x6C61: first 0x6C61 last 0x6C62 type worddata
interpret_pfa001: first 0x6C63 last 0x6C6A type pointers
literal_at_0x6C6B: first 0x6C6B last 0x6C6C type worddata
interpret_pfa002: first 0x6C6D last 0x6C72 type pointers
literal_at_0x6C73: first 0x6C73 last 0x6C74 type worddata
interpret_pfa003: first 0x6C75 last 0x6C7C type pointers
literal_at_0x6C7D: first 0x6C7D last 0x6C7E type worddata
interpret_pfa004: first 0x6C7F last 0x6C8A type pointers
literal_at_0x6C8B: first 0x6C8B last 0x6C8C type worddata
interpret_pfa005: first 0x6C8D last 0x6C90 type pointers
literal_at_0x6C91: first 0x6C91 last 0x6C92 type worddata
interpret_pfa006: first 0x6C93 last 0x6C9A type pointers
literal_at_0x6C9B: first 0x6C9B last 0x6C9C type worddata
immediate_nfa: first 0x6C9D last 0x6CA6 type bytedata
immediate_lfa: first 0x6CA7 last 0x6CA8 type pointers
immediate_cfa: first 0x6CA9 last 0x6CAA type pointers
immediate_pfa: first 0x6CAB last 0x6CAE type pointers
literal_at_0x6CAF: first 0x6CAF last 0x6CB0 type worddata
immediate_pfa001: first 0x6CB1 last 0x6CB4 type pointers
vocabulary_nfa: first 0x6CB5 last 0x6CBF type bytedata
vocabulary_lfa: first 0x6CC0 last 0x6CC1 type pointers
vocabulary_cfa: first 0x6CC2 last 0x6CC3 type pointers
vocabulary_pfa: first 0x6CC4 last 0x6CC7 type pointers
literal_at_0x6CC8: first 0x6CC8 last 0x6CC9 type worddata
vocabulary_pfa001: first 0x6CCA last 0x6CE9 type pointers
forth_nfa: first 0x6CEA last 0x6CEF type bytedata
forth_lfa: first 0x6CF0 last 0x6CF1 type pointers
forth_cfa: first 0x6CF2 last 0x6CF3 type pointers
forth_pfa: first 0x6CF4 last 0x6CF5 type pointers
literal_at_0x6CF6: first 0x6CF6 last 0x6CF7 type worddata
forth_pfa001: first 0x6CF8 last 0x6CFB type pointers
definitions_nfa: first 0x6CFC last 0x6D07 type bytedata
definitions_lfa: first 0x6D08 last 0x6D09 type pointers
definitions_cfa: first 0x6D0A last 0x6D0B type pointers
definitions_pfa: first 0x6D0C last 0x6D15 type pointers
paren_nfa: first 0x6D16 last 0x6D17 type bytedata
paren_lfa: first 0x6D18 last 0x6D19 type pointers
paren_cfa: first 0x6D1A last 0x6D1B type pointers
paren_pfa: first 0x6D1C last 0x6D1D type pointers
literal_at_0x6D1E: first 0x6D1E last 0x6D1F type worddata
paren_pfa001: first 0x6D20 last 0x6D23 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
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
warm_start_phony_cfa: first 0x6DA1 unlabeled last 0x6DA2 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
cold_start_phony_cfa: first 0x6DC7 unlabeled last 0x6DC8 type pointers
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
s_to_d_nfa: first 0x6E0A last 0x6E0E type bytedata
s_to_d_lfa: first 0x6E0F last 0x6E10 type pointers
s_to_d_cfa: first 0x6E11 last 0x6E12 type pointers
s_to_d_pfa: first 0x6E13 last 0x6E1F type code
plus_minus_nfa: first 0x6E20 last 0x6E22 type bytedata
plus_minus_lfa: first 0x6E23 last 0x6E24 type pointers
plus_minus_cfa: first 0x6E25 last 0x6E26 type pointers
plus_minus_pfa: first 0x6E27 last 0x6E2A type pointers
literal_at_0x6E2B: first 0x6E2B last 0x6E2C type worddata
plus_minus_pfa001: first 0x6E2D last 0x6E30 type pointers
d_plus_minus_nfa: first 0x6E31 last 0x6E34 type bytedata
d_plus_minus_lfa: first 0x6E35 last 0x6E36 type pointers
d_plus_minus_cfa: first 0x6E37 last 0x6E38 type pointers
d_plus_minus_pfa: first 0x6E39 last 0x6E3C type pointers
literal_at_0x6E3D: first 0x6E3D last 0x6E3E type worddata
d_plus_minus_pfa001: first 0x6E3F last 0x6E42 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
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
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
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
m_star_nfa: first 0x6E8C last 0x6E8E type bytedata
m_star_lfa: first 0x6E8F last 0x6E90 type pointers
m_star_cfa: first 0x6E91 last 0x6E92 type pointers
m_star_pfa: first 0x6E93 last 0x6EA6 type pointers
m_slash_nfa: first 0x6EA7 last 0x6EA9 type bytedata
m_slash_lfa: first 0x6EAA last 0x6EAB type pointers
m_slash_cfa: first 0x6EAC last 0x6EAD type pointers
m_slash_pfa: first 0x6EAE last 0x6ECD type pointers
star_nfa: first 0x6ECE last 0x6ECF type bytedata
star_lfa: first 0x6ED0 last 0x6ED1 type pointers
star_cfa: first 0x6ED2 last 0x6ED3 type pointers
star_pfa: first 0x6ED4 last 0x6ED9 type pointers
slash_mod_nfa: first 0x6EDA last 0x6EDE type bytedata
slash_mod_lfa: first 0x6EDF last 0x6EE0 type pointers
slash_mod_cfa: first 0x6EE1 last 0x6EE2 type pointers
slash_mod_pfa: first 0x6EE3 last 0x6EEC type pointers
slash_nfa: first 0x6EED last 0x6EEE type bytedata
slash_lfa: first 0x6EEF last 0x6EF0 type pointers
slash_cfa: first 0x6EF1 last 0x6EF2 type pointers
slash_pfa: first 0x6EF3 last 0x6EFA 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
star_slash_mod_nfa: first 0x6F09 last 0x6F0E type bytedata
star_slash_mod_lfa: first 0x6F0F last 0x6F10 type pointers
star_slash_mod_cfa: first 0x6F11 last 0x6F12 type pointers
star_slash_mod_pfa: first 0x6F13 last 0x6F1C type pointers
star_slash_nfa: first 0x6F1D last 0x6F1F type bytedata
star_slash_lfa: first 0x6F20 last 0x6F21 type pointers
star_slash_cfa: first 0x6F22 last 0x6F23 type pointers
star_slash_pfa: first 0x6F24 last 0x6F2B type pointers
m_slash_mod_nfa: first 0x6F2C last 0x6F31 type bytedata
m_slash_mod_lfa: first 0x6F32 last 0x6F33 type pointers
m_slash_mod_cfa: first 0x6F34 last 0x6F35 type pointers
m_slash_mod_pfa: first 0x6F36 last 0x6F49 type pointers
paren_line_nfa: first 0x6F4A last 0x6F50 type bytedata
paren_line_lfa: first 0x6F51 last 0x6F52 type pointers
paren_line_cfa: first 0x6F53 last 0x6F54 type pointers
paren_line_pfa: first 0x6F55 last 0x6F58 type pointers
literal_at_0x6F59: first 0x6F59 last 0x6F5A type worddata
paren_line_pfa001: first 0x6F5B last 0x6F6C type pointers
literal_at_0x6F6D: first 0x6F6D last 0x6F6E type worddata
paren_line_pfa002: first 0x6F6F last 0x6F70 type pointers
dot_line_nfa: first 0x6F71 last 0x6F76 type bytedata
dot_line_lfa: first 0x6F77 last 0x6F78 type pointers
dot_line_cfa: first 0x6F79 last 0x6F7A type pointers
dot_line_pfa: first 0x6F7B last 0x6F82 type pointers
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
key_routine_cursor_char: first 0x6FDA unlabeled last 0x6FDA type bytedata
printer_channel_or_zero: first 0x706D unlabeled last 0x706D type bytedata
paren_emit_cfa: first 0x706E unlabeled last 0x706F type pointers
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
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
hash_buff_nfa: first 0x70C6 last 0x70CB type bytedata
hash_buff_lfa: first 0x70CC last 0x70CD type pointers
hash_buff_cfa: first 0x70CE last 0x70CF type pointers
hash_buff_pfa: first 0x70D0 last 0x70D1 type worddata
plus_buf_nfa: first 0x70D2 last 0x70D6 type bytedata
plus_buf_lfa: first 0x70D7 last 0x70D8 type pointers
plus_buf_cfa: first 0x70D9 last 0x70DA type pointers
plus_buf_pfa: first 0x70DB last 0x70DC type pointers
literal_at_0x70DD: first 0x70DD last 0x70DE type worddata
plus_buf_pfa001: first 0x70DF last 0x70E8 type pointers
literal_at_0x70E9: first 0x70E9 last 0x70EA type worddata
plus_buf_pfa002: first 0x70EB last 0x70F8 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
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