-
Notifications
You must be signed in to change notification settings - Fork 4
/
electron_branchtable.S
1025 lines (1025 loc) · 61 KB
/
electron_branchtable.S
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
branchtable:
.short ((register_unused - branchtable)/2) /* 0xfc00 */
.short ((register_unused - branchtable)/2) /* 0xfc01 */
.short ((register_unused - branchtable)/2) /* 0xfc02 */
.short ((register_unused - branchtable)/2) /* 0xfc03 */
.short ((register_0xfc04 - branchtable)/2) /* 0xfc04 */
.short ((register_0xfc05 - branchtable)/2) /* 0xfc05 */
.short ((register_0xfc06 - branchtable)/2) /* 0xfc06 */
.short ((register_0xfc07 - branchtable)/2) /* 0xfc07 */
.short ((register_unused - branchtable)/2) /* 0xfc08 */
.short ((register_unused - branchtable)/2) /* 0xfc09 */
.short ((register_unused - branchtable)/2) /* 0xfc0a */
.short ((register_unused - branchtable)/2) /* 0xfc0b */
.short ((register_0xfc0c - branchtable)/2) /* 0xfc0c */
.short ((register_0xfc0d - branchtable)/2) /* 0xfc0d */
.short ((register_0xfc0e - branchtable)/2) /* 0xfc0e */
.short ((register_0xfc0f - branchtable)/2) /* 0xfc0f */
.short ((register_unused - branchtable)/2) /* 0xfc10 */
.short ((register_unused - branchtable)/2) /* 0xfc11 */
.short ((register_unused - branchtable)/2) /* 0xfc12 */
.short ((register_unused - branchtable)/2) /* 0xfc13 */
.short ((register_unused - branchtable)/2) /* 0xfc14 */
.short ((register_unused - branchtable)/2) /* 0xfc15 */
.short ((register_unused - branchtable)/2) /* 0xfc16 */
.short ((register_unused - branchtable)/2) /* 0xfc17 */
.short ((register_unused - branchtable)/2) /* 0xfc18 */
.short ((register_unused - branchtable)/2) /* 0xfc19 */
.short ((register_unused - branchtable)/2) /* 0xfc1a */
.short ((register_unused - branchtable)/2) /* 0xfc1b */
.short ((register_unused - branchtable)/2) /* 0xfc1c */
.short ((register_unused - branchtable)/2) /* 0xfc1d */
.short ((register_unused - branchtable)/2) /* 0xfc1e */
.short ((register_unused - branchtable)/2) /* 0xfc1f */
.short ((register_unused - branchtable)/2) /* 0xfc20 */
.short ((register_unused - branchtable)/2) /* 0xfc21 */
.short ((register_unused - branchtable)/2) /* 0xfc22 */
.short ((register_unused - branchtable)/2) /* 0xfc23 */
.short ((register_unused - branchtable)/2) /* 0xfc24 */
.short ((register_unused - branchtable)/2) /* 0xfc25 */
.short ((register_unused - branchtable)/2) /* 0xfc26 */
.short ((register_unused - branchtable)/2) /* 0xfc27 */
.short ((register_unused - branchtable)/2) /* 0xfc28 */
.short ((register_unused - branchtable)/2) /* 0xfc29 */
.short ((register_unused - branchtable)/2) /* 0xfc2a */
.short ((register_unused - branchtable)/2) /* 0xfc2b */
.short ((register_unused - branchtable)/2) /* 0xfc2c */
.short ((register_unused - branchtable)/2) /* 0xfc2d */
.short ((register_unused - branchtable)/2) /* 0xfc2e */
.short ((register_unused - branchtable)/2) /* 0xfc2f */
.short ((register_unused - branchtable)/2) /* 0xfc30 */
.short ((register_unused - branchtable)/2) /* 0xfc31 */
.short ((register_unused - branchtable)/2) /* 0xfc32 */
.short ((register_unused - branchtable)/2) /* 0xfc33 */
.short ((register_unused - branchtable)/2) /* 0xfc34 */
.short ((register_unused - branchtable)/2) /* 0xfc35 */
.short ((register_unused - branchtable)/2) /* 0xfc36 */
.short ((register_unused - branchtable)/2) /* 0xfc37 */
.short ((register_unused - branchtable)/2) /* 0xfc38 */
.short ((register_unused - branchtable)/2) /* 0xfc39 */
.short ((register_unused - branchtable)/2) /* 0xfc3a */
.short ((register_unused - branchtable)/2) /* 0xfc3b */
.short ((register_unused - branchtable)/2) /* 0xfc3c */
.short ((register_unused - branchtable)/2) /* 0xfc3d */
.short ((register_unused - branchtable)/2) /* 0xfc3e */
.short ((register_unused - branchtable)/2) /* 0xfc3f */
.short ((register_unused - branchtable)/2) /* 0xfc40 */
.short ((register_unused - branchtable)/2) /* 0xfc41 */
.short ((register_unused - branchtable)/2) /* 0xfc42 */
.short ((register_unused - branchtable)/2) /* 0xfc43 */
.short ((register_unused - branchtable)/2) /* 0xfc44 */
.short ((register_unused - branchtable)/2) /* 0xfc45 */
.short ((register_unused - branchtable)/2) /* 0xfc46 */
.short ((register_unused - branchtable)/2) /* 0xfc47 */
.short ((register_unused - branchtable)/2) /* 0xfc48 */
.short ((register_unused - branchtable)/2) /* 0xfc49 */
.short ((register_unused - branchtable)/2) /* 0xfc4a */
.short ((register_unused - branchtable)/2) /* 0xfc4b */
.short ((register_unused - branchtable)/2) /* 0xfc4c */
.short ((register_unused - branchtable)/2) /* 0xfc4d */
.short ((register_unused - branchtable)/2) /* 0xfc4e */
.short ((register_unused - branchtable)/2) /* 0xfc4f */
.short ((register_unused - branchtable)/2) /* 0xfc50 */
.short ((register_unused - branchtable)/2) /* 0xfc51 */
.short ((register_unused - branchtable)/2) /* 0xfc52 */
.short ((register_unused - branchtable)/2) /* 0xfc53 */
.short ((register_unused - branchtable)/2) /* 0xfc54 */
.short ((register_unused - branchtable)/2) /* 0xfc55 */
.short ((register_unused - branchtable)/2) /* 0xfc56 */
.short ((register_unused - branchtable)/2) /* 0xfc57 */
.short ((register_unused - branchtable)/2) /* 0xfc58 */
.short ((register_unused - branchtable)/2) /* 0xfc59 */
.short ((register_unused - branchtable)/2) /* 0xfc5a */
.short ((register_unused - branchtable)/2) /* 0xfc5b */
.short ((register_unused - branchtable)/2) /* 0xfc5c */
.short ((register_unused - branchtable)/2) /* 0xfc5d */
.short ((register_unused - branchtable)/2) /* 0xfc5e */
.short ((register_unused - branchtable)/2) /* 0xfc5f */
.short ((register_unused - branchtable)/2) /* 0xfc60 */
.short ((register_unused - branchtable)/2) /* 0xfc61 */
.short ((register_unused - branchtable)/2) /* 0xfc62 */
.short ((register_unused - branchtable)/2) /* 0xfc63 */
.short ((register_unused - branchtable)/2) /* 0xfc64 */
.short ((register_unused - branchtable)/2) /* 0xfc65 */
.short ((register_unused - branchtable)/2) /* 0xfc66 */
.short ((register_unused - branchtable)/2) /* 0xfc67 */
.short ((register_unused - branchtable)/2) /* 0xfc68 */
.short ((register_unused - branchtable)/2) /* 0xfc69 */
.short ((register_unused - branchtable)/2) /* 0xfc6a */
.short ((register_unused - branchtable)/2) /* 0xfc6b */
.short ((register_unused - branchtable)/2) /* 0xfc6c */
.short ((register_unused - branchtable)/2) /* 0xfc6d */
.short ((register_unused - branchtable)/2) /* 0xfc6e */
.short ((register_unused - branchtable)/2) /* 0xfc6f */
.short ((register_0xfc70 - branchtable)/2) /* 0xfc70 */
.short ((register_0xfc71 - branchtable)/2) /* 0xfc71 */
.short ((register_0xfc72 - branchtable)/2) /* 0xfc72 */
.short ((register_unused - branchtable)/2) /* 0xfc73 */
.short ((register_unused - branchtable)/2) /* 0xfc74 */
.short ((register_unused - branchtable)/2) /* 0xfc75 */
.short ((register_unused - branchtable)/2) /* 0xfc76 */
.short ((register_unused - branchtable)/2) /* 0xfc77 */
.short ((register_unused - branchtable)/2) /* 0xfc78 */
.short ((register_unused - branchtable)/2) /* 0xfc79 */
.short ((register_unused - branchtable)/2) /* 0xfc7a */
.short ((register_unused - branchtable)/2) /* 0xfc7b */
.short ((register_unused - branchtable)/2) /* 0xfc7c */
.short ((register_unused - branchtable)/2) /* 0xfc7d */
.short ((register_unused - branchtable)/2) /* 0xfc7e */
.short ((register_unused - branchtable)/2) /* 0xfc7f */
.short ((register_unused - branchtable)/2) /* 0xfc80 */
.short ((register_unused - branchtable)/2) /* 0xfc81 */
.short ((register_unused - branchtable)/2) /* 0xfc82 */
.short ((register_unused - branchtable)/2) /* 0xfc83 */
.short ((register_unused - branchtable)/2) /* 0xfc84 */
.short ((register_unused - branchtable)/2) /* 0xfc85 */
.short ((register_unused - branchtable)/2) /* 0xfc86 */
.short ((register_unused - branchtable)/2) /* 0xfc87 */
.short ((register_unused - branchtable)/2) /* 0xfc88 */
.short ((register_unused - branchtable)/2) /* 0xfc89 */
.short ((register_unused - branchtable)/2) /* 0xfc8a */
.short ((register_unused - branchtable)/2) /* 0xfc8b */
.short ((register_unused - branchtable)/2) /* 0xfc8c */
.short ((register_unused - branchtable)/2) /* 0xfc8d */
.short ((register_unused - branchtable)/2) /* 0xfc8e */
.short ((register_unused - branchtable)/2) /* 0xfc8f */
.short ((register_unused - branchtable)/2) /* 0xfc90 */
.short ((register_unused - branchtable)/2) /* 0xfc91 */
.short ((register_unused - branchtable)/2) /* 0xfc92 */
.short ((register_unused - branchtable)/2) /* 0xfc93 */
.short ((register_unused - branchtable)/2) /* 0xfc94 */
.short ((register_unused - branchtable)/2) /* 0xfc95 */
.short ((register_unused - branchtable)/2) /* 0xfc96 */
.short ((register_unused - branchtable)/2) /* 0xfc97 */
.short ((register_unused - branchtable)/2) /* 0xfc98 */
.short ((register_unused - branchtable)/2) /* 0xfc99 */
.short ((register_unused - branchtable)/2) /* 0xfc9a */
.short ((register_unused - branchtable)/2) /* 0xfc9b */
.short ((register_unused - branchtable)/2) /* 0xfc9c */
.short ((register_unused - branchtable)/2) /* 0xfc9d */
.short ((register_unused - branchtable)/2) /* 0xfc9e */
.short ((register_unused - branchtable)/2) /* 0xfc9f */
.short ((register_unused - branchtable)/2) /* 0xfca0 */
.short ((register_unused - branchtable)/2) /* 0xfca1 */
.short ((register_unused - branchtable)/2) /* 0xfca2 */
.short ((register_unused - branchtable)/2) /* 0xfca3 */
.short ((register_unused - branchtable)/2) /* 0xfca4 */
.short ((register_unused - branchtable)/2) /* 0xfca5 */
.short ((register_unused - branchtable)/2) /* 0xfca6 */
.short ((register_unused - branchtable)/2) /* 0xfca7 */
.short ((register_unused - branchtable)/2) /* 0xfca8 */
.short ((register_unused - branchtable)/2) /* 0xfca9 */
.short ((register_unused - branchtable)/2) /* 0xfcaa */
.short ((register_unused - branchtable)/2) /* 0xfcab */
.short ((register_unused - branchtable)/2) /* 0xfcac */
.short ((register_unused - branchtable)/2) /* 0xfcad */
.short ((register_unused - branchtable)/2) /* 0xfcae */
.short ((register_unused - branchtable)/2) /* 0xfcaf */
.short ((register_unused - branchtable)/2) /* 0xfcb0 */
.short ((register_unused - branchtable)/2) /* 0xfcb1 */
.short ((register_unused - branchtable)/2) /* 0xfcb2 */
.short ((register_unused - branchtable)/2) /* 0xfcb3 */
.short ((register_unused - branchtable)/2) /* 0xfcb4 */
.short ((register_unused - branchtable)/2) /* 0xfcb5 */
.short ((register_unused - branchtable)/2) /* 0xfcb6 */
.short ((register_unused - branchtable)/2) /* 0xfcb7 */
.short ((register_unused - branchtable)/2) /* 0xfcb8 */
.short ((register_unused - branchtable)/2) /* 0xfcb9 */
.short ((register_unused - branchtable)/2) /* 0xfcba */
.short ((register_unused - branchtable)/2) /* 0xfcbb */
.short ((register_unused - branchtable)/2) /* 0xfcbc */
.short ((register_unused - branchtable)/2) /* 0xfcbd */
.short ((register_unused - branchtable)/2) /* 0xfcbe */
.short ((register_unused - branchtable)/2) /* 0xfcbf */
.short ((register_unused - branchtable)/2) /* 0xfcc0 */
.short ((register_unused - branchtable)/2) /* 0xfcc1 */
.short ((register_unused - branchtable)/2) /* 0xfcc2 */
.short ((register_unused - branchtable)/2) /* 0xfcc3 */
.short ((register_unused - branchtable)/2) /* 0xfcc4 */
.short ((register_unused - branchtable)/2) /* 0xfcc5 */
.short ((register_unused - branchtable)/2) /* 0xfcc6 */
.short ((register_unused - branchtable)/2) /* 0xfcc7 */
.short ((register_unused - branchtable)/2) /* 0xfcc8 */
.short ((register_unused - branchtable)/2) /* 0xfcc9 */
.short ((register_unused - branchtable)/2) /* 0xfcca */
.short ((register_unused - branchtable)/2) /* 0xfccb */
.short ((register_unused - branchtable)/2) /* 0xfccc */
.short ((register_unused - branchtable)/2) /* 0xfccd */
.short ((register_unused - branchtable)/2) /* 0xfcce */
.short ((register_unused - branchtable)/2) /* 0xfccf */
.short ((register_unused - branchtable)/2) /* 0xfcd0 */
.short ((register_unused - branchtable)/2) /* 0xfcd1 */
.short ((register_unused - branchtable)/2) /* 0xfcd2 */
.short ((register_unused - branchtable)/2) /* 0xfcd3 */
.short ((register_unused - branchtable)/2) /* 0xfcd4 */
.short ((register_unused - branchtable)/2) /* 0xfcd5 */
.short ((register_unused - branchtable)/2) /* 0xfcd6 */
.short ((register_unused - branchtable)/2) /* 0xfcd7 */
.short ((register_unused - branchtable)/2) /* 0xfcd8 */
.short ((register_unused - branchtable)/2) /* 0xfcd9 */
.short ((register_unused - branchtable)/2) /* 0xfcda */
.short ((register_unused - branchtable)/2) /* 0xfcdb */
.short ((register_unused - branchtable)/2) /* 0xfcdc */
.short ((register_unused - branchtable)/2) /* 0xfcdd */
.short ((register_unused - branchtable)/2) /* 0xfcde */
.short ((register_unused - branchtable)/2) /* 0xfcdf */
.short ((register_unused - branchtable)/2) /* 0xfce0 */
.short ((register_unused - branchtable)/2) /* 0xfce1 */
.short ((register_unused - branchtable)/2) /* 0xfce2 */
.short ((register_unused - branchtable)/2) /* 0xfce3 */
.short ((register_unused - branchtable)/2) /* 0xfce4 */
.short ((register_unused - branchtable)/2) /* 0xfce5 */
.short ((register_unused - branchtable)/2) /* 0xfce6 */
.short ((register_unused - branchtable)/2) /* 0xfce7 */
.short ((register_unused - branchtable)/2) /* 0xfce8 */
.short ((register_unused - branchtable)/2) /* 0xfce9 */
.short ((register_unused - branchtable)/2) /* 0xfcea */
.short ((register_unused - branchtable)/2) /* 0xfceb */
.short ((register_unused - branchtable)/2) /* 0xfcec */
.short ((register_unused - branchtable)/2) /* 0xfced */
.short ((register_unused - branchtable)/2) /* 0xfcee */
.short ((register_unused - branchtable)/2) /* 0xfcef */
.short ((register_unused - branchtable)/2) /* 0xfcf0 */
.short ((register_unused - branchtable)/2) /* 0xfcf1 */
.short ((register_unused - branchtable)/2) /* 0xfcf2 */
.short ((register_unused - branchtable)/2) /* 0xfcf3 */
.short ((register_unused - branchtable)/2) /* 0xfcf4 */
.short ((register_unused - branchtable)/2) /* 0xfcf5 */
.short ((register_unused - branchtable)/2) /* 0xfcf6 */
.short ((register_unused - branchtable)/2) /* 0xfcf7 */
.short ((register_unused - branchtable)/2) /* 0xfcf8 */
.short ((register_unused - branchtable)/2) /* 0xfcf9 */
.short ((register_unused - branchtable)/2) /* 0xfcfa */
.short ((register_unused - branchtable)/2) /* 0xfcfb */
.short ((register_unused - branchtable)/2) /* 0xfcfc */
.short ((register_unused - branchtable)/2) /* 0xfcfd */
.short ((register_unused - branchtable)/2) /* 0xfcfe */
.short ((register_unused - branchtable)/2) /* 0xfcff */
.short ((register_unused - branchtable)/2) /* 0xfd00 */
.short ((register_unused - branchtable)/2) /* 0xfd01 */
.short ((register_unused - branchtable)/2) /* 0xfd02 */
.short ((register_unused - branchtable)/2) /* 0xfd03 */
.short ((register_unused - branchtable)/2) /* 0xfd04 */
.short ((register_unused - branchtable)/2) /* 0xfd05 */
.short ((register_unused - branchtable)/2) /* 0xfd06 */
.short ((register_unused - branchtable)/2) /* 0xfd07 */
.short ((register_unused - branchtable)/2) /* 0xfd08 */
.short ((register_unused - branchtable)/2) /* 0xfd09 */
.short ((register_unused - branchtable)/2) /* 0xfd0a */
.short ((register_unused - branchtable)/2) /* 0xfd0b */
.short ((register_unused - branchtable)/2) /* 0xfd0c */
.short ((register_unused - branchtable)/2) /* 0xfd0d */
.short ((register_unused - branchtable)/2) /* 0xfd0e */
.short ((register_unused - branchtable)/2) /* 0xfd0f */
.short ((register_unused - branchtable)/2) /* 0xfd10 */
.short ((register_unused - branchtable)/2) /* 0xfd11 */
.short ((register_unused - branchtable)/2) /* 0xfd12 */
.short ((register_unused - branchtable)/2) /* 0xfd13 */
.short ((register_unused - branchtable)/2) /* 0xfd14 */
.short ((register_unused - branchtable)/2) /* 0xfd15 */
.short ((register_unused - branchtable)/2) /* 0xfd16 */
.short ((register_unused - branchtable)/2) /* 0xfd17 */
.short ((register_unused - branchtable)/2) /* 0xfd18 */
.short ((register_unused - branchtable)/2) /* 0xfd19 */
.short ((register_unused - branchtable)/2) /* 0xfd1a */
.short ((register_unused - branchtable)/2) /* 0xfd1b */
.short ((register_unused - branchtable)/2) /* 0xfd1c */
.short ((register_unused - branchtable)/2) /* 0xfd1d */
.short ((register_unused - branchtable)/2) /* 0xfd1e */
.short ((register_unused - branchtable)/2) /* 0xfd1f */
.short ((register_unused - branchtable)/2) /* 0xfd20 */
.short ((register_unused - branchtable)/2) /* 0xfd21 */
.short ((register_unused - branchtable)/2) /* 0xfd22 */
.short ((register_unused - branchtable)/2) /* 0xfd23 */
.short ((register_unused - branchtable)/2) /* 0xfd24 */
.short ((register_unused - branchtable)/2) /* 0xfd25 */
.short ((register_unused - branchtable)/2) /* 0xfd26 */
.short ((register_unused - branchtable)/2) /* 0xfd27 */
.short ((register_unused - branchtable)/2) /* 0xfd28 */
.short ((register_unused - branchtable)/2) /* 0xfd29 */
.short ((register_unused - branchtable)/2) /* 0xfd2a */
.short ((register_unused - branchtable)/2) /* 0xfd2b */
.short ((register_unused - branchtable)/2) /* 0xfd2c */
.short ((register_unused - branchtable)/2) /* 0xfd2d */
.short ((register_unused - branchtable)/2) /* 0xfd2e */
.short ((register_unused - branchtable)/2) /* 0xfd2f */
.short ((register_unused - branchtable)/2) /* 0xfd30 */
.short ((register_unused - branchtable)/2) /* 0xfd31 */
.short ((register_unused - branchtable)/2) /* 0xfd32 */
.short ((register_unused - branchtable)/2) /* 0xfd33 */
.short ((register_unused - branchtable)/2) /* 0xfd34 */
.short ((register_unused - branchtable)/2) /* 0xfd35 */
.short ((register_unused - branchtable)/2) /* 0xfd36 */
.short ((register_unused - branchtable)/2) /* 0xfd37 */
.short ((register_unused - branchtable)/2) /* 0xfd38 */
.short ((register_unused - branchtable)/2) /* 0xfd39 */
.short ((register_unused - branchtable)/2) /* 0xfd3a */
.short ((register_unused - branchtable)/2) /* 0xfd3b */
.short ((register_unused - branchtable)/2) /* 0xfd3c */
.short ((register_unused - branchtable)/2) /* 0xfd3d */
.short ((register_unused - branchtable)/2) /* 0xfd3e */
.short ((register_unused - branchtable)/2) /* 0xfd3f */
.short ((register_unused - branchtable)/2) /* 0xfd40 */
.short ((register_unused - branchtable)/2) /* 0xfd41 */
.short ((register_unused - branchtable)/2) /* 0xfd42 */
.short ((register_unused - branchtable)/2) /* 0xfd43 */
.short ((register_unused - branchtable)/2) /* 0xfd44 */
.short ((register_unused - branchtable)/2) /* 0xfd45 */
.short ((register_unused - branchtable)/2) /* 0xfd46 */
.short ((register_unused - branchtable)/2) /* 0xfd47 */
.short ((register_unused - branchtable)/2) /* 0xfd48 */
.short ((register_unused - branchtable)/2) /* 0xfd49 */
.short ((register_unused - branchtable)/2) /* 0xfd4a */
.short ((register_unused - branchtable)/2) /* 0xfd4b */
.short ((register_unused - branchtable)/2) /* 0xfd4c */
.short ((register_unused - branchtable)/2) /* 0xfd4d */
.short ((register_unused - branchtable)/2) /* 0xfd4e */
.short ((register_unused - branchtable)/2) /* 0xfd4f */
.short ((register_unused - branchtable)/2) /* 0xfd50 */
.short ((register_unused - branchtable)/2) /* 0xfd51 */
.short ((register_unused - branchtable)/2) /* 0xfd52 */
.short ((register_unused - branchtable)/2) /* 0xfd53 */
.short ((register_unused - branchtable)/2) /* 0xfd54 */
.short ((register_unused - branchtable)/2) /* 0xfd55 */
.short ((register_unused - branchtable)/2) /* 0xfd56 */
.short ((register_unused - branchtable)/2) /* 0xfd57 */
.short ((register_unused - branchtable)/2) /* 0xfd58 */
.short ((register_unused - branchtable)/2) /* 0xfd59 */
.short ((register_unused - branchtable)/2) /* 0xfd5a */
.short ((register_unused - branchtable)/2) /* 0xfd5b */
.short ((register_unused - branchtable)/2) /* 0xfd5c */
.short ((register_unused - branchtable)/2) /* 0xfd5d */
.short ((register_unused - branchtable)/2) /* 0xfd5e */
.short ((register_unused - branchtable)/2) /* 0xfd5f */
.short ((register_unused - branchtable)/2) /* 0xfd60 */
.short ((register_unused - branchtable)/2) /* 0xfd61 */
.short ((register_unused - branchtable)/2) /* 0xfd62 */
.short ((register_unused - branchtable)/2) /* 0xfd63 */
.short ((register_unused - branchtable)/2) /* 0xfd64 */
.short ((register_unused - branchtable)/2) /* 0xfd65 */
.short ((register_unused - branchtable)/2) /* 0xfd66 */
.short ((register_unused - branchtable)/2) /* 0xfd67 */
.short ((register_unused - branchtable)/2) /* 0xfd68 */
.short ((register_unused - branchtable)/2) /* 0xfd69 */
.short ((register_unused - branchtable)/2) /* 0xfd6a */
.short ((register_unused - branchtable)/2) /* 0xfd6b */
.short ((register_unused - branchtable)/2) /* 0xfd6c */
.short ((register_unused - branchtable)/2) /* 0xfd6d */
.short ((register_unused - branchtable)/2) /* 0xfd6e */
.short ((register_unused - branchtable)/2) /* 0xfd6f */
.short ((register_unused - branchtable)/2) /* 0xfd70 */
.short ((register_unused - branchtable)/2) /* 0xfd71 */
.short ((register_unused - branchtable)/2) /* 0xfd72 */
.short ((register_unused - branchtable)/2) /* 0xfd73 */
.short ((register_unused - branchtable)/2) /* 0xfd74 */
.short ((register_unused - branchtable)/2) /* 0xfd75 */
.short ((register_unused - branchtable)/2) /* 0xfd76 */
.short ((register_unused - branchtable)/2) /* 0xfd77 */
.short ((register_unused - branchtable)/2) /* 0xfd78 */
.short ((register_unused - branchtable)/2) /* 0xfd79 */
.short ((register_unused - branchtable)/2) /* 0xfd7a */
.short ((register_unused - branchtable)/2) /* 0xfd7b */
.short ((register_unused - branchtable)/2) /* 0xfd7c */
.short ((register_unused - branchtable)/2) /* 0xfd7d */
.short ((register_unused - branchtable)/2) /* 0xfd7e */
.short ((register_unused - branchtable)/2) /* 0xfd7f */
.short ((register_unused - branchtable)/2) /* 0xfd80 */
.short ((register_unused - branchtable)/2) /* 0xfd81 */
.short ((register_unused - branchtable)/2) /* 0xfd82 */
.short ((register_unused - branchtable)/2) /* 0xfd83 */
.short ((register_unused - branchtable)/2) /* 0xfd84 */
.short ((register_unused - branchtable)/2) /* 0xfd85 */
.short ((register_unused - branchtable)/2) /* 0xfd86 */
.short ((register_unused - branchtable)/2) /* 0xfd87 */
.short ((register_unused - branchtable)/2) /* 0xfd88 */
.short ((register_unused - branchtable)/2) /* 0xfd89 */
.short ((register_unused - branchtable)/2) /* 0xfd8a */
.short ((register_unused - branchtable)/2) /* 0xfd8b */
.short ((register_unused - branchtable)/2) /* 0xfd8c */
.short ((register_unused - branchtable)/2) /* 0xfd8d */
.short ((register_unused - branchtable)/2) /* 0xfd8e */
.short ((register_unused - branchtable)/2) /* 0xfd8f */
.short ((register_unused - branchtable)/2) /* 0xfd90 */
.short ((register_unused - branchtable)/2) /* 0xfd91 */
.short ((register_unused - branchtable)/2) /* 0xfd92 */
.short ((register_unused - branchtable)/2) /* 0xfd93 */
.short ((register_unused - branchtable)/2) /* 0xfd94 */
.short ((register_unused - branchtable)/2) /* 0xfd95 */
.short ((register_unused - branchtable)/2) /* 0xfd96 */
.short ((register_unused - branchtable)/2) /* 0xfd97 */
.short ((register_unused - branchtable)/2) /* 0xfd98 */
.short ((register_unused - branchtable)/2) /* 0xfd99 */
.short ((register_unused - branchtable)/2) /* 0xfd9a */
.short ((register_unused - branchtable)/2) /* 0xfd9b */
.short ((register_unused - branchtable)/2) /* 0xfd9c */
.short ((register_unused - branchtable)/2) /* 0xfd9d */
.short ((register_unused - branchtable)/2) /* 0xfd9e */
.short ((register_unused - branchtable)/2) /* 0xfd9f */
.short ((register_unused - branchtable)/2) /* 0xfda0 */
.short ((register_unused - branchtable)/2) /* 0xfda1 */
.short ((register_unused - branchtable)/2) /* 0xfda2 */
.short ((register_unused - branchtable)/2) /* 0xfda3 */
.short ((register_unused - branchtable)/2) /* 0xfda4 */
.short ((register_unused - branchtable)/2) /* 0xfda5 */
.short ((register_unused - branchtable)/2) /* 0xfda6 */
.short ((register_unused - branchtable)/2) /* 0xfda7 */
.short ((register_unused - branchtable)/2) /* 0xfda8 */
.short ((register_unused - branchtable)/2) /* 0xfda9 */
.short ((register_unused - branchtable)/2) /* 0xfdaa */
.short ((register_unused - branchtable)/2) /* 0xfdab */
.short ((register_unused - branchtable)/2) /* 0xfdac */
.short ((register_unused - branchtable)/2) /* 0xfdad */
.short ((register_unused - branchtable)/2) /* 0xfdae */
.short ((register_unused - branchtable)/2) /* 0xfdaf */
.short ((register_unused - branchtable)/2) /* 0xfdb0 */
.short ((register_unused - branchtable)/2) /* 0xfdb1 */
.short ((register_unused - branchtable)/2) /* 0xfdb2 */
.short ((register_unused - branchtable)/2) /* 0xfdb3 */
.short ((register_unused - branchtable)/2) /* 0xfdb4 */
.short ((register_unused - branchtable)/2) /* 0xfdb5 */
.short ((register_unused - branchtable)/2) /* 0xfdb6 */
.short ((register_unused - branchtable)/2) /* 0xfdb7 */
.short ((register_unused - branchtable)/2) /* 0xfdb8 */
.short ((register_unused - branchtable)/2) /* 0xfdb9 */
.short ((register_unused - branchtable)/2) /* 0xfdba */
.short ((register_unused - branchtable)/2) /* 0xfdbb */
.short ((register_unused - branchtable)/2) /* 0xfdbc */
.short ((register_unused - branchtable)/2) /* 0xfdbd */
.short ((register_unused - branchtable)/2) /* 0xfdbe */
.short ((register_unused - branchtable)/2) /* 0xfdbf */
.short ((register_unused - branchtable)/2) /* 0xfdc0 */
.short ((register_unused - branchtable)/2) /* 0xfdc1 */
.short ((register_unused - branchtable)/2) /* 0xfdc2 */
.short ((register_unused - branchtable)/2) /* 0xfdc3 */
.short ((register_unused - branchtable)/2) /* 0xfdc4 */
.short ((register_unused - branchtable)/2) /* 0xfdc5 */
.short ((register_unused - branchtable)/2) /* 0xfdc6 */
.short ((register_unused - branchtable)/2) /* 0xfdc7 */
.short ((register_unused - branchtable)/2) /* 0xfdc8 */
.short ((register_unused - branchtable)/2) /* 0xfdc9 */
.short ((register_unused - branchtable)/2) /* 0xfdca */
.short ((register_unused - branchtable)/2) /* 0xfdcb */
.short ((register_unused - branchtable)/2) /* 0xfdcc */
.short ((register_unused - branchtable)/2) /* 0xfdcd */
.short ((register_unused - branchtable)/2) /* 0xfdce */
.short ((register_unused - branchtable)/2) /* 0xfdcf */
.short ((register_unused - branchtable)/2) /* 0xfdd0 */
.short ((register_unused - branchtable)/2) /* 0xfdd1 */
.short ((register_unused - branchtable)/2) /* 0xfdd2 */
.short ((register_unused - branchtable)/2) /* 0xfdd3 */
.short ((register_unused - branchtable)/2) /* 0xfdd4 */
.short ((register_unused - branchtable)/2) /* 0xfdd5 */
.short ((register_unused - branchtable)/2) /* 0xfdd6 */
.short ((register_unused - branchtable)/2) /* 0xfdd7 */
.short ((register_unused - branchtable)/2) /* 0xfdd8 */
.short ((register_unused - branchtable)/2) /* 0xfdd9 */
.short ((register_unused - branchtable)/2) /* 0xfdda */
.short ((register_unused - branchtable)/2) /* 0xfddb */
.short ((register_unused - branchtable)/2) /* 0xfddc */
.short ((register_unused - branchtable)/2) /* 0xfddd */
.short ((register_unused - branchtable)/2) /* 0xfdde */
.short ((register_unused - branchtable)/2) /* 0xfddf */
.short ((register_unused - branchtable)/2) /* 0xfde0 */
.short ((register_unused - branchtable)/2) /* 0xfde1 */
.short ((register_unused - branchtable)/2) /* 0xfde2 */
.short ((register_unused - branchtable)/2) /* 0xfde3 */
.short ((register_unused - branchtable)/2) /* 0xfde4 */
.short ((register_unused - branchtable)/2) /* 0xfde5 */
.short ((register_unused - branchtable)/2) /* 0xfde6 */
.short ((register_unused - branchtable)/2) /* 0xfde7 */
.short ((register_unused - branchtable)/2) /* 0xfde8 */
.short ((register_unused - branchtable)/2) /* 0xfde9 */
.short ((register_unused - branchtable)/2) /* 0xfdea */
.short ((register_unused - branchtable)/2) /* 0xfdeb */
.short ((register_unused - branchtable)/2) /* 0xfdec */
.short ((register_unused - branchtable)/2) /* 0xfded */
.short ((register_unused - branchtable)/2) /* 0xfdee */
.short ((register_unused - branchtable)/2) /* 0xfdef */
.short ((register_unused - branchtable)/2) /* 0xfdf0 */
.short ((register_unused - branchtable)/2) /* 0xfdf1 */
.short ((register_unused - branchtable)/2) /* 0xfdf2 */
.short ((register_unused - branchtable)/2) /* 0xfdf3 */
.short ((register_unused - branchtable)/2) /* 0xfdf4 */
.short ((register_unused - branchtable)/2) /* 0xfdf5 */
.short ((register_unused - branchtable)/2) /* 0xfdf6 */
.short ((register_unused - branchtable)/2) /* 0xfdf7 */
.short ((register_unused - branchtable)/2) /* 0xfdf8 */
.short ((register_unused - branchtable)/2) /* 0xfdf9 */
.short ((register_unused - branchtable)/2) /* 0xfdfa */
.short ((register_unused - branchtable)/2) /* 0xfdfb */
.short ((register_unused - branchtable)/2) /* 0xfdfc */
.short ((register_unused - branchtable)/2) /* 0xfdfd */
.short ((register_unused - branchtable)/2) /* 0xfdfe */
.short ((register_unused - branchtable)/2) /* 0xfdff */
.short ((register_unused - branchtable)/2) /* 0xfe00 */
.short ((register_unused - branchtable)/2) /* 0xfe01 */
.short ((register_unused - branchtable)/2) /* 0xfe02 */
.short ((register_unused - branchtable)/2) /* 0xfe03 */
.short ((register_unused - branchtable)/2) /* 0xfe04 */
.short ((register_0xfe05 - branchtable)/2) /* 0xfe05 */
.short ((register_unused - branchtable)/2) /* 0xfe06 */
.short ((register_unused - branchtable)/2) /* 0xfe07 */
.short ((register_unused - branchtable)/2) /* 0xfe08 */
.short ((register_unused - branchtable)/2) /* 0xfe09 */
.short ((register_unused - branchtable)/2) /* 0xfe0a */
.short ((register_unused - branchtable)/2) /* 0xfe0b */
.short ((register_unused - branchtable)/2) /* 0xfe0c */
.short ((register_unused - branchtable)/2) /* 0xfe0d */
.short ((register_unused - branchtable)/2) /* 0xfe0e */
.short ((register_unused - branchtable)/2) /* 0xfe0f */
.short ((register_unused - branchtable)/2) /* 0xfe10 */
.short ((register_unused - branchtable)/2) /* 0xfe11 */
.short ((register_unused - branchtable)/2) /* 0xfe12 */
.short ((register_unused - branchtable)/2) /* 0xfe13 */
.short ((register_unused - branchtable)/2) /* 0xfe14 */
.short ((register_unused - branchtable)/2) /* 0xfe15 */
.short ((register_unused - branchtable)/2) /* 0xfe16 */
.short ((register_unused - branchtable)/2) /* 0xfe17 */
.short ((register_unused - branchtable)/2) /* 0xfe18 */
.short ((register_unused - branchtable)/2) /* 0xfe19 */
.short ((register_unused - branchtable)/2) /* 0xfe1a */
.short ((register_unused - branchtable)/2) /* 0xfe1b */
.short ((register_unused - branchtable)/2) /* 0xfe1c */
.short ((register_unused - branchtable)/2) /* 0xfe1d */
.short ((register_unused - branchtable)/2) /* 0xfe1e */
.short ((register_unused - branchtable)/2) /* 0xfe1f */
.short ((register_unused - branchtable)/2) /* 0xfe20 */
.short ((register_unused - branchtable)/2) /* 0xfe21 */
.short ((register_unused - branchtable)/2) /* 0xfe22 */
.short ((register_unused - branchtable)/2) /* 0xfe23 */
.short ((register_unused - branchtable)/2) /* 0xfe24 */
.short ((register_unused - branchtable)/2) /* 0xfe25 */
.short ((register_unused - branchtable)/2) /* 0xfe26 */
.short ((register_unused - branchtable)/2) /* 0xfe27 */
.short ((register_unused - branchtable)/2) /* 0xfe28 */
.short ((register_unused - branchtable)/2) /* 0xfe29 */
.short ((register_unused - branchtable)/2) /* 0xfe2a */
.short ((register_unused - branchtable)/2) /* 0xfe2b */
.short ((register_unused - branchtable)/2) /* 0xfe2c */
.short ((register_unused - branchtable)/2) /* 0xfe2d */
.short ((register_unused - branchtable)/2) /* 0xfe2e */
.short ((register_unused - branchtable)/2) /* 0xfe2f */
.short ((register_unused - branchtable)/2) /* 0xfe30 */
.short ((register_unused - branchtable)/2) /* 0xfe31 */
.short ((register_unused - branchtable)/2) /* 0xfe32 */
.short ((register_unused - branchtable)/2) /* 0xfe33 */
.short ((register_unused - branchtable)/2) /* 0xfe34 */
.short ((register_unused - branchtable)/2) /* 0xfe35 */
.short ((register_unused - branchtable)/2) /* 0xfe36 */
.short ((register_unused - branchtable)/2) /* 0xfe37 */
.short ((register_unused - branchtable)/2) /* 0xfe38 */
.short ((register_unused - branchtable)/2) /* 0xfe39 */
.short ((register_unused - branchtable)/2) /* 0xfe3a */
.short ((register_unused - branchtable)/2) /* 0xfe3b */
.short ((register_unused - branchtable)/2) /* 0xfe3c */
.short ((register_unused - branchtable)/2) /* 0xfe3d */
.short ((register_unused - branchtable)/2) /* 0xfe3e */
.short ((register_unused - branchtable)/2) /* 0xfe3f */
.short ((register_unused - branchtable)/2) /* 0xfe40 */
.short ((register_unused - branchtable)/2) /* 0xfe41 */
.short ((register_unused - branchtable)/2) /* 0xfe42 */
.short ((register_unused - branchtable)/2) /* 0xfe43 */
.short ((register_unused - branchtable)/2) /* 0xfe44 */
.short ((register_unused - branchtable)/2) /* 0xfe45 */
.short ((register_unused - branchtable)/2) /* 0xfe46 */
.short ((register_unused - branchtable)/2) /* 0xfe47 */
.short ((register_unused - branchtable)/2) /* 0xfe48 */
.short ((register_unused - branchtable)/2) /* 0xfe49 */
.short ((register_unused - branchtable)/2) /* 0xfe4a */
.short ((register_unused - branchtable)/2) /* 0xfe4b */
.short ((register_unused - branchtable)/2) /* 0xfe4c */
.short ((register_unused - branchtable)/2) /* 0xfe4d */
.short ((register_unused - branchtable)/2) /* 0xfe4e */
.short ((register_unused - branchtable)/2) /* 0xfe4f */
.short ((register_unused - branchtable)/2) /* 0xfe50 */
.short ((register_unused - branchtable)/2) /* 0xfe51 */
.short ((register_unused - branchtable)/2) /* 0xfe52 */
.short ((register_unused - branchtable)/2) /* 0xfe53 */
.short ((register_unused - branchtable)/2) /* 0xfe54 */
.short ((register_unused - branchtable)/2) /* 0xfe55 */
.short ((register_unused - branchtable)/2) /* 0xfe56 */
.short ((register_unused - branchtable)/2) /* 0xfe57 */
.short ((register_unused - branchtable)/2) /* 0xfe58 */
.short ((register_unused - branchtable)/2) /* 0xfe59 */
.short ((register_unused - branchtable)/2) /* 0xfe5a */
.short ((register_unused - branchtable)/2) /* 0xfe5b */
.short ((register_unused - branchtable)/2) /* 0xfe5c */
.short ((register_unused - branchtable)/2) /* 0xfe5d */
.short ((register_unused - branchtable)/2) /* 0xfe5e */
.short ((register_unused - branchtable)/2) /* 0xfe5f */
.short ((register_unused - branchtable)/2) /* 0xfe60 */
.short ((register_unused - branchtable)/2) /* 0xfe61 */
.short ((register_unused - branchtable)/2) /* 0xfe62 */
.short ((register_unused - branchtable)/2) /* 0xfe63 */
.short ((register_unused - branchtable)/2) /* 0xfe64 */
.short ((register_unused - branchtable)/2) /* 0xfe65 */
.short ((register_unused - branchtable)/2) /* 0xfe66 */
.short ((register_unused - branchtable)/2) /* 0xfe67 */
.short ((register_unused - branchtable)/2) /* 0xfe68 */
.short ((register_unused - branchtable)/2) /* 0xfe69 */
.short ((register_unused - branchtable)/2) /* 0xfe6a */
.short ((register_unused - branchtable)/2) /* 0xfe6b */
.short ((register_unused - branchtable)/2) /* 0xfe6c */
.short ((register_unused - branchtable)/2) /* 0xfe6d */
.short ((register_unused - branchtable)/2) /* 0xfe6e */
.short ((register_unused - branchtable)/2) /* 0xfe6f */
.short ((register_unused - branchtable)/2) /* 0xfe70 */
.short ((register_unused - branchtable)/2) /* 0xfe71 */
.short ((register_unused - branchtable)/2) /* 0xfe72 */
.short ((register_unused - branchtable)/2) /* 0xfe73 */
.short ((register_unused - branchtable)/2) /* 0xfe74 */
.short ((register_unused - branchtable)/2) /* 0xfe75 */
.short ((register_unused - branchtable)/2) /* 0xfe76 */
.short ((register_unused - branchtable)/2) /* 0xfe77 */
.short ((register_unused - branchtable)/2) /* 0xfe78 */
.short ((register_unused - branchtable)/2) /* 0xfe79 */
.short ((register_unused - branchtable)/2) /* 0xfe7a */
.short ((register_unused - branchtable)/2) /* 0xfe7b */
.short ((register_unused - branchtable)/2) /* 0xfe7c */
.short ((register_unused - branchtable)/2) /* 0xfe7d */
.short ((register_unused - branchtable)/2) /* 0xfe7e */
.short ((register_unused - branchtable)/2) /* 0xfe7f */
.short ((register_unused - branchtable)/2) /* 0xfe80 */
.short ((register_unused - branchtable)/2) /* 0xfe81 */
.short ((register_unused - branchtable)/2) /* 0xfe82 */
.short ((register_unused - branchtable)/2) /* 0xfe83 */
.short ((register_unused - branchtable)/2) /* 0xfe84 */
.short ((register_unused - branchtable)/2) /* 0xfe85 */
.short ((register_unused - branchtable)/2) /* 0xfe86 */
.short ((register_unused - branchtable)/2) /* 0xfe87 */
.short ((register_unused - branchtable)/2) /* 0xfe88 */
.short ((register_unused - branchtable)/2) /* 0xfe89 */
.short ((register_unused - branchtable)/2) /* 0xfe8a */
.short ((register_unused - branchtable)/2) /* 0xfe8b */
.short ((register_unused - branchtable)/2) /* 0xfe8c */
.short ((register_unused - branchtable)/2) /* 0xfe8d */
.short ((register_unused - branchtable)/2) /* 0xfe8e */
.short ((register_unused - branchtable)/2) /* 0xfe8f */
.short ((register_unused - branchtable)/2) /* 0xfe90 */
.short ((register_unused - branchtable)/2) /* 0xfe91 */
.short ((register_unused - branchtable)/2) /* 0xfe92 */
.short ((register_unused - branchtable)/2) /* 0xfe93 */
.short ((register_unused - branchtable)/2) /* 0xfe94 */
.short ((register_unused - branchtable)/2) /* 0xfe95 */
.short ((register_unused - branchtable)/2) /* 0xfe96 */
.short ((register_unused - branchtable)/2) /* 0xfe97 */
.short ((register_unused - branchtable)/2) /* 0xfe98 */
.short ((register_unused - branchtable)/2) /* 0xfe99 */
.short ((register_unused - branchtable)/2) /* 0xfe9a */
.short ((register_unused - branchtable)/2) /* 0xfe9b */
.short ((register_unused - branchtable)/2) /* 0xfe9c */
.short ((register_unused - branchtable)/2) /* 0xfe9d */
.short ((register_unused - branchtable)/2) /* 0xfe9e */
.short ((register_unused - branchtable)/2) /* 0xfe9f */
.short ((register_unused - branchtable)/2) /* 0xfea0 */
.short ((register_unused - branchtable)/2) /* 0xfea1 */
.short ((register_unused - branchtable)/2) /* 0xfea2 */
.short ((register_unused - branchtable)/2) /* 0xfea3 */
.short ((register_unused - branchtable)/2) /* 0xfea4 */
.short ((register_unused - branchtable)/2) /* 0xfea5 */
.short ((register_unused - branchtable)/2) /* 0xfea6 */
.short ((register_unused - branchtable)/2) /* 0xfea7 */
.short ((register_unused - branchtable)/2) /* 0xfea8 */
.short ((register_unused - branchtable)/2) /* 0xfea9 */
.short ((register_unused - branchtable)/2) /* 0xfeaa */
.short ((register_unused - branchtable)/2) /* 0xfeab */
.short ((register_unused - branchtable)/2) /* 0xfeac */
.short ((register_unused - branchtable)/2) /* 0xfead */
.short ((register_unused - branchtable)/2) /* 0xfeae */
.short ((register_unused - branchtable)/2) /* 0xfeaf */
.short ((register_unused - branchtable)/2) /* 0xfeb0 */
.short ((register_unused - branchtable)/2) /* 0xfeb1 */
.short ((register_unused - branchtable)/2) /* 0xfeb2 */
.short ((register_unused - branchtable)/2) /* 0xfeb3 */
.short ((register_unused - branchtable)/2) /* 0xfeb4 */
.short ((register_unused - branchtable)/2) /* 0xfeb5 */
.short ((register_unused - branchtable)/2) /* 0xfeb6 */
.short ((register_unused - branchtable)/2) /* 0xfeb7 */
.short ((register_unused - branchtable)/2) /* 0xfeb8 */
.short ((register_unused - branchtable)/2) /* 0xfeb9 */
.short ((register_unused - branchtable)/2) /* 0xfeba */
.short ((register_unused - branchtable)/2) /* 0xfebb */
.short ((register_unused - branchtable)/2) /* 0xfebc */
.short ((register_unused - branchtable)/2) /* 0xfebd */
.short ((register_unused - branchtable)/2) /* 0xfebe */
.short ((register_unused - branchtable)/2) /* 0xfebf */
.short ((register_unused - branchtable)/2) /* 0xfec0 */
.short ((register_unused - branchtable)/2) /* 0xfec1 */
.short ((register_unused - branchtable)/2) /* 0xfec2 */
.short ((register_unused - branchtable)/2) /* 0xfec3 */
.short ((register_unused - branchtable)/2) /* 0xfec4 */
.short ((register_unused - branchtable)/2) /* 0xfec5 */
.short ((register_unused - branchtable)/2) /* 0xfec6 */
.short ((register_unused - branchtable)/2) /* 0xfec7 */
.short ((register_unused - branchtable)/2) /* 0xfec8 */
.short ((register_unused - branchtable)/2) /* 0xfec9 */
.short ((register_unused - branchtable)/2) /* 0xfeca */
.short ((register_unused - branchtable)/2) /* 0xfecb */
.short ((register_unused - branchtable)/2) /* 0xfecc */
.short ((register_unused - branchtable)/2) /* 0xfecd */
.short ((register_unused - branchtable)/2) /* 0xfece */
.short ((register_unused - branchtable)/2) /* 0xfecf */
.short ((register_unused - branchtable)/2) /* 0xfed0 */
.short ((register_unused - branchtable)/2) /* 0xfed1 */
.short ((register_unused - branchtable)/2) /* 0xfed2 */
.short ((register_unused - branchtable)/2) /* 0xfed3 */
.short ((register_unused - branchtable)/2) /* 0xfed4 */
.short ((register_unused - branchtable)/2) /* 0xfed5 */
.short ((register_unused - branchtable)/2) /* 0xfed6 */
.short ((register_unused - branchtable)/2) /* 0xfed7 */
.short ((register_unused - branchtable)/2) /* 0xfed8 */
.short ((register_unused - branchtable)/2) /* 0xfed9 */
.short ((register_unused - branchtable)/2) /* 0xfeda */
.short ((register_unused - branchtable)/2) /* 0xfedb */
.short ((register_unused - branchtable)/2) /* 0xfedc */
.short ((register_unused - branchtable)/2) /* 0xfedd */
.short ((register_unused - branchtable)/2) /* 0xfede */
.short ((register_unused - branchtable)/2) /* 0xfedf */
.short ((register_unused - branchtable)/2) /* 0xfee0 */
.short ((register_unused - branchtable)/2) /* 0xfee1 */
.short ((register_unused - branchtable)/2) /* 0xfee2 */
.short ((register_unused - branchtable)/2) /* 0xfee3 */
.short ((register_unused - branchtable)/2) /* 0xfee4 */
.short ((register_unused - branchtable)/2) /* 0xfee5 */
.short ((register_unused - branchtable)/2) /* 0xfee6 */
.short ((register_unused - branchtable)/2) /* 0xfee7 */
.short ((register_unused - branchtable)/2) /* 0xfee8 */
.short ((register_unused - branchtable)/2) /* 0xfee9 */
.short ((register_unused - branchtable)/2) /* 0xfeea */
.short ((register_unused - branchtable)/2) /* 0xfeeb */
.short ((register_unused - branchtable)/2) /* 0xfeec */
.short ((register_unused - branchtable)/2) /* 0xfeed */
.short ((register_unused - branchtable)/2) /* 0xfeee */
.short ((register_unused - branchtable)/2) /* 0xfeef */
.short ((register_unused - branchtable)/2) /* 0xfef0 */
.short ((register_unused - branchtable)/2) /* 0xfef1 */
.short ((register_unused - branchtable)/2) /* 0xfef2 */
.short ((register_unused - branchtable)/2) /* 0xfef3 */
.short ((register_unused - branchtable)/2) /* 0xfef4 */
.short ((register_unused - branchtable)/2) /* 0xfef5 */
.short ((register_unused - branchtable)/2) /* 0xfef6 */
.short ((register_unused - branchtable)/2) /* 0xfef7 */
.short ((register_unused - branchtable)/2) /* 0xfef8 */
.short ((register_unused - branchtable)/2) /* 0xfef9 */
.short ((register_unused - branchtable)/2) /* 0xfefa */
.short ((register_unused - branchtable)/2) /* 0xfefb */
.short ((register_unused - branchtable)/2) /* 0xfefc */
.short ((register_unused - branchtable)/2) /* 0xfefd */
.short ((register_unused - branchtable)/2) /* 0xfefe */
.short ((register_unused - branchtable)/2) /* 0xfeff */
.short ((register_unused - branchtable)/2) /* 0xff00 */
.short ((register_unused - branchtable)/2) /* 0xff01 */
.short ((register_unused - branchtable)/2) /* 0xff02 */
.short ((register_unused - branchtable)/2) /* 0xff03 */
.short ((register_unused - branchtable)/2) /* 0xff04 */
.short ((register_unused - branchtable)/2) /* 0xff05 */
.short ((register_unused - branchtable)/2) /* 0xff06 */
.short ((register_unused - branchtable)/2) /* 0xff07 */
.short ((register_unused - branchtable)/2) /* 0xff08 */
.short ((register_unused - branchtable)/2) /* 0xff09 */
.short ((register_unused - branchtable)/2) /* 0xff0a */
.short ((register_unused - branchtable)/2) /* 0xff0b */
.short ((register_unused - branchtable)/2) /* 0xff0c */
.short ((register_unused - branchtable)/2) /* 0xff0d */
.short ((register_unused - branchtable)/2) /* 0xff0e */
.short ((register_unused - branchtable)/2) /* 0xff0f */
.short ((register_unused - branchtable)/2) /* 0xff10 */
.short ((register_unused - branchtable)/2) /* 0xff11 */
.short ((register_unused - branchtable)/2) /* 0xff12 */
.short ((register_unused - branchtable)/2) /* 0xff13 */
.short ((register_unused - branchtable)/2) /* 0xff14 */
.short ((register_unused - branchtable)/2) /* 0xff15 */
.short ((register_unused - branchtable)/2) /* 0xff16 */
.short ((register_unused - branchtable)/2) /* 0xff17 */
.short ((register_unused - branchtable)/2) /* 0xff18 */
.short ((register_unused - branchtable)/2) /* 0xff19 */
.short ((register_unused - branchtable)/2) /* 0xff1a */
.short ((register_unused - branchtable)/2) /* 0xff1b */
.short ((register_unused - branchtable)/2) /* 0xff1c */
.short ((register_unused - branchtable)/2) /* 0xff1d */
.short ((register_unused - branchtable)/2) /* 0xff1e */
.short ((register_unused - branchtable)/2) /* 0xff1f */
.short ((register_unused - branchtable)/2) /* 0xff20 */
.short ((register_unused - branchtable)/2) /* 0xff21 */
.short ((register_unused - branchtable)/2) /* 0xff22 */
.short ((register_unused - branchtable)/2) /* 0xff23 */
.short ((register_unused - branchtable)/2) /* 0xff24 */
.short ((register_unused - branchtable)/2) /* 0xff25 */
.short ((register_unused - branchtable)/2) /* 0xff26 */
.short ((register_unused - branchtable)/2) /* 0xff27 */
.short ((register_unused - branchtable)/2) /* 0xff28 */
.short ((register_unused - branchtable)/2) /* 0xff29 */
.short ((register_unused - branchtable)/2) /* 0xff2a */
.short ((register_unused - branchtable)/2) /* 0xff2b */
.short ((register_unused - branchtable)/2) /* 0xff2c */
.short ((register_unused - branchtable)/2) /* 0xff2d */
.short ((register_unused - branchtable)/2) /* 0xff2e */
.short ((register_unused - branchtable)/2) /* 0xff2f */
.short ((register_unused - branchtable)/2) /* 0xff30 */
.short ((register_unused - branchtable)/2) /* 0xff31 */
.short ((register_unused - branchtable)/2) /* 0xff32 */
.short ((register_unused - branchtable)/2) /* 0xff33 */
.short ((register_unused - branchtable)/2) /* 0xff34 */
.short ((register_unused - branchtable)/2) /* 0xff35 */
.short ((register_unused - branchtable)/2) /* 0xff36 */
.short ((register_unused - branchtable)/2) /* 0xff37 */
.short ((register_unused - branchtable)/2) /* 0xff38 */
.short ((register_unused - branchtable)/2) /* 0xff39 */
.short ((register_unused - branchtable)/2) /* 0xff3a */
.short ((register_unused - branchtable)/2) /* 0xff3b */
.short ((register_unused - branchtable)/2) /* 0xff3c */
.short ((register_unused - branchtable)/2) /* 0xff3d */
.short ((register_unused - branchtable)/2) /* 0xff3e */
.short ((register_unused - branchtable)/2) /* 0xff3f */
.short ((register_unused - branchtable)/2) /* 0xff40 */
.short ((register_unused - branchtable)/2) /* 0xff41 */
.short ((register_unused - branchtable)/2) /* 0xff42 */
.short ((register_unused - branchtable)/2) /* 0xff43 */
.short ((register_unused - branchtable)/2) /* 0xff44 */
.short ((register_unused - branchtable)/2) /* 0xff45 */
.short ((register_unused - branchtable)/2) /* 0xff46 */
.short ((register_unused - branchtable)/2) /* 0xff47 */
.short ((register_unused - branchtable)/2) /* 0xff48 */
.short ((register_unused - branchtable)/2) /* 0xff49 */
.short ((register_unused - branchtable)/2) /* 0xff4a */
.short ((register_unused - branchtable)/2) /* 0xff4b */
.short ((register_unused - branchtable)/2) /* 0xff4c */
.short ((register_unused - branchtable)/2) /* 0xff4d */
.short ((register_unused - branchtable)/2) /* 0xff4e */
.short ((register_unused - branchtable)/2) /* 0xff4f */
.short ((register_unused - branchtable)/2) /* 0xff50 */
.short ((register_unused - branchtable)/2) /* 0xff51 */
.short ((register_unused - branchtable)/2) /* 0xff52 */
.short ((register_unused - branchtable)/2) /* 0xff53 */
.short ((register_unused - branchtable)/2) /* 0xff54 */
.short ((register_unused - branchtable)/2) /* 0xff55 */
.short ((register_unused - branchtable)/2) /* 0xff56 */
.short ((register_unused - branchtable)/2) /* 0xff57 */
.short ((register_unused - branchtable)/2) /* 0xff58 */
.short ((register_unused - branchtable)/2) /* 0xff59 */
.short ((register_unused - branchtable)/2) /* 0xff5a */
.short ((register_unused - branchtable)/2) /* 0xff5b */
.short ((register_unused - branchtable)/2) /* 0xff5c */
.short ((register_unused - branchtable)/2) /* 0xff5d */
.short ((register_unused - branchtable)/2) /* 0xff5e */
.short ((register_unused - branchtable)/2) /* 0xff5f */
.short ((register_unused - branchtable)/2) /* 0xff60 */
.short ((register_unused - branchtable)/2) /* 0xff61 */
.short ((register_unused - branchtable)/2) /* 0xff62 */
.short ((register_unused - branchtable)/2) /* 0xff63 */
.short ((register_unused - branchtable)/2) /* 0xff64 */
.short ((register_unused - branchtable)/2) /* 0xff65 */
.short ((register_unused - branchtable)/2) /* 0xff66 */
.short ((register_unused - branchtable)/2) /* 0xff67 */
.short ((register_unused - branchtable)/2) /* 0xff68 */
.short ((register_unused - branchtable)/2) /* 0xff69 */
.short ((register_unused - branchtable)/2) /* 0xff6a */
.short ((register_unused - branchtable)/2) /* 0xff6b */
.short ((register_unused - branchtable)/2) /* 0xff6c */
.short ((register_unused - branchtable)/2) /* 0xff6d */
.short ((register_unused - branchtable)/2) /* 0xff6e */
.short ((register_unused - branchtable)/2) /* 0xff6f */
.short ((register_unused - branchtable)/2) /* 0xff70 */
.short ((register_unused - branchtable)/2) /* 0xff71 */
.short ((register_unused - branchtable)/2) /* 0xff72 */
.short ((register_unused - branchtable)/2) /* 0xff73 */
.short ((register_unused - branchtable)/2) /* 0xff74 */
.short ((register_unused - branchtable)/2) /* 0xff75 */
.short ((register_unused - branchtable)/2) /* 0xff76 */
.short ((register_unused - branchtable)/2) /* 0xff77 */
.short ((register_unused - branchtable)/2) /* 0xff78 */
.short ((register_unused - branchtable)/2) /* 0xff79 */
.short ((register_unused - branchtable)/2) /* 0xff7a */
.short ((register_unused - branchtable)/2) /* 0xff7b */
.short ((register_unused - branchtable)/2) /* 0xff7c */
.short ((register_unused - branchtable)/2) /* 0xff7d */
.short ((register_unused - branchtable)/2) /* 0xff7e */
.short ((register_unused - branchtable)/2) /* 0xff7f */
.short ((register_unused - branchtable)/2) /* 0xff80 */
.short ((register_unused - branchtable)/2) /* 0xff81 */
.short ((register_unused - branchtable)/2) /* 0xff82 */
.short ((register_unused - branchtable)/2) /* 0xff83 */
.short ((register_unused - branchtable)/2) /* 0xff84 */
.short ((register_unused - branchtable)/2) /* 0xff85 */
.short ((register_unused - branchtable)/2) /* 0xff86 */
.short ((register_unused - branchtable)/2) /* 0xff87 */
.short ((register_unused - branchtable)/2) /* 0xff88 */
.short ((register_unused - branchtable)/2) /* 0xff89 */
.short ((register_unused - branchtable)/2) /* 0xff8a */
.short ((register_unused - branchtable)/2) /* 0xff8b */
.short ((register_unused - branchtable)/2) /* 0xff8c */
.short ((register_unused - branchtable)/2) /* 0xff8d */
.short ((register_unused - branchtable)/2) /* 0xff8e */
.short ((register_unused - branchtable)/2) /* 0xff8f */
.short ((register_unused - branchtable)/2) /* 0xff90 */
.short ((register_unused - branchtable)/2) /* 0xff91 */
.short ((register_unused - branchtable)/2) /* 0xff92 */
.short ((register_unused - branchtable)/2) /* 0xff93 */
.short ((register_unused - branchtable)/2) /* 0xff94 */
.short ((register_unused - branchtable)/2) /* 0xff95 */
.short ((register_unused - branchtable)/2) /* 0xff96 */
.short ((register_unused - branchtable)/2) /* 0xff97 */
.short ((register_unused - branchtable)/2) /* 0xff98 */
.short ((register_unused - branchtable)/2) /* 0xff99 */
.short ((register_unused - branchtable)/2) /* 0xff9a */
.short ((register_unused - branchtable)/2) /* 0xff9b */
.short ((register_unused - branchtable)/2) /* 0xff9c */
.short ((register_unused - branchtable)/2) /* 0xff9d */
.short ((register_unused - branchtable)/2) /* 0xff9e */
.short ((register_unused - branchtable)/2) /* 0xff9f */
.short ((register_unused - branchtable)/2) /* 0xffa0 */
.short ((register_unused - branchtable)/2) /* 0xffa1 */
.short ((register_unused - branchtable)/2) /* 0xffa2 */
.short ((register_unused - branchtable)/2) /* 0xffa3 */
.short ((register_unused - branchtable)/2) /* 0xffa4 */
.short ((register_unused - branchtable)/2) /* 0xffa5 */
.short ((register_unused - branchtable)/2) /* 0xffa6 */
.short ((register_unused - branchtable)/2) /* 0xffa7 */
.short ((register_unused - branchtable)/2) /* 0xffa8 */
.short ((register_unused - branchtable)/2) /* 0xffa9 */
.short ((register_unused - branchtable)/2) /* 0xffaa */
.short ((register_unused - branchtable)/2) /* 0xffab */
.short ((register_unused - branchtable)/2) /* 0xffac */
.short ((register_unused - branchtable)/2) /* 0xffad */
.short ((register_unused - branchtable)/2) /* 0xffae */
.short ((register_unused - branchtable)/2) /* 0xffaf */
.short ((register_unused - branchtable)/2) /* 0xffb0 */
.short ((register_unused - branchtable)/2) /* 0xffb1 */
.short ((register_unused - branchtable)/2) /* 0xffb2 */
.short ((register_unused - branchtable)/2) /* 0xffb3 */
.short ((register_unused - branchtable)/2) /* 0xffb4 */
.short ((register_unused - branchtable)/2) /* 0xffb5 */
.short ((register_unused - branchtable)/2) /* 0xffb6 */
.short ((register_unused - branchtable)/2) /* 0xffb7 */
.short ((register_unused - branchtable)/2) /* 0xffb8 */
.short ((register_unused - branchtable)/2) /* 0xffb9 */
.short ((register_unused - branchtable)/2) /* 0xffba */
.short ((register_unused - branchtable)/2) /* 0xffbb */
.short ((register_unused - branchtable)/2) /* 0xffbc */
.short ((register_unused - branchtable)/2) /* 0xffbd */
.short ((register_unused - branchtable)/2) /* 0xffbe */
.short ((register_unused - branchtable)/2) /* 0xffbf */
.short ((register_unused - branchtable)/2) /* 0xffc0 */
.short ((register_unused - branchtable)/2) /* 0xffc1 */
.short ((register_unused - branchtable)/2) /* 0xffc2 */
.short ((register_unused - branchtable)/2) /* 0xffc3 */
.short ((register_unused - branchtable)/2) /* 0xffc4 */
.short ((register_unused - branchtable)/2) /* 0xffc5 */
.short ((register_unused - branchtable)/2) /* 0xffc6 */
.short ((register_unused - branchtable)/2) /* 0xffc7 */
.short ((register_unused - branchtable)/2) /* 0xffc8 */
.short ((register_unused - branchtable)/2) /* 0xffc9 */
.short ((register_unused - branchtable)/2) /* 0xffca */
.short ((register_unused - branchtable)/2) /* 0xffcb */
.short ((register_unused - branchtable)/2) /* 0xffcc */
.short ((register_unused - branchtable)/2) /* 0xffcd */
.short ((register_unused - branchtable)/2) /* 0xffce */
.short ((register_unused - branchtable)/2) /* 0xffcf */
.short ((register_unused - branchtable)/2) /* 0xffd0 */
.short ((register_unused - branchtable)/2) /* 0xffd1 */
.short ((register_unused - branchtable)/2) /* 0xffd2 */
.short ((register_unused - branchtable)/2) /* 0xffd3 */
.short ((register_unused - branchtable)/2) /* 0xffd4 */
.short ((register_unused - branchtable)/2) /* 0xffd5 */
.short ((register_unused - branchtable)/2) /* 0xffd6 */
.short ((register_unused - branchtable)/2) /* 0xffd7 */
.short ((register_unused - branchtable)/2) /* 0xffd8 */
.short ((register_unused - branchtable)/2) /* 0xffd9 */
.short ((register_unused - branchtable)/2) /* 0xffda */
.short ((register_unused - branchtable)/2) /* 0xffdb */
.short ((register_unused - branchtable)/2) /* 0xffdc */
.short ((register_unused - branchtable)/2) /* 0xffdd */
.short ((register_unused - branchtable)/2) /* 0xffde */
.short ((register_unused - branchtable)/2) /* 0xffdf */
.short ((register_unused - branchtable)/2) /* 0xffe0 */
.short ((register_unused - branchtable)/2) /* 0xffe1 */
.short ((register_unused - branchtable)/2) /* 0xffe2 */
.short ((register_unused - branchtable)/2) /* 0xffe3 */
.short ((register_unused - branchtable)/2) /* 0xffe4 */
.short ((register_unused - branchtable)/2) /* 0xffe5 */
.short ((register_unused - branchtable)/2) /* 0xffe6 */