-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFontTester.asm
executable file
·2544 lines (2542 loc) · 151 KB
/
FontTester.asm
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
; compiler: jal 2.4o (compiled May 8 2011)
; command line: C:\JALPack\compiler\jalv2.exe C:\Pic2\Projecten\SWR\FontTester.jal -s C:\JALPack\lib -no-variable-reuse
list p=18f4550, r=dec
errorlevel -306 ; no page boundary warnings
errorlevel -302 ; no bank 0 warnings
errorlevel -202 ; no 'argument out of range' warnings
__config 0x00300000, 0x00
__config 0x00300001, 0x08
__config 0x00300002, 0x1f
__config 0x00300003, 0x1e
__config 0x00300004, 0x00
__config 0x00300005, 0x83
__config 0x00300006, 0x81
__config 0x00300007, 0x00
__config 0x00300008, 0x0f
__config 0x00300009, 0xc0
__config 0x0030000a, 0x0f
__config 0x0030000b, 0xe0
__config 0x0030000c, 0x0f
__config 0x0030000d, 0x40
v_high EQU 1
v_low EQU 0
v_input EQU 1
v_output EQU 0
v_all_input EQU 255
v_all_output EQU 0
v_font_top_left_horizontal EQU 2
v_font_bottom_left_vertical EQU 7
v__pic_accum EQU 0x0000 ; _pic_accum
v_ucon EQU 0x0f6d ; ucon
v_ucon_usben EQU 0x0f6d ; ucon_usben-->ucon:3
v_ucfg EQU 0x0f6f ; ucfg
v_ucfg_utrdis EQU 0x0f6f ; ucfg_utrdis-->ucfg:3
v_portd EQU 0x0f83 ; portd
v_latc EQU 0x0f8b ; latc
v_latd EQU 0x0f8c ; latd
v_late EQU 0x0f8d ; late
v_trisa EQU 0x0f92 ; trisa
v_trisa_trisa6 EQU 0x0f92 ; trisa_trisa6-->trisa:6
v_trisa_trisa5 EQU 0x0f92 ; trisa_trisa5-->trisa:5
v_trisa_trisa4 EQU 0x0f92 ; trisa_trisa4-->trisa:4
v_trisb EQU 0x0f93 ; trisb
v_trisb_trisb7 EQU 0x0f93 ; trisb_trisb7-->trisb:7
v_trisb_trisb6 EQU 0x0f93 ; trisb_trisb6-->trisb:6
v_trisb_trisb5 EQU 0x0f93 ; trisb_trisb5-->trisb:5
v_trisb_trisb4 EQU 0x0f93 ; trisb_trisb4-->trisb:4
v_trisb_trisb3 EQU 0x0f93 ; trisb_trisb3-->trisb:3
v_trisb_trisb2 EQU 0x0f93 ; trisb_trisb2-->trisb:2
v_trisb_trisb1 EQU 0x0f93 ; trisb_trisb1-->trisb:1
v_trisb_trisb0 EQU 0x0f93 ; trisb_trisb0-->trisb:0
v_trisc EQU 0x0f94 ; trisc
v_trisc_trisc7 EQU 0x0f94 ; trisc_trisc7-->trisc:7
v_trisc_trisc6 EQU 0x0f94 ; trisc_trisc6-->trisc:6
v_trisc_trisc2 EQU 0x0f94 ; trisc_trisc2-->trisc:2
v_trisc_trisc1 EQU 0x0f94 ; trisc_trisc1-->trisc:1
v_trisc_trisc0 EQU 0x0f94 ; trisc_trisc0-->trisc:0
v_trisd EQU 0x0f95 ; trisd
v_trise EQU 0x0f96 ; trise
v_trise_trise2 EQU 0x0f96 ; trise_trise2-->trise:2
v_trise_trise1 EQU 0x0f96 ; trise_trise1-->trise:1
v_trise_trise0 EQU 0x0f96 ; trise_trise0-->trise:0
v_cmcon EQU 0x0fb4 ; cmcon
v_adcon2 EQU 0x0fc0 ; adcon2
v_adcon1 EQU 0x0fc1 ; adcon1
v_adcon0 EQU 0x0fc2 ; adcon0
v_osccon EQU 0x0fd3 ; osccon
v__status EQU 0x0fd8 ; _status
v__z EQU 2
v__c EQU 0
v__banked EQU 1
v__access EQU 0
v__tablat EQU 0x0ff5 ; _tablat
v__tblptr EQU 0x0ff6 ; _tblptr
v__pcl EQU 0x0ff9 ; _pcl
v__pclath EQU 0x0ffa ; _pclath
v__pclatu EQU 0x0ffb ; _pclatu
v_i EQU 0x0037 ; i
v_font_5x7 EQU 1
v_font_5x7_byte_per_char EQU 5
v_font_5x7_width EQU 5
v_font_5x7_height EQU 7
v_font_5x7_bit_direction EQU 7
v_font_8x12 EQU 3
v_font_8x12_width EQU 10
v_font_8x12_height EQU 12
v_font_8x12_byte_per_char EQU 12
v_font_8x12_bit_direction EQU 2
v_font_6x8 EQU 2
v_font_6x8_byte_per_char EQU 6
v_font_6x8_width EQU 6
v_font_6x8_height EQU 8
v_font_6x8_bit_direction EQU 7
v_font_12x16 EQU 8
v_font_12x16_width EQU 12
v_font_12x16_height EQU 16
v_font_12x16_byte_per_char EQU 16
v_font_12x16_bit_direction EQU 7
v_glcd_x_pixels EQU 128
v_glcd_y_pixels EQU 64
v_ks0108_left EQU 0
v_ks0108_right EQU 1
v_ks0108_cmd_on EQU 63
v_ks0108_cmd_page EQU 184
v_ks0108_cmd_column EQU 64
v_glcd_black EQU 1
v_glcd_white EQU 0
v_glcd_di_data EQU 1
v_glcd_di_inst EQU 0
v_glcd_background_color EQU 0x0039 ; glcd_background_color
v_glcd_pen_color EQU 0x003a ; glcd_pen_color
v_glcd_char_x_pos EQU 0x003b ; glcd_char_x_pos
v_glcd_char_y_pos EQU 0x003c ; glcd_char_y_pos
v__glcd_font_current_id EQU 0x003d ; _glcd_font_current_id
v__glcd_font_current_byte_per_char EQU 0x003e ; _glcd_font_current_byte_per_char
v__glcd_font_current_width EQU 0x003f ; _glcd_font_current_width
v__glcd_font_current_height EQU 0x0040 ; _glcd_font_current_height
v__glcd_font_current_bit_direction EQU 0x0041 ; _glcd_font_current_bit_direction
v__pic_temp EQU 0x0009 ; _pic_temp-->_pic_state
v__pic_pointer EQU 0x0010 ; _pic_pointer
v__pic_loop EQU 0x000f ; _pic_loop
v__pic_multiplier EQU 0x0009 ; _pic_multiplier-->_pic_state
v__pic_multiplicand EQU 0x000b ; _pic_multiplicand-->_pic_state+2
v__pic_mresult EQU 0x000d ; _pic_mresult-->_pic_state+4
v__pic_state EQU 0x0009 ; _pic_state
v___x_128 EQU 0x0f8b ; x-->latc:7
v___x_129 EQU 0x0f8b ; x-->latc:6
v___x_192 EQU 0x0042 ; x
v___y_17 EQU 0x0043 ; y
v___x_193 EQU 0x0044 ; x
v___y_18 EQU 0x0045 ; y
v___x_194 EQU 0x0046 ; x
v___y_19 EQU 0x0047 ; y
v___x_195 EQU 0x0048 ; x
v___y_20 EQU 0x0049 ; y
v__floop20 EQU 0x004a ; drawdemo:_floop20
v____temp_115 EQU 0x004b ; drawdemo:_temp
v___x0_1 EQU 0x0053 ; glcd_line:x0
v___y0_1 EQU 0x0054 ; glcd_line:y0
v___x1_1 EQU 0x0055 ; glcd_line:x1
v___y1_1 EQU 0x0056 ; glcd_line:y1
v____temp_113 EQU 0x0057 ; glcd_line:_temp
v___dx_2 EQU 0x005b ; glcd_line:dx
v___dy_2 EQU 0x005d ; glcd_line:dy
v_two_ds EQU 0x005f ; glcd_line:two_ds
v_two_dy EQU 0x0061 ; glcd_line:two_dy
v_currentx EQU 0x0063 ; glcd_line:currentx
v_currenty EQU 0x0065 ; glcd_line:currenty
v_xinc EQU 0x0067 ; glcd_line:xinc
v_yinc EQU 0x0069 ; glcd_line:yinc
v_two_ds_accumulated_error EQU 0x006b ; glcd_line:two_ds_accumulated_error
v_two_dy_accumulated_error EQU 0x006d ; glcd_line:two_dy_accumulated_error
v__btemp199 EQU 0x006f ; glcd_line:_btemp199-->_bitbucket5:2
v__btemp200 EQU 0x006f ; glcd_line:_btemp200-->_bitbucket5:3
v__btemp201 EQU 0x006f ; glcd_line:_btemp201-->_bitbucket5:4
v____bitbucket_5 EQU 0x006f ; glcd_line:_bitbucket
v___char_5 EQU 0x0013 ; _glcd_put:char
v___x_186 EQU 0x0014 ; glcd_write_char_pbp:x
v___y_11 EQU 0x0015 ; glcd_write_char_pbp:y
v___value_3 EQU 0x0016 ; glcd_write_char_pbp:value
v_color EQU 0x0017 ; glcd_write_char_pbp:color
v____temp_109 EQU 0x0018 ; glcd_write_char_pbp:_temp
v_j EQU 0x001e ; glcd_write_char_pbp:j
v_k EQU 0x0020 ; glcd_write_char_pbp:k
v__floop16 EQU 0x0022 ; glcd_write_char_pbp:_floop16
v_char_byte EQU 0x0023 ; glcd_write_char_pbp:char_byte
v_bit_y_address EQU 0x0024 ; glcd_write_char_pbp:bit_y_address
v__floop17 EQU 0x0025 ; glcd_write_char_pbp:_floop17
v___j_1 EQU 0x001e ; glcd_write_char_pbp:j
v___k_1 EQU 0x0020 ; glcd_write_char_pbp:k
v__floop18 EQU 0x0022 ; glcd_write_char_pbp:_floop18
v___char_byte_1 EQU 0x0023 ; glcd_write_char_pbp:char_byte
v___bit_y_address_1 EQU 0x0024 ; glcd_write_char_pbp:bit_y_address
v__floop19 EQU 0x0025 ; glcd_write_char_pbp:_floop19
v___idx_1 EQU 0x0035 ; glcd_font_lookup:idx
v___font_id_1 EQU 0x0071 ; glcd_font_use:font_id
v___x_176 EQU 0x0f8c ; glcd_init:x-->latd
v___x_177 EQU 0x0f8d ; glcd_init:x-->late:1
v___x_178 EQU 0x0f8d ; glcd_init:x-->late:2
v___x_179 EQU 0x0f8d ; glcd_init:x-->late:0
v___x_180 EQU 0x0f8b ; glcd_init:x-->latc:1
v___x_181 EQU 0x0f8b ; glcd_init:x-->latc:0
v___x_182 EQU 0x0f8b ; glcd_init:x-->latc:2
v___x_173 EQU 0x0f8b ; glcd_clear_screen:x-->latc:2
v___x_174 EQU 0x0f8b ; glcd_clear_screen:x-->latc:2
v___x_175 EQU 0x0f8d ; glcd_clear_screen:x-->late:1
v___page_2 EQU 0x0072 ; glcd_clear_screen:page
v____temp_104 EQU 0x0073 ; glcd_clear_screen:_temp
v___page_3 EQU 0x0075 ; glcd_clear_screen:page
v____temp_105 EQU 0x0076 ; glcd_clear_screen:_temp
v___column_4 EQU 0x0078 ; glcd_clear_screen:column
v____temp_106 EQU 0x0079 ; glcd_clear_screen:_temp
v___column_5 EQU 0x007b ; glcd_clear_screen:column
v____temp_107 EQU 0x007c ; glcd_clear_screen:_temp
v___data_96 EQU 0x007e ; glcd_fill:data
v___i_2 EQU 0x007f ; glcd_fill:i
v__floop14 EQU 0x0080 ; glcd_fill:_floop14
v___x_171 EQU 0x0f8d ; glcd_fill:x-->late:1
v____temp_100 EQU 0x0081 ; glcd_fill:_temp
v____temp_101 EQU 0x0083 ; glcd_fill:_temp
v___column_2 EQU 0x0085 ; glcd_fill:column
v____temp_102 EQU 0x0086 ; glcd_fill:_temp
v___column_3 EQU 0x0088 ; glcd_fill:column
v____temp_103 EQU 0x0089 ; glcd_fill:_temp
v___x_172 EQU 0x0f8d ; glcd_fill:x-->late:1
v____temp_95 EQU 0 ; _ks0108_read_byte(): _temp
v____temp_86 EQU 0 ; _ks0108_write_byte(): _temp
v___x_150 EQU 0x0026 ; glcd_write_pixel:x
v___y_3 EQU 0x0027 ; glcd_write_pixel:y
v___data_92 EQU 0x0028 ; glcd_write_pixel:data
v___side_8 EQU 0x002e ; glcd_write_pixel:side-->_bitbucket20:0
v____temp_81 EQU 0x0029 ; glcd_write_pixel:_temp
v__rparam0 EQU 0x002c ; glcd_write_pixel:_rparam0
v__rparam1 EQU 0x002d ; glcd_write_pixel:_rparam1
v____bitbucket_20 EQU 0x002e ; glcd_write_pixel:_bitbucket
v___x_151 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v____temp_82 EQU 0x002f ; glcd_write_pixel:_temp
v____temp_83 EQU 0x002f ; glcd_write_pixel:_temp
v___x_152 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v___x_153 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v____temp_84 EQU 0x002f ; glcd_write_pixel:_temp
v____temp_85 EQU 0x002f ; glcd_write_pixel:_temp
v___x_154 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v___side_3 EQU 0x0034 ; _ks0108_read:side-->_bitbucket27:0
v___data_91 EQU 0x0033 ; _ks0108_read:data
v____bitbucket_27 EQU 0x0034 ; _ks0108_read:_bitbucket
v___x_139 EQU 0x0f8d ; _ks0108_read:x-->late:0
v___x_140 EQU 0x0f8b ; _ks0108_read:x-->latc:1
v___x_141 EQU 0x0f8b ; _ks0108_read:x-->latc:0
v___x_142 EQU 0x0f8d ; _ks0108_read:x-->late:2
v___x_143 EQU 0x0f8d ; _ks0108_read:x-->late:0
v___x_144 EQU 0x0f8d ; _ks0108_read:x-->late:0
v___x_145 EQU 0x0f8b ; _ks0108_read:x-->latc:1
v___x_146 EQU 0x0f8b ; _ks0108_read:x-->latc:0
v___side_1 EQU 0x0032 ; _ks0108_write:side-->_bitbucket28:0
v___data_90 EQU 0x0031 ; _ks0108_write:data
v____bitbucket_28 EQU 0x0032 ; _ks0108_write:_bitbucket
v___x_130 EQU 0x0f8d ; _ks0108_write:x-->late:0
v___x_131 EQU 0x0f8b ; _ks0108_write:x-->latc:1
v___x_132 EQU 0x0f8b ; _ks0108_write:x-->latc:0
v___x_133 EQU 0x0f8d ; _ks0108_write:x-->late:2
v___x_134 EQU 0x0f8c ; _ks0108_write:x-->latd
v___x_135 EQU 0x0f8d ; _ks0108_write:x-->late:0
v___x_136 EQU 0x0f8d ; _ks0108_write:x-->late:0
v___x_137 EQU 0x0f8b ; _ks0108_write:x-->latc:1
v___x_138 EQU 0x0f8b ; _ks0108_write:x-->latc:0
v___data_70 EQU 0 ; print_dword_hex(): data
v___data_66 EQU 0 ; print_word_hex(): data
v___data_56 EQU 0 ; print_dword_bin(): data
v___data_50 EQU 0 ; print_word_bin(): data
v____device_put_1 EQU 0x008b ; print_string:_device_put
v__str_count EQU 0x008e ; print_string:_str_count
v___str_1 EQU 0x0090 ; print_string:str
v_len EQU 0x0093 ; print_string:len
v___i_1 EQU 0x0095 ; print_string:i
v__floop9 EQU 0x0096 ; print_string:_floop9
v___n_5 EQU 0x0098 ; delay_100ms:n
v__floop5 EQU 0x009a ; delay_100ms:_floop5
v__floop6 EQU 0x009c ; delay_100ms:_floop6
v___n_3 EQU 0x009e ; delay_1ms:n
v__floop3 EQU 0x00a0 ; delay_1ms:_floop3
v__floop4 EQU 0x00a2 ; delay_1ms:_floop4
v____temp_56 EQU 0 ; polar_to_cartesian(): _temp
v___data_15 EQU 0 ; data_eeprom_write_dword(): data
v___data_11 EQU 0 ; data_eeprom_read_dword(): data
v___data_9 EQU 0 ; data_eeprom_write_word(): data
v___data_6 EQU 0 ; data_eeprom_read_word(): data
v___offset_1 EQU 0 ; _prepare_eeprom_access(): offset
; 7 include 18f4550
org 0
goto l__main
l__data_msg2
db 0x57,0x57,0x57,0x2e,0x50,0x49,0x33,0x52
db 0x41,0x5a,0x2e,0x4e
l__data_font_5x7_chars
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f
db 0x00,0x00,0x00,0x07,0x00,0x07,0x00,0x14
db 0x7f,0x14,0x7f,0x14,0x24,0x2a,0x7f,0x2a
db 0x12,0xc4,0xc8,0x10,0x26,0x46,0x36,0x49
db 0x55,0x22,0x50,0x00,0x05,0x03,0x00,0x00
db 0x00,0x1c,0x22,0x41,0x00,0x00,0x41,0x22
db 0x1c,0x00,0x14,0x08,0x3e,0x08,0x14,0x08
db 0x08,0x3e,0x08,0x08,0x00,0x00,0x50,0x30
db 0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x60
db 0x60,0x00,0x00,0x20,0x10,0x08,0x04,0x02
db 0x3e,0x51,0x49,0x45,0x3e,0x00,0x42,0x7f
db 0x40,0x00,0x42,0x61,0x51,0x49,0x46,0x21
db 0x41,0x45,0x4b,0x31,0x18,0x14,0x12,0x7f
db 0x10,0x27,0x45,0x45,0x45,0x39,0x3c,0x4a
db 0x49,0x49,0x30,0x01,0x71,0x09,0x05,0x03
db 0x36,0x49,0x49,0x49,0x36,0x06,0x49,0x49
db 0x29,0x1e,0x00,0x36,0x36,0x00,0x00,0x00
db 0x56,0x36,0x00,0x00,0x08,0x14,0x22,0x41
db 0x00,0x14,0x14,0x14,0x14,0x14,0x00,0x41
db 0x22,0x14,0x08,0x02,0x01,0x51,0x09,0x06
db 0x32,0x49,0x59,0x51,0x3e,0x7e,0x11,0x11
db 0x11,0x7e,0x7f,0x49,0x49,0x49,0x36,0x3e
db 0x41,0x41,0x41,0x22,0x7f,0x41,0x41,0x22
db 0x1c,0x7f,0x49,0x49,0x49,0x41,0x7f,0x09
db 0x09,0x09,0x01,0x3e,0x41,0x49,0x49,0x7a
db 0x7f,0x08,0x08,0x08,0x7f,0x00,0x41,0x7f
db 0x41,0x00,0x20,0x40,0x41,0x3f,0x01,0x7f
db 0x08,0x14,0x22,0x41,0x7f,0x40,0x40,0x40
db 0x40,0x7f,0x02,0x0c,0x02,0x7f,0x7f,0x04
db 0x08,0x10,0x7f,0x3e,0x41,0x41,0x41,0x3e
db 0x7f,0x09,0x09,0x09,0x06,0x3e,0x41,0x51
db 0x21,0x5e,0x7f,0x09,0x19,0x29,0x46,0x46
db 0x49,0x49,0x49,0x31,0x01,0x01,0x7f,0x01
db 0x01,0x3f,0x40,0x40,0x40,0x3f,0x1f,0x20
db 0x40,0x20,0x1f,0x3f,0x40,0x38,0x40,0x3f
db 0x63,0x14,0x08,0x14,0x63,0x07,0x08,0x70
db 0x08,0x07,0x61,0x51,0x49,0x45,0x43,0x00
db 0x7f,0x41,0x41,0x00,0x55,0x2a,0x55,0x2a
db 0x55,0x00,0x41,0x41,0x7f,0x00,0x04,0x02
db 0x01,0x02,0x04,0x40,0x40,0x40,0x40,0x40
db 0x00,0x01,0x02,0x04,0x00,0x20,0x54,0x54
db 0x54,0x78,0x7f,0x48,0x44,0x44,0x38,0x38
db 0x44,0x44,0x44,0x20,0x38,0x44,0x44,0x48
db 0x7f,0x38,0x54,0x54,0x54,0x18,0x08,0x7e
db 0x09,0x01,0x02,0x0c,0x52,0x52,0x52,0x3e
db 0x7f,0x08,0x04,0x04,0x78,0x00,0x44,0x7d
db 0x40,0x00,0x20,0x40,0x44,0x3d,0x00,0x7f
db 0x10,0x28,0x44,0x00,0x00,0x41,0x7f,0x40
db 0x00,0x7c,0x04,0x18,0x04,0x78,0x7c,0x08
db 0x04,0x04,0x78,0x38,0x44,0x44,0x44,0x38
db 0x7c,0x14,0x14,0x14,0x08,0x08,0x14,0x14
db 0x18,0x7c,0x7c,0x08,0x04,0x04,0x08,0x48
db 0x54,0x54,0x54,0x20,0x04,0x3f,0x44,0x40
db 0x20,0x3c,0x40,0x40,0x20,0x7c,0x1c,0x20
db 0x40,0x20,0x1c,0x3c,0x40,0x30,0x40,0x3c
db 0x44,0x28,0x10,0x28,0x44,0x0c,0x50,0x50
db 0x50,0x3c,0x44,0x64,0x54,0x4c,0x44,0x00
l__data_font_8x12_chars
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x00,0x18,0x18
db 0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x66,0xff,0xff,0x66
db 0x66,0x66,0x66,0x66,0x66,0xff,0xff,0x66
db 0x7e,0xff,0xdb,0xd8,0xd8,0xfe,0x7f,0x1b
db 0x1b,0xdb,0xff,0x7e,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0xe3,0xa3,0xe6,0x06,0x0c,0x0c,0x30,0x30
db 0x60,0x67,0xc5,0xc7,0x18,0x18,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x0c,0x1c,0x18,0x18,0x30,0x30,0x30,0x30
db 0x18,0x18,0x1c,0x0c,0x18,0x1c,0x0c,0x0c
db 0x06,0x06,0x06,0x06,0x0c,0x0c,0x1c,0x18
db 0xe0,0xa0,0xe0,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18
db 0x18,0xff,0xff,0x18,0x18,0x18,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x18,0x38,0x30,0x00,0x00,0x00,0x00
db 0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x18,0x18,0x03,0x03,0x06,0x06
db 0x0c,0x0c,0x30,0x30,0x60,0x60,0xc0,0xc0
db 0x7e,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xff,0x7e,0x18,0x38,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x18,0xff,0xff
db 0x7e,0xff,0xc3,0x07,0x0e,0x1c,0x38,0x70
db 0xe0,0xc0,0xff,0xff,0x7e,0xff,0xc3,0x03
db 0x03,0x7e,0x7e,0x03,0x03,0xc3,0xff,0x7e
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0x7f,0x03
db 0x03,0x03,0x03,0x03,0xff,0xff,0xc0,0xc0
db 0xc0,0xfe,0xfe,0x03,0x03,0xc3,0xff,0x7e
db 0x7e,0xff,0xc3,0xc0,0xc0,0xfe,0xff,0xc3
db 0xc3,0xc3,0xff,0x7e,0xff,0xff,0x03,0x03
db 0x06,0x0e,0x1c,0x38,0x70,0x60,0xc0,0xc0
db 0x7e,0xff,0xc3,0xc3,0xc3,0x7e,0x7e,0xc3
db 0xc3,0xc3,0xff,0x7e,0x7e,0xff,0xc3,0xc3
db 0xc3,0xff,0x7f,0x03,0x03,0xc3,0xff,0x7e
db 0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x18,0x18,0x18,0x18,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x18,0x38,0x30
db 0x06,0x0c,0x18,0x30,0x60,0xc0,0xc0,0x60
db 0x30,0x18,0x0c,0x06,0x00,0x00,0x00,0xff
db 0xff,0x00,0xff,0xff,0x00,0x00,0x00,0x00
db 0xc0,0x60,0x30,0x18,0x0c,0x06,0x06,0x0c
db 0x18,0x30,0x60,0xc0,0x7e,0xff,0xc3,0x03
db 0x03,0x03,0x0e,0x1c,0x18,0x00,0x18,0x18
db 0x7e,0xff,0xc3,0xc3,0xdb,0xdf,0xde,0xc0
db 0xc0,0xc3,0xff,0x7e,0x7e,0xff,0xc3,0xc3
db 0xc3,0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xfe,0xff,0xc3,0xc3,0xc3,0xfe,0xfe,0xc3
db 0xc3,0xc3,0xff,0xfe,0x7e,0xff,0xc3,0xc0
db 0xc0,0xc0,0xc0,0xc0,0xc0,0xc3,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xff,0xfe,0xff,0xff,0xc0,0xc0
db 0xc0,0xfe,0xfe,0xc0,0xc0,0xc0,0xff,0xff
db 0xff,0xff,0xc0,0xc0,0xc0,0xfe,0xfe,0xc0
db 0xc0,0xc0,0xc0,0xc0,0x7e,0xff,0xc3,0xc0
db 0xc0,0xc0,0xc7,0xc7,0xc3,0xc3,0xff,0x7e
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0xff,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xff,0xff,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x18,0xff,0xff
db 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03
db 0x03,0xc3,0xff,0x7e,0xc3,0xc3,0xc6,0xcc
db 0xd8,0xf0,0xf0,0xd8,0xcc,0xc6,0xc3,0xc3
db 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0
db 0xc0,0xc0,0xff,0xff,0xc3,0xe7,0xff,0xdb
db 0xdb,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xe3,0xe3,0xf3,0xd3,0xdb,0xcb,0xcf
db 0xc7,0xc7,0xc3,0xc3,0x7e,0xff,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xff,0xfe,0xc0
db 0xc0,0xc0,0xc0,0xc0,0x7e,0xff,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xdb,0xdb,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xff,0xfe,0xcc
db 0xce,0xc6,0xc3,0xc3,0x7e,0xff,0xc3,0xc0
db 0xc0,0xfe,0x7f,0x03,0x03,0xc3,0xff,0x7e
db 0xff,0xff,0x18,0x18,0x18,0x18,0x18,0x18
db 0x18,0x18,0x18,0x18,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0x7e
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0x66
db 0x66,0x3c,0x3c,0x18,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xdb,0xdb,0xff,0x66
db 0xc3,0xe7,0x66,0x3c,0x3c,0x18,0x18,0x3c
db 0x3c,0x66,0xe7,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xff,0x7f,0x03,0x03,0xc3,0xff,0x7e
db 0xff,0xff,0x03,0x07,0x0e,0x1c,0x38,0x70
db 0xe0,0xc0,0xff,0xff,0x1c,0x1c,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x18,0x1c,0x1c
db 0xc0,0xc0,0xf0,0x30,0x38,0x18,0x18,0x0c
db 0x0c,0x0f,0x03,0x03,0x38,0x38,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x18,0x38,0x38
db 0x18,0x3c,0x66,0xc3,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff
db 0x18,0x18,0x04,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x7e,0xff,0xc3,0xc3
db 0xc3,0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xfe,0xff,0xc3,0xc3,0xc3,0xfe,0xfe,0xc3
db 0xc3,0xc3,0xff,0xfe,0x7e,0xff,0xc3,0xc0
db 0xc0,0xc0,0xc0,0xc0,0xc0,0xc3,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xff,0xfe,0xff,0xff,0xc0,0xc0
db 0xc0,0xfe,0xfe,0xc0,0xc0,0xc0,0xff,0xff
db 0xff,0xff,0xc0,0xc0,0xc0,0xfe,0xfe,0xc0
db 0xc0,0xc0,0xc0,0xc0,0x7e,0xff,0xc3,0xc0
db 0xc0,0xc0,0xc7,0xc7,0xc3,0xc3,0xff,0x7e
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0xff,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xff,0xff,0x18,0x18
db 0x18,0x18,0x18,0x18,0x18,0x18,0xff,0xff
db 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03
db 0x03,0xc3,0xff,0x7e,0xc3,0xc3,0xc6,0xcc
db 0xd8,0xf0,0xf0,0xd8,0xcc,0xc6,0xc3,0xc3
db 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0
db 0xc0,0xc0,0xff,0xff,0xc3,0xe7,0xff,0xdb
db 0xdb,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xe3,0xe3,0xf3,0xd3,0xdb,0xcb,0xcf
db 0xc7,0xc7,0xc3,0xc3,0x7e,0xff,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xff,0xfe,0xc0
db 0xc0,0xc0,0xc0,0xc0,0x7e,0xff,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xdb,0xdb,0xff,0x7e
db 0xfe,0xff,0xc3,0xc3,0xc3,0xff,0xfe,0xcc
db 0xce,0xc6,0xc3,0xc3,0x7e,0xff,0xc3,0xc0
db 0xc0,0xfe,0x7f,0x03,0x03,0xc3,0xff,0x7e
db 0xff,0xff,0x18,0x18,0x18,0x18,0x18,0x18
db 0x18,0x18,0x18,0x18,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xff,0x7e
db 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0x66
db 0x66,0x3c,0x3c,0x18,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xc3,0xc3,0xc3,0xdb,0xdb,0xff,0x66
db 0xc3,0xe7,0x66,0x3c,0x3c,0x18,0x18,0x3c
db 0x3c,0x66,0xe7,0xc3,0xc3,0xc3,0xc3,0xc3
db 0xc3,0xff,0x7f,0x03,0x03,0xc3,0xff,0x7e
db 0xff,0xff,0x03,0x07,0x0e,0x1c,0x38,0x70
db 0xe0,0xc0,0xff,0xff,0x1c,0x1c,0x18,0x18
db 0x18,0x38,0x38,0x18,0x18,0x18,0x1c,0x1c
db 0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18
db 0x18,0x18,0x18,0x18,0x38,0x38,0x18,0x18
db 0x18,0x1c,0x1c,0x18,0x18,0x18,0x38,0x38
db 0x00,0x00,0x00,0x00,0xde,0xff,0x7b,0x00
db 0x00,0x00,0x00,0x00,0x7e,0x7e,0x66,0x66
db 0x66,0x66,0x66,0x66,0x66,0x66,0x7e,0x7e
l__data_font_6x8_chars
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x2f,0x00,0x00,0x00,0x00,0x07,0x00
db 0x07,0x00,0x00,0x14,0x7f,0x14,0x7f,0x14
db 0x00,0x24,0x2a,0x7f,0x2a,0x12,0x00,0x62
db 0x64,0x08,0x13,0x23,0x00,0x36,0x49,0x55
db 0x22,0x50,0x00,0x00,0x05,0x03,0x00,0x00
db 0x00,0x00,0x1c,0x22,0x41,0x00,0x00,0x00
db 0x41,0x22,0x1c,0x00,0x00,0x14,0x08,0x3e
db 0x08,0x14,0x00,0x08,0x08,0x3e,0x08,0x08
db 0x00,0x00,0x00,0xa0,0x60,0x00,0x00,0x08
db 0x08,0x08,0x08,0x08,0x00,0x00,0x60,0x60
db 0x00,0x00,0x00,0x20,0x10,0x08,0x04,0x02
db 0x00,0x3e,0x51,0x49,0x45,0x3e,0x00,0x00
db 0x42,0x7f,0x40,0x00,0x00,0x42,0x61,0x51
db 0x49,0x46,0x00,0x21,0x41,0x45,0x4b,0x31
db 0x00,0x18,0x14,0x12,0x7f,0x10,0x00,0x27
db 0x45,0x45,0x45,0x39,0x00,0x3c,0x4a,0x49
db 0x49,0x30,0x00,0x01,0x71,0x09,0x05,0x03
db 0x00,0x36,0x49,0x49,0x49,0x36,0x00,0x06
db 0x49,0x49,0x29,0x1e,0x00,0x00,0x36,0x36
db 0x00,0x00,0x00,0x00,0x56,0x36,0x00,0x00
db 0x00,0x08,0x14,0x22,0x41,0x00,0x00,0x14
db 0x14,0x14,0x14,0x14,0x00,0x00,0x41,0x22
db 0x14,0x08,0x00,0x02,0x01,0x51,0x09,0x06
db 0x00,0x32,0x49,0x59,0x51,0x3e,0x00,0x7c
db 0x12,0x11,0x12,0x7c,0x00,0x7f,0x49,0x49
db 0x49,0x36,0x00,0x3e,0x41,0x41,0x41,0x22
db 0x00,0x7f,0x41,0x41,0x22,0x1c,0x00,0x7f
db 0x49,0x49,0x49,0x41,0x00,0x7f,0x09,0x09
db 0x09,0x01,0x00,0x3e,0x41,0x49,0x49,0x7a
db 0x00,0x7f,0x08,0x08,0x08,0x7f,0x00,0x00
db 0x41,0x7f,0x41,0x00,0x00,0x20,0x40,0x41
db 0x3f,0x01,0x00,0x7f,0x08,0x14,0x22,0x41
db 0x00,0x7f,0x40,0x40,0x40,0x40,0x00,0x7f
db 0x02,0x0c,0x02,0x7f,0x00,0x7f,0x04,0x08
db 0x10,0x7f,0x00,0x3e,0x41,0x41,0x41,0x3e
db 0x00,0x7f,0x09,0x09,0x09,0x06,0x00,0x3e
db 0x41,0x51,0x21,0x5e,0x00,0x7f,0x09,0x19
db 0x29,0x46,0x00,0x46,0x49,0x49,0x49,0x31
db 0x00,0x01,0x01,0x7f,0x01,0x01,0x00,0x3f
db 0x40,0x40,0x40,0x3f,0x00,0x1f,0x20,0x40
db 0x20,0x1f,0x00,0x3f,0x40,0x38,0x40,0x3f
db 0x00,0x63,0x14,0x08,0x14,0x63,0x00,0x07
db 0x08,0x70,0x08,0x07,0x00,0x61,0x51,0x49
db 0x45,0x43,0x00,0x00,0x7f,0x41,0x41,0x00
db 0x00,0x55,0x2a,0x55,0x2a,0x55,0x00,0x00
db 0x41,0x41,0x7f,0x00,0x00,0x04,0x02,0x01
db 0x02,0x04,0x00,0x40,0x40,0x40,0x40,0x40
db 0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x20
db 0x54,0x54,0x54,0x78,0x00,0x7f,0x48,0x44
db 0x44,0x38,0x00,0x38,0x44,0x44,0x44,0x20
db 0x00,0x38,0x44,0x44,0x48,0x7f,0x00,0x38
db 0x54,0x54,0x54,0x18,0x00,0x08,0x7e,0x09
db 0x01,0x02,0x00,0x18,0xa4,0xa4,0xa4,0x7c
db 0x00,0x7f,0x08,0x04,0x04,0x78,0x00,0x00
db 0x44,0x7d,0x40,0x00,0x00,0x40,0x80,0x84
db 0x7d,0x00,0x00,0x7f,0x10,0x28,0x44,0x00
db 0x00,0x00,0x41,0x7f,0x40,0x00,0x00,0x7c
db 0x04,0x18,0x04,0x78,0x00,0x7c,0x08,0x04
db 0x04,0x78,0x00,0x38,0x44,0x44,0x44,0x38
db 0x00,0xfc,0x24,0x24,0x24,0x18,0x00,0x18
db 0x24,0x24,0x18,0xfc,0x00,0x7c,0x08,0x04
db 0x04,0x08,0x00,0x48,0x54,0x54,0x54,0x20
db 0x00,0x04,0x3f,0x44,0x40,0x20,0x00,0x3c
db 0x40,0x40,0x20,0x7c,0x00,0x1c,0x20,0x40
db 0x20,0x1c,0x00,0x3c,0x40,0x30,0x40,0x3c
db 0x00,0x44,0x28,0x10,0x28,0x44,0x00,0x1c
db 0xa0,0xa0,0xa0,0x7c,0x00,0x44,0x64,0x54
db 0x4c,0x44,0x00,0x00,0x06,0x09,0x09,0x06
l__data_font_12x16_chars
db 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0xff,0x6f,0xff,0x6f,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x0f
db 0x00,0x0f,0x00,0x00,0x00,0x0f,0x00,0x0f
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x0b,0xa0,0x00,0xa0,0x00
db 0xa0,0x00,0xa0,0x00,0xff,0x7f,0xa0,0x00
db 0xff,0x7f,0xa0,0x00,0xa0,0x00,0xa0,0x00
db 0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0x00
db 0x00,0x7e,0x20,0x43,0x20,0x41,0x20,0x41
db 0x20,0x41,0x20,0x41,0x20,0xc2,0x30,0x82
db 0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b
db 0xff,0x3f,0xff,0x7f,0x00,0x60,0x00,0x60
db 0xf8,0x7f,0xf8,0x1f,0xf8,0x7f,0x00,0x60
db 0x00,0x60,0xff,0x7f,0xff,0x3f,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
l__data_msg66
db 0x57,0x57,0x57,0x77,0x77,0x77
l__pic_multiply
movlw 16
movwf v__pic_loop,v__access
l__l935
bcf v__status, v__c,v__access
rlcf v__pic_mresult,f,v__access
rlcf v__pic_mresult+1,f,v__access
bcf v__status, v__c,v__access
rlcf v__pic_multiplier,f,v__access
rlcf v__pic_multiplier+1,f,v__access
btfss v__status, v__c,v__access
goto l__l936
movf v__pic_multiplicand,w,v__access
addwf v__pic_mresult,f,v__access
movf v__pic_multiplicand+1,w,v__access
addwfc v__pic_mresult+1,f,v__access
l__l936
decfsz v__pic_loop,f,v__access
goto l__l935
return
l__pic_indirect
movwf v__pclatu,v__access
movf v__pic_pointer+1,w,v__access
movwf v__pclath,v__access
movf v__pic_pointer,w,v__access
movwf v__pcl,v__access
l__main
; swrhelpers.jal
; 104 pin_b1_direction = input ;button2
bsf v_trisb, 1,v__access ; trisb_trisb1
; 105 pin_b2_direction = input ;rotary
bsf v_trisb, 2,v__access ; trisb_trisb2
; 106 pin_b3_direction = input ;rotary
bsf v_trisb, 3,v__access ; trisb_trisb3
; 107 pin_c6_direction = output ;led_red
bcf v_trisc, 6,v__access ; trisc_trisc6
; 108 pin_c7_direction = output ;led_green
bcf v_trisc, 7,v__access ; trisc_trisc7
; 112 pin_b4_direction = input ;mtr1_l1
bsf v_trisb, 4,v__access ; trisb_trisb4
; 113 pin_b5_direction = input ;mtr1_l2
bsf v_trisb, 5,v__access ; trisb_trisb5
; 114 pin_b0_direction = input ;mtr1_l3
bsf v_trisb, 0,v__access ; trisb_trisb0
; 115 pin_b7_direction = output;mtr1_vo
bcf v_trisb, 7,v__access ; trisb_trisb7
; 116 pin_a4_direction = input ;mtr2_l1
bsf v_trisa, 4,v__access ; trisa_trisa4
; 117 pin_a5_direction = input ;mtr2_l2
bsf v_trisa, 5,v__access ; trisa_trisa5
; 118 pin_a6_direction = input ;mtr2_l3
bsf v_trisa, 6,v__access ; trisa_trisa6
; 119 pin_b6_direction = output;mtr2_vo
bcf v_trisb, 6,v__access ; trisb_trisb6
; 174 led_green = 1
bsf v_latc, 7,v__access ; x128
; 175 led_red = 0
bcf v_latc, 6,v__access ; x129
; 176 var word i = 0
clrf v_i,v__access
clrf v_i+1,v__access
; C:\Pic2\Projecten\SWR\FontTester.jal
; 12 OSCCON_IRCF = 0b_111
movlw 143
andwf v_osccon,w,v__access
iorlw 112
movwf v_osccon,v__access
; 13 UCON_USBEN = 0 ;disable USB
bcf v_ucon, 3,v__access ; ucon_usben
; 14 UCFG_UTRDIS = 1 ;disable USB
bsf v_ucfg, 3,v__access ; ucfg_utrdis
; 15 UCFG = 0b_00001000
movlw 8
movwf v_ucfg,v__access
; 19 enable_digital_io() -- all pins digital I/O
; C:\JALPack\lib/18f4550.jal
; 1435 ADCON0 = 0b0000_0000 -- disable ADC
clrf v_adcon0,v__access
; 1436 ADCON1 = 0b0000_1111
movlw 15
movwf v_adcon1,v__access
; 1437 ADCON2 = 0b0000_0000
clrf v_adcon2,v__access
; C:\Pic2\Projecten\SWR\FontTester.jal
; 19 enable_digital_io() -- all pins digital I/O
; C:\JALPack\lib/18f4550.jal
; 1451 adc_off()
; C:\Pic2\Projecten\SWR\FontTester.jal
; 19 enable_digital_io() -- all pins digital I/O
; C:\JALPack\lib/18f4550.jal
; 1444 CMCON = 0b0000_0111 -- disable comparator
movlw 7
movwf v_cmcon,v__access
; C:\Pic2\Projecten\SWR\FontTester.jal
; 19 enable_digital_io() -- all pins digital I/O
; C:\JALPack\lib/18f4550.jal
; 1452 comparator_off()
; C:\Pic2\Projecten\SWR\FontTester.jal
; 19 enable_digital_io() -- all pins digital I/O
; C:\JALPack\lib/delay.jal
; 27 procedure delay_1us() is
goto l__l579
; 114 procedure delay_1ms(word in n) is
l_delay_1ms
; 116 for n loop
movf v___n_3,w,v__banked
movwf v__floop3,v__banked
movf v___n_3+1,w,v__banked
movwf v__floop3+1,v__banked
clrf v__floop4,v__banked
clrf v__floop4+1,v__banked
goto l__l424
l__l423
; 118 _usec_delay(_one_ms_delay)
movlb 0
movlw 180
movwf v__pic_temp,v__access
l__l937
movlw 2
movwf v__pic_temp+1,v__access
l__l938
decfsz v__pic_temp+1,f,v__access
goto l__l938
decfsz v__pic_temp,f,v__access
goto l__l937
nop
nop
nop
; 122 end loop
incf v__floop4,f,v__banked
btfsc v__status, v__z,v__access
incf v__floop4+1,f,v__banked
l__l424
movf v__floop4,w,v__banked
subwf v__floop3,w,v__banked
movwf v__pic_temp,v__access
movf v__floop4+1,w,v__banked
subwf v__floop3+1,w,v__banked
iorwf v__pic_temp,w,v__access
btfss v__status, v__z,v__access
goto l__l423
; 123 end procedure
return
; 126 procedure delay_100ms(word in n) is
l_delay_100ms
; 128 for n loop
movf v___n_5,w,v__banked
movwf v__floop5,v__banked
movf v___n_5+1,w,v__banked