-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSWRMeter2.asm
executable file
·12919 lines (12917 loc) · 722 KB
/
SWRMeter2.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 Z:\iCloud Drive\JALProjecten\SWR\SWRMeter2.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, 0x04
__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_true EQU 1
v_false EQU 0
v_high EQU 1
v_low EQU 0
v_off 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_porta EQU 0x0f80 ; porta
v_portb EQU 0x0f81 ; portb
v_portc EQU 0x0f82 ; portc
v_portd EQU 0x0f83 ; portd
v_pin_a6 EQU 0x0f80 ; pin_a6-->porta:6
v_pin_a5 EQU 0x0f80 ; pin_a5-->porta:5
v_pin_a4 EQU 0x0f80 ; pin_a4-->porta:4
v_latb EQU 0x0f8a ; latb
v_pin_b5 EQU 0x0f81 ; pin_b5-->portb:5
v_pin_b4 EQU 0x0f81 ; pin_b4-->portb:4
v_pin_b3 EQU 0x0f81 ; pin_b3-->portb:3
v_pin_b1 EQU 0x0f81 ; pin_b1-->portb:1
v_pin_b0 EQU 0x0f81 ; pin_b0-->portb:0
v_latc EQU 0x0f8b ; latc
v_pin_c7 EQU 0x0f82 ; pin_c7-->portc:7
v_pin_c6 EQU 0x0f82 ; pin_c6-->portc:6
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_trisa_trisa0 EQU 0x0f92 ; trisa_trisa0-->trisa:0
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_eecon1 EQU 0x0fa6 ; eecon1
v_eecon1_eepgd EQU 0x0fa6 ; eecon1_eepgd-->eecon1:7
v_eecon1_cfgs EQU 0x0fa6 ; eecon1_cfgs-->eecon1:6
v_eecon1_wren EQU 0x0fa6 ; eecon1_wren-->eecon1:2
v_eecon1_wr EQU 0x0fa6 ; eecon1_wr-->eecon1:1
v_eecon1_rd EQU 0x0fa6 ; eecon1_rd-->eecon1:0
v_eecon2 EQU 0x0fa7 ; eecon2
v_eedata EQU 0x0fa8 ; eedata
v_eeadr EQU 0x0fa9 ; eeadr
v_cmcon EQU 0x0fb4 ; cmcon
v_adcon2 EQU 0x0fc0 ; adcon2
v_adcon2_adfm EQU 0x0fc0 ; adcon2_adfm-->adcon2:7
v_adcon1 EQU 0x0fc1 ; adcon1
v_adcon0 EQU 0x0fc2 ; adcon0
v_adcon0_go EQU 0x0fc2 ; adcon0_go-->adcon0:1
v_adcon0_adon EQU 0x0fc2 ; adcon0_adon-->adcon0:0
v_adresl EQU 0x0fc3 ; adresl
v_adresh EQU 0x0fc4 ; adresh
v_rcon EQU 0x0fd0 ; rcon
v_rcon_ipen EQU 0x0fd0 ; rcon_ipen-->rcon:7
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_intcon3 EQU 0x0ff0 ; intcon3
v_intcon3_int2if EQU 0x0ff0 ; intcon3_int2if-->intcon3:1
v_intcon3_int1if EQU 0x0ff0 ; intcon3_int1if-->intcon3:0
v_intcon2 EQU 0x0ff1 ; intcon2
v_intcon EQU 0x0ff2 ; intcon
v_intcon_gie EQU 0x0ff2 ; intcon_gie-->intcon:7
v_intcon_int0if EQU 0x0ff2 ; intcon_int0if-->intcon:1
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_toleft EQU 64
v_headishf EQU 0
v_headis4m EQU 1
v_headisvhf EQU 2
v_headisuhf EQU 3
v_headisshf EQU 4
v_headisnc EQU 5
v_dispanalog1analog2 EQU 1
v_dispvalues1values2 EQU 2
v_dispanalog1values1 EQU 3
v_dispanalog1values2 EQU 4
v_dispvalues1analog2 EQU 5
v_dispvalues2analog2 EQU 6
v_disponlyanalog1 EQU 7
v_disponlyanalog2 EQU 8
v_dispmenu EQU 9
v_ismeter1 EQU 0
v_ismeter2 EQU 1
v_menuhfampl EQU 1
v_menuhfvolt EQU 2
v_menu4mampl EQU 3
v_menu4mvolt EQU 4
v_menuvhfampl EQU 5
v_menuvhfvolt EQU 6
v_menuuhfampl EQU 7
v_menuuhfvolt EQU 8
v_menushfampl EQU 9
v_menushfvolt EQU 10
v_menumax EQU 11
v_rotarynull EQU 0
v_rotarypressed EQU 1
v_rotaryleft EQU 2
v_rotaryright EQU 3
v_w1measure EQU 0x0047 ; w1measure
v_w2measure EQU 0x004b ; w2measure
v_w3measure EQU 0x004f ; w3measure
v_w4measure EQU 0x0053 ; w4measure
v_w5measure EQU 0x0057 ; w5measure
v_w6measure EQU 0x005b ; w6measure
v_o1measure EQU 0x005f ; o1measure
v_o2measure EQU 0x0063 ; o2measure
v_o3measure EQU 0x0067 ; o3measure
v_o4measure EQU 0x006b ; o4measure
v_o5measure EQU 0x006f ; o5measure
v_o6measure EQU 0x0073 ; o6measure
v_c1measure EQU 0x0077 ; c1measure
v_c2measure EQU 0x007b ; c2measure
v_c4measure EQU 0x007f ; c4measure
v_c5measure EQU 0x0083 ; c5measure
v_m1measure EQU 0x0087 ; m1measure
v_m2measure EQU 0x0089 ; m2measure
v_m4measure EQU 0x008b ; m4measure
v_m5measure EQU 0x008d ; m5measure
v_pmcount1 EQU 0x008f ; pmcount1
v_pmcount2 EQU 0x0090 ; pmcount2
v___xpos_3 EQU 0x0091 ; xpos
v___ypos_3 EQU 0x0092 ; ypos
v_swr EQU 0x0093 ; swr
v_swrl EQU 0x0094 ; swrl
v_swrh EQU 0x0095 ; swrh
v_rotaryfunction EQU 0x0096 ; rotaryfunction
v_mpr_hf EQU 0x0097 ; mpr_hf
v_mpr_4m EQU 0x0098 ; mpr_4m
v_mpr_vhf EQU 0x0099 ; mpr_vhf
v_mpr_uhf EQU 0x009a ; mpr_uhf
v_mpr_shf EQU 0x009b ; mpr_shf
v_mpv_hf EQU 0x00be ; mpv_hf-->_bitbucket:0
v_mpv_4m EQU 0x00be ; mpv_4m-->_bitbucket:1
v_mpv_vhf EQU 0x00be ; mpv_vhf-->_bitbucket:2
v_mpv_uhf EQU 0x00be ; mpv_uhf-->_bitbucket:3
v_mpv_shf EQU 0x00be ; mpv_shf-->_bitbucket:4
v_mtype1 EQU 0x009c ; mtype1
v_mtype2 EQU 0x009d ; mtype2
v_menupressed1 EQU 0x009e ; menupressed1
v_menupressed2 EQU 0x00a2 ; menupressed2
v_i EQU 0x00a6 ; i
v_mtrmode EQU 0x00a8 ; mtrmode
v_oldmode EQU 0x00a9 ; oldmode
v_menuno EQU 0x00aa ; menuno
v_auto1_vo EQU 0x00be ; auto1_vo-->_bitbucket:5
v_auto2_vo EQU 0x00be ; auto2_vo-->_bitbucket:6
v_cnt1_vo EQU 0x00ab ; cnt1_vo
v_cnt2_vo EQU 0x00ac ; cnt2_vo
v_red_on EQU 0x00be ; red_on-->_bitbucket:7
v_touhf EQU 0x00ad ; touhf
v_isreverse EQU 0x00ae ; isreverse
v__print_dec_divisor EQU 0x00af ; _print_dec_divisor
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 0x00b3 ; glcd_background_color
v_glcd_pen_color EQU 0x00b4 ; glcd_pen_color
v_glcd_char_x_pos EQU 0x00b5 ; glcd_char_x_pos
v_glcd_char_y_pos EQU 0x00b6 ; glcd_char_y_pos
v__glcd_font_current_id EQU 0x00b7 ; _glcd_font_current_id
v__glcd_font_current_byte_per_char EQU 0x00b8 ; _glcd_font_current_byte_per_char
v__glcd_font_current_width EQU 0x00b9 ; _glcd_font_current_width
v__glcd_font_current_height EQU 0x00ba ; _glcd_font_current_height
v__glcd_font_current_bit_direction EQU 0x00bb ; _glcd_font_current_bit_direction
v_adc_nvref EQU 0
v_adc_min_tad EQU 8
v_tad_value EQU 0x00bc ; tad_value
v__adcon0_shadow EQU 0x0021 ; _adcon0_shadow
v_adc_conversion_delay EQU 0x00bd ; adc_conversion_delay
v__bitbucket EQU 0x00be ; _bitbucket
v__pic_loop EQU 0x001c ; _pic_loop
v__pic_multiplier EQU 0x0009 ; _pic_multiplier-->_pic_state
v__pic_multiplicand EQU 0x000d ; _pic_multiplicand-->_pic_state+4
v__pic_mresult EQU 0x0011 ; _pic_mresult-->_pic_state+8
v__pic_divisor EQU 0x0011 ; _pic_divisor-->_pic_state+8
v__pic_dividend EQU 0x0009 ; _pic_dividend-->_pic_state
v__pic_quotient EQU 0x0015 ; _pic_quotient-->_pic_state+12
v__pic_remainder EQU 0x000d ; _pic_remainder-->_pic_state+4
v__pic_divaccum EQU 0x0009 ; _pic_divaccum-->_pic_state
v__pic_temp EQU 0x0009 ; _pic_temp-->_pic_state
v__pic_pointer EQU 0x001e ; _pic_pointer
v__pic_state EQU 0x0009 ; _pic_state
v__pic_isr_state EQU 0x0019 ; _pic_isr_state
v___x_128 EQU 0x0f8b ; x-->latc:7
v___x_129 EQU 0x0f8b ; x-->latc:6
v___x_192 EQU 0x00c0 ; x
v___y_17 EQU 0x00c1 ; y
v___x_193 EQU 0x00c2 ; x
v___y_18 EQU 0x00c3 ; y
v___x_194 EQU 0x00c4 ; x
v___y_19 EQU 0x00c5 ; y
v___x_195 EQU 0x00c6 ; x
v___y_20 EQU 0x00c7 ; y
v___vcfg_shadow_3 EQU 0x00c8 ; vcfg_shadow
v___tad_word_2 EQU 0x00c9 ; tad_word
v__btemp358 EQU 0x00cf ; mainloop:_btemp358-->_bitbucket1:14
v__btemp359 EQU 0x00cf ; mainloop:_btemp359-->_bitbucket1:15
v__btemp360 EQU 0x00cf ; mainloop:_btemp360-->_bitbucket1:16
v__btemp361 EQU 0x00cf ; mainloop:_btemp361-->_bitbucket1:17
v__btemp362 EQU 0x00cf ; mainloop:_btemp362-->_bitbucket1:18
v__btemp363 EQU 0x00cf ; mainloop:_btemp363-->_bitbucket1:19
v__btemp364 EQU 0x00cf ; mainloop:_btemp364-->_bitbucket1:20
v__btemp365 EQU 0x00cf ; mainloop:_btemp365-->_bitbucket1:21
v__btemp366 EQU 0x00cf ; mainloop:_btemp366-->_bitbucket1:22
v__btemp367 EQU 0x00cf ; mainloop:_btemp367-->_bitbucket1:23
v____temp_124 EQU 0x00cb ; mainloop:_temp
v__btemp406 EQU 0x00cf ; mainloop:_btemp406-->_bitbucket1:62
v__btemp407 EQU 0x00cf ; mainloop:_btemp407-->_bitbucket1:63
v__btemp408 EQU 0x00cf ; mainloop:_btemp408-->_bitbucket1:64
v__btemp409 EQU 0x00cf ; mainloop:_btemp409-->_bitbucket1:65
v__btemp410 EQU 0x00cf ; mainloop:_btemp410-->_bitbucket1:66
v__btemp414 EQU 0x00cf ; mainloop:_btemp414-->_bitbucket1:70
v__btemp415 EQU 0x00cf ; mainloop:_btemp415-->_bitbucket1:71
v__btemp416 EQU 0x00cf ; mainloop:_btemp416-->_bitbucket1:72
v__btemp417 EQU 0x00cf ; mainloop:_btemp417-->_bitbucket1:73
v__btemp418 EQU 0x00cf ; mainloop:_btemp418-->_bitbucket1:74
v__btemp422 EQU 0x00cf ; mainloop:_btemp422-->_bitbucket1:78
v__btemp423 EQU 0x00cf ; mainloop:_btemp423-->_bitbucket1:79
v__btemp424 EQU 0x00cf ; mainloop:_btemp424-->_bitbucket1:80
v__btemp425 EQU 0x00cf ; mainloop:_btemp425-->_bitbucket1:81
v__btemp426 EQU 0x00cf ; mainloop:_btemp426-->_bitbucket1:82
v__btemp427 EQU 0x00cf ; mainloop:_btemp427-->_bitbucket1:83
v__btemp428 EQU 0x00cf ; mainloop:_btemp428-->_bitbucket1:84
v__btemp429 EQU 0x00cf ; mainloop:_btemp429-->_bitbucket1:85
v__btemp430 EQU 0x00cf ; mainloop:_btemp430-->_bitbucket1:86
v__btemp431 EQU 0x00cf ; mainloop:_btemp431-->_bitbucket1:87
v__btemp432 EQU 0x00cf ; mainloop:_btemp432-->_bitbucket1:88
v__btemp433 EQU 0x00cf ; mainloop:_btemp433-->_bitbucket1:89
v__btemp434 EQU 0x00cf ; mainloop:_btemp434-->_bitbucket1:90
v__btemp441 EQU 0x00cf ; mainloop:_btemp441-->_bitbucket1:97
v__btemp442 EQU 0x00cf ; mainloop:_btemp442-->_bitbucket1:98
v__btemp443 EQU 0x00cf ; mainloop:_btemp443-->_bitbucket1:99
v__btemp445 EQU 0x00cf ; mainloop:_btemp445-->_bitbucket1:101
v__btemp446 EQU 0x00cf ; mainloop:_btemp446-->_bitbucket1:102
v__btemp447 EQU 0x00cf ; mainloop:_btemp447-->_bitbucket1:103
v____bitbucket_1 EQU 0x00cf ; mainloop:_bitbucket
v__btemp345 EQU 0x00cf ; mainloop:_btemp345-->_bitbucket1:1
v__btemp346 EQU 0x00cf ; mainloop:_btemp346-->_bitbucket1:2
v__btemp347 EQU 0x00cf ; mainloop:_btemp347-->_bitbucket1:3
v__btemp348 EQU 0x00cf ; mainloop:_btemp348-->_bitbucket1:4
v__btemp349 EQU 0x00cf ; mainloop:_btemp349-->_bitbucket1:5
v__btemp350 EQU 0x00cf ; mainloop:_btemp350-->_bitbucket1:6
v__btemp351 EQU 0x00cf ; mainloop:_btemp351-->_bitbucket1:7
v___x_201 EQU 0x00dd ; mainloop:x
v___y_33 EQU 0x00de ; mainloop:y
v__btemp356 EQU 0x00cf ; mainloop:_btemp356-->_bitbucket1:12
v___x_202 EQU 0x0f8b ; mainloop:x-->latc:6
v___x_203 EQU 0x0f8b ; mainloop:x-->latc:7
v__btemp357 EQU 0x00cf ; mainloop:_btemp357-->_bitbucket1:13
v___x_204 EQU 0x0f8b ; mainloop:x-->latc:7
v___x_205 EQU 0x0f8b ; mainloop:x-->latc:6
v___x_206 EQU 0x0f8a ; mainloop:x-->latb:6
v__btemp375 EQU 0x00cf ; mainloop:_btemp375-->_bitbucket1:31
v___x_207 EQU 0x0f8a ; mainloop:x-->latb:6
v__btemp377 EQU 0x00cf ; mainloop:_btemp377-->_bitbucket1:33
v___x_208 EQU 0x0f8a ; mainloop:x-->latb:6
v__btemp379 EQU 0x00cf ; mainloop:_btemp379-->_bitbucket1:35
v___x_209 EQU 0x0f8a ; mainloop:x-->latb:6
v__btemp381 EQU 0x00cf ; mainloop:_btemp381-->_bitbucket1:37
v__btemp382 EQU 0x00cf ; mainloop:_btemp382-->_bitbucket1:38
v__btemp383 EQU 0x00cf ; mainloop:_btemp383-->_bitbucket1:39
v___x_210 EQU 0x0f8a ; mainloop:x-->latb:6
v__btemp385 EQU 0x00cf ; mainloop:_btemp385-->_bitbucket1:41
v___x_211 EQU 0x0f8a ; mainloop:x-->latb:6
v___x_212 EQU 0x0f8a ; mainloop:x-->latb:6
v___x_213 EQU 0x0f8a ; mainloop:x-->latb:7
v__btemp394 EQU 0x00cf ; mainloop:_btemp394-->_bitbucket1:50
v___x_214 EQU 0x0f8a ; mainloop:x-->latb:7
v__btemp396 EQU 0x00cf ; mainloop:_btemp396-->_bitbucket1:52
v___x_215 EQU 0x0f8a ; mainloop:x-->latb:7
v__btemp398 EQU 0x00cf ; mainloop:_btemp398-->_bitbucket1:54
v___x_216 EQU 0x0f8a ; mainloop:x-->latb:7
v__btemp400 EQU 0x00cf ; mainloop:_btemp400-->_bitbucket1:56
v__btemp401 EQU 0x00cf ; mainloop:_btemp401-->_bitbucket1:57
v__btemp402 EQU 0x00cf ; mainloop:_btemp402-->_bitbucket1:58
v___x_217 EQU 0x0f8a ; mainloop:x-->latb:7
v__btemp404 EQU 0x00cf ; mainloop:_btemp404-->_bitbucket1:60
v___x_218 EQU 0x0f8a ; mainloop:x-->latb:7
v___x_219 EQU 0x0f8a ; mainloop:x-->latb:7
v__rparam16 EQU 0x00df ; mainloop:_rparam16
v__rparam17 EQU 0x00e0 ; mainloop:_rparam17
v___radius_9 EQU 0x00e1 ; mainloop:radius
v__rparam18 EQU 0x00e2 ; mainloop:_rparam18
v__rparam19 EQU 0x00e3 ; mainloop:_rparam19
v___radius_10 EQU 0x00e4 ; mainloop:radius
v__rparam20 EQU 0x00e5 ; mainloop:_rparam20
v__rparam21 EQU 0x00e6 ; mainloop:_rparam21
v___radius_11 EQU 0x00e7 ; mainloop:radius
v__rparam22 EQU 0x00e8 ; mainloop:_rparam22
v__rparam23 EQU 0x00e9 ; mainloop:_rparam23
v___radius_12 EQU 0x00ea ; mainloop:radius
v__rparam24 EQU 0x00eb ; mainloop:_rparam24
v__rparam25 EQU 0x00ec ; mainloop:_rparam25
v___radius_13 EQU 0x00ed ; mainloop:radius
v__rparam26 EQU 0x00ee ; mainloop:_rparam26
v__rparam27 EQU 0x00ef ; mainloop:_rparam27
v___radius_14 EQU 0x00f0 ; mainloop:radius
v__rparam28 EQU 0x00f1 ; mainloop:_rparam28
v__rparam29 EQU 0x00f2 ; mainloop:_rparam29
v__rparam30 EQU 0x00f3 ; mainloop:_rparam30
v__rparam31 EQU 0x00f4 ; mainloop:_rparam31
v__rparam32 EQU 0x00f5 ; mainloop:_rparam32
v__rparam33 EQU 0x00f6 ; mainloop:_rparam33
v___radius_15 EQU 0x00f7 ; mainloop:radius
v___radius_16 EQU 0x00f8 ; mainloop:radius
v___radius_17 EQU 0x00f9 ; mainloop:radius
v__rparam34 EQU 0x00fa ; mainloop:_rparam34
v__rparam35 EQU 0x00fb ; mainloop:_rparam35
v__rparam36 EQU 0x00fc ; mainloop:_rparam36
v__rparam37 EQU 0x00fd ; mainloop:_rparam37
v__rparam38 EQU 0x00fe ; mainloop:_rparam38
v__rparam39 EQU 0x00ff ; mainloop:_rparam39
v___radius_18 EQU 0x0100 ; mainloop:radius
v___radius_19 EQU 0x0101 ; mainloop:radius
v___radius_20 EQU 0x0102 ; mainloop:radius
v__btemp435 EQU 0x00cf ; mainloop:_btemp435-->_bitbucket1:91
v__btemp436 EQU 0x00cf ; mainloop:_btemp436-->_bitbucket1:92
v__btemp437 EQU 0x00cf ; mainloop:_btemp437-->_bitbucket1:93
v__btemp438 EQU 0x00cf ; mainloop:_btemp438-->_bitbucket1:94
v__btemp439 EQU 0x00cf ; mainloop:_btemp439-->_bitbucket1:95
v__btemp440 EQU 0x00cf ; mainloop:_btemp440-->_bitbucket1:96
v__floop21 EQU 0x0103 ; measureadc:_floop21
v____temp_122 EQU 0 ; measureadc(): _temp
v____bitbucket_4 EQU 0x0022 ; myint:_bitbucket
v__btemp289 EQU 0x0022 ; myint:_btemp289-->_bitbucket4:1
v__btemp290 EQU 0x0022 ; myint:_btemp290-->_bitbucket4:2
v__btemp291 EQU 0x0022 ; myint:_btemp291-->_bitbucket4:3
v____temp_120 EQU 0x0104 ; writemenu:_temp
v__btemp259 EQU 0x0108 ; writemenu:_btemp259-->_bitbucket5:6
v__btemp260 EQU 0x0108 ; writemenu:_btemp260-->_bitbucket5:7
v__btemp261 EQU 0x0108 ; writemenu:_btemp261-->_bitbucket5:8
v__btemp269 EQU 0x0108 ; writemenu:_btemp269-->_bitbucket5:16
v__btemp270 EQU 0x0108 ; writemenu:_btemp270-->_bitbucket5:17
v__btemp271 EQU 0x0108 ; writemenu:_btemp271-->_bitbucket5:18
v__btemp273 EQU 0x0108 ; writemenu:_btemp273-->_bitbucket5:20
v__btemp274 EQU 0x0108 ; writemenu:_btemp274-->_bitbucket5:21
v__btemp275 EQU 0x0108 ; writemenu:_btemp275-->_bitbucket5:22
v__btemp276 EQU 0x0108 ; writemenu:_btemp276-->_bitbucket5:23
v__btemp277 EQU 0x0108 ; writemenu:_btemp277-->_bitbucket5:24
v__btemp278 EQU 0x0108 ; writemenu:_btemp278-->_bitbucket5:25
v__btemp279 EQU 0x0108 ; writemenu:_btemp279-->_bitbucket5:26
v__btemp280 EQU 0x0108 ; writemenu:_btemp280-->_bitbucket5:27
v__btemp281 EQU 0x0108 ; writemenu:_btemp281-->_bitbucket5:28
v__btemp282 EQU 0x0108 ; writemenu:_btemp282-->_bitbucket5:29
v__btemp283 EQU 0x0108 ; writemenu:_btemp283-->_bitbucket5:30
v__btemp284 EQU 0x0108 ; writemenu:_btemp284-->_bitbucket5:31
v__btemp285 EQU 0x0108 ; writemenu:_btemp285-->_bitbucket5:32
v__btemp286 EQU 0x0108 ; writemenu:_btemp286-->_bitbucket5:33
v__btemp287 EQU 0x0108 ; writemenu:_btemp287-->_bitbucket5:34
v____bitbucket_5 EQU 0x0108 ; writemenu:_bitbucket
v___x_199 EQU 0x010d ; writemenu:x
v___y_31 EQU 0x010e ; writemenu:y
v___x_200 EQU 0x010f ; writemenu:x
v___y_32 EQU 0x0110 ; writemenu:y
v___menuampl_1 EQU 0x0111 ; writesubmenu:menuampl
v___menuvolt_1 EQU 0x0112 ; writesubmenu:menuvolt
v__headtype_count EQU 0x0113 ; writesubmenu:_headtype_count
v___headtype_1 EQU 0x0115 ; writesubmenu:headtype
v___mprvalue_1 EQU 0x0118 ; writesubmenu:mprvalue
v___mpvvalue_1 EQU 0x0119 ; writesubmenu:mpvvalue
v___x_196 EQU 0x011a ; writesubmenu:x
v___y_28 EQU 0x011b ; writesubmenu:y
v___x_197 EQU 0x011c ; writesubmenu:x
v___y_29 EQU 0x011d ; writesubmenu:y
v___x_198 EQU 0x011e ; writesubmenu:x
v___y_30 EQU 0x011f ; writesubmenu:y
v___b_13 EQU 0x0120 ; writevalues:b
v___ismetertwee_3 EQU 0x0129 ; writevalues:ismetertwee-->_bitbucket7:0
v__btemp238 EQU 0x0129 ; writevalues:_btemp238-->_bitbucket7:1
v__btemp239 EQU 0x0129 ; writevalues:_btemp239-->_bitbucket7:2
v__btemp240 EQU 0x0129 ; writevalues:_btemp240-->_bitbucket7:3
v____temp_119 EQU 0x0121 ; writevalues:_temp
v__rparam12 EQU 0x0125 ; writevalues:_rparam12
v__rparam13 EQU 0x0126 ; writevalues:_rparam13
v__rparam14 EQU 0x0127 ; writevalues:_rparam14
v__rparam15 EQU 0x0128 ; writevalues:_rparam15
v____bitbucket_7 EQU 0x0129 ; writevalues:_bitbucket
v___y_24 EQU 0x012b ; writevalues:y
v___y_25 EQU 0x012c ; writevalues:y
v___y_26 EQU 0x012d ; writevalues:y
v___y_27 EQU 0x012e ; writevalues:y
v___istwee_3 EQU 0x0130 ; printwattsign:istwee-->_bitbucket8:0
v___i_6 EQU 0x012f ; printwattsign:i
v____bitbucket_8 EQU 0x0130 ; printwattsign:_bitbucket
v__btemp232 EQU 0x0130 ; printwattsign:_btemp232-->_bitbucket8:2
v__btemp233 EQU 0x0130 ; printwattsign:_btemp233-->_bitbucket8:3
v__btemp234 EQU 0x0130 ; printwattsign:_btemp234-->_bitbucket8:4
v__btemp235 EQU 0x0130 ; printwattsign:_btemp235-->_bitbucket8:5
v__btemp236 EQU 0x0130 ; printwattsign:_btemp236-->_bitbucket8:6
v__btemp237 EQU 0x0130 ; printwattsign:_btemp237-->_bitbucket8:7
v___b_11 EQU 0x0131 ; drawmeter:b
v____temp_118 EQU 0x0132 ; drawmeter:_temp
v__rparam8 EQU 0x0134 ; drawmeter:_rparam8
v__rparam9 EQU 0x0135 ; drawmeter:_rparam9
v__rparam10 EQU 0x0136 ; drawmeter:_rparam10
v__rparam11 EQU 0x0137 ; drawmeter:_rparam11
v___y_21 EQU 0x0138 ; drawmeter:y
v___y_22 EQU 0x0139 ; drawmeter:y
v___cy_6 EQU 0x013a ; drawmeter:cy
v___radius_8 EQU 0x013b ; drawmeter:radius
v___y_23 EQU 0x013c ; drawmeter:y
v___ismetertwee_1 EQU 0x013d ; writemtrtype:ismetertwee-->_bitbucket10:0
v____bitbucket_10 EQU 0x013d ; writemtrtype:_bitbucket
v___istwee_1 EQU 0x013e ; writeswr:istwee-->_bitbucket11:0
v____bitbucket_11 EQU 0x013e ; writeswr:_bitbucket
v_shift_alias EQU 0 ; adc_read_low_res(): shift_alias
v___ad_value_1 EQU 0 ; adc_read_bytes(): ad_value
v____temp_116 EQU 0 ; adc_read_bytes(): _temp
v___adc_chan_3 EQU 0x013f ; adc_read:adc_chan
v_ad_value EQU 0x0140 ; adc_read:ad_value
v_ax EQU 0x0140 ; adc_read:ax-->ad_value
v___adc_chan_1 EQU 0x0142 ; _adc_read_low_res:adc_chan
v___adc_byte_1 EQU 0x0143 ; _adc_read_low_res:adc_byte
v__floop20 EQU 0x0144 ; drawdemo:_floop20
v____temp_115 EQU 0x0145 ; drawdemo:_temp
v___x0_3 EQU 0x014d ; glcd_box:x0
v___y0_3 EQU 0x014e ; glcd_box:y0
v___x1_3 EQU 0x014f ; glcd_box:x1
v___y1_3 EQU 0x0150 ; glcd_box:y1
v___x0_1 EQU 0x0151 ; glcd_line:x0
v___y0_1 EQU 0x0152 ; glcd_line:y0
v___x1_1 EQU 0x0153 ; glcd_line:x1
v___y1_1 EQU 0x0154 ; glcd_line:y1
v____temp_113 EQU 0x0155 ; glcd_line:_temp
v___dx_2 EQU 0x0159 ; glcd_line:dx
v___dy_2 EQU 0x015b ; glcd_line:dy
v_two_ds EQU 0x015d ; glcd_line:two_ds
v_two_dy EQU 0x015f ; glcd_line:two_dy
v_currentx EQU 0x0161 ; glcd_line:currentx
v_currenty EQU 0x0163 ; glcd_line:currenty
v_xinc EQU 0x0165 ; glcd_line:xinc
v_yinc EQU 0x0167 ; glcd_line:yinc
v_two_ds_accumulated_error EQU 0x0169 ; glcd_line:two_ds_accumulated_error
v_two_dy_accumulated_error EQU 0x016b ; glcd_line:two_dy_accumulated_error
v__btemp199 EQU 0x016d ; glcd_line:_btemp199-->_bitbucket29:2
v__btemp200 EQU 0x016d ; glcd_line:_btemp200-->_bitbucket29:3
v__btemp201 EQU 0x016d ; glcd_line:_btemp201-->_bitbucket29:4
v____bitbucket_29 EQU 0x016d ; glcd_line:_bitbucket
v___cx_4 EQU 0x016f ; glcd_ellipse:cx
v___cy_3 EQU 0x0170 ; glcd_ellipse:cy
v___xradius_1 EQU 0x0171 ; glcd_ellipse:xradius
v___yradius_1 EQU 0x0172 ; glcd_ellipse:yradius
v____temp_112 EQU 0x0173 ; glcd_ellipse:_temp
v_xr EQU 0x017c ; glcd_ellipse:xr
v_yr EQU 0x017f ; glcd_ellipse:yr
v___x_189 EQU 0x0182 ; glcd_ellipse:x
v___y_14 EQU 0x0185 ; glcd_ellipse:y
v_two_a_square EQU 0x0188 ; glcd_ellipse:two_a_square
v_two_b_square EQU 0x018b ; glcd_ellipse:two_b_square
v_x_change EQU 0x018e ; glcd_ellipse:x_change
v_y_change EQU 0x0191 ; glcd_ellipse:y_change
v_ellipse_error EQU 0x0194 ; glcd_ellipse:ellipse_error
v_stopping_x EQU 0x0197 ; glcd_ellipse:stopping_x
v_stopping_y EQU 0x019a ; glcd_ellipse:stopping_y
v___cx_2 EQU 0x019d ; _glcd_write_4_ellipse_pixels:cx
v___dx_1 EQU 0x019e ; _glcd_write_4_ellipse_pixels:dx
v___cy_1 EQU 0x01a0 ; _glcd_write_4_ellipse_pixels:cy
v___dy_1 EQU 0x01a1 ; _glcd_write_4_ellipse_pixels:dy
v_cx14 EQU 0x01a3 ; _glcd_write_4_ellipse_pixels:cx14
v_cx23 EQU 0x01a5 ; _glcd_write_4_ellipse_pixels:cx23
v_cy12 EQU 0x01a7 ; _glcd_write_4_ellipse_pixels:cy12
v_cy34 EQU 0x01a9 ; _glcd_write_4_ellipse_pixels:cy34
v__btemp175 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp175-->_bitbucket32:0
v__btemp176 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp176-->_bitbucket32:1
v__btemp177 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp177-->_bitbucket32:2
v__btemp184 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp184-->_bitbucket32:9
v__btemp185 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp185-->_bitbucket32:10
v__btemp186 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp186-->_bitbucket32:11
v____bitbucket_32 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_bitbucket
v__btemp178 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp178-->_bitbucket32:3
v__btemp179 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp179-->_bitbucket32:4
v__btemp180 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp180-->_bitbucket32:5
v__btemp181 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp181-->_bitbucket32:6
v__btemp182 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp182-->_bitbucket32:7
v__btemp183 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp183-->_bitbucket32:8
v__btemp187 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp187-->_bitbucket32:12
v__btemp188 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp188-->_bitbucket32:13
v__btemp189 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp189-->_bitbucket32:14
v__btemp190 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp190-->_bitbucket32:15
v__btemp191 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp191-->_bitbucket32:16
v__btemp192 EQU 0x01ab ; _glcd_write_4_ellipse_pixels:_btemp192-->_bitbucket32:17
v___char_5 EQU 0x0023 ; _glcd_put:char
v___x_186 EQU 0x0024 ; glcd_write_char_pbp:x
v___y_11 EQU 0x0025 ; glcd_write_char_pbp:y
v___value_3 EQU 0x0026 ; glcd_write_char_pbp:value
v_color EQU 0x0027 ; glcd_write_char_pbp:color
v____temp_109 EQU 0x0028 ; glcd_write_char_pbp:_temp
v_j EQU 0x002e ; glcd_write_char_pbp:j
v_k EQU 0x0030 ; glcd_write_char_pbp:k
v__floop16 EQU 0x0032 ; glcd_write_char_pbp:_floop16
v_char_byte EQU 0x0033 ; glcd_write_char_pbp:char_byte
v_bit_y_address EQU 0x0034 ; glcd_write_char_pbp:bit_y_address
v__floop17 EQU 0x0035 ; glcd_write_char_pbp:_floop17
v___j_1 EQU 0x002e ; glcd_write_char_pbp:j
v___k_1 EQU 0x0030 ; glcd_write_char_pbp:k
v__floop18 EQU 0x0032 ; glcd_write_char_pbp:_floop18
v___char_byte_1 EQU 0x0033 ; glcd_write_char_pbp:char_byte
v___bit_y_address_1 EQU 0x0034 ; glcd_write_char_pbp:bit_y_address
v__floop19 EQU 0x0035 ; glcd_write_char_pbp:_floop19
v___idx_1 EQU 0x0045 ; glcd_font_lookup:idx
v___font_id_1 EQU 0x01ae ; 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 0x01af ; glcd_clear_screen:page
v____temp_104 EQU 0x01b0 ; glcd_clear_screen:_temp
v___page_3 EQU 0x01b2 ; glcd_clear_screen:page
v____temp_105 EQU 0x01b3 ; glcd_clear_screen:_temp
v___column_4 EQU 0x01b5 ; glcd_clear_screen:column
v____temp_106 EQU 0x01b6 ; glcd_clear_screen:_temp
v___column_5 EQU 0x01b8 ; glcd_clear_screen:column
v____temp_107 EQU 0x01b9 ; glcd_clear_screen:_temp
v___data_97 EQU 0x01bb ; glcd_fill:data
v___i_2 EQU 0x01bc ; glcd_fill:i
v__floop14 EQU 0x01bd ; glcd_fill:_floop14
v___x_171 EQU 0x0f8d ; glcd_fill:x-->late:1
v____temp_100 EQU 0x01be ; glcd_fill:_temp
v____temp_101 EQU 0x01c0 ; glcd_fill:_temp
v___column_2 EQU 0x01c2 ; glcd_fill:column
v____temp_102 EQU 0x01c3 ; glcd_fill:_temp
v___column_3 EQU 0x01c5 ; glcd_fill:column
v____temp_103 EQU 0x01c6 ; 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 0x0036 ; glcd_write_pixel:x
v___y_3 EQU 0x0037 ; glcd_write_pixel:y
v___data_93 EQU 0x0038 ; glcd_write_pixel:data
v___side_8 EQU 0x003e ; glcd_write_pixel:side-->_bitbucket44:0
v____temp_81 EQU 0x0039 ; glcd_write_pixel:_temp
v__rparam0 EQU 0x003c ; glcd_write_pixel:_rparam0
v__rparam1 EQU 0x003d ; glcd_write_pixel:_rparam1
v____bitbucket_44 EQU 0x003e ; glcd_write_pixel:_bitbucket
v___x_151 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v____temp_82 EQU 0x003f ; glcd_write_pixel:_temp
v____temp_83 EQU 0x003f ; 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 0x003f ; glcd_write_pixel:_temp
v____temp_85 EQU 0x003f ; glcd_write_pixel:_temp
v___x_154 EQU 0x0f8d ; glcd_write_pixel:x-->late:1
v___side_3 EQU 0x0044 ; _ks0108_read:side-->_bitbucket51:0
v___data_92 EQU 0x0043 ; _ks0108_read:data
v____bitbucket_51 EQU 0x0044 ; _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 0x0042 ; _ks0108_write:side-->_bitbucket52:0
v___data_91 EQU 0x0041 ; _ks0108_write:data
v____bitbucket_52 EQU 0x0042 ; _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____device_put_30 EQU 0x01c8 ; print_word_dec:_device_put
v___data_83 EQU 0x01cb ; print_word_dec:data
v____temp_75 EQU 0x01cd ; print_word_dec:_temp
v____device_put_26 EQU 0x01d1 ; print_maxvar_dec:_device_put
v___data_75 EQU 0x01d4 ; print_maxvar_dec:data
v_counter EQU 0x01d8 ; print_maxvar_dec:counter
v_digit EQU 0x01da ; print_maxvar_dec:digit
v__btemp132 EQU 0x01db ; print_maxvar_dec:_btemp132-->_bitbucket60:0
v__btemp133 EQU 0x01db ; print_maxvar_dec:_btemp133-->_bitbucket60:1
v__btemp134 EQU 0x01db ; print_maxvar_dec:_btemp134-->_bitbucket60:2
v____bitbucket_60 EQU 0x01db ; print_maxvar_dec:_bitbucket
v__floop12 EQU 0x01dc ; print_maxvar_dec:_floop12
v__floop13 EQU 0x01de ; print_maxvar_dec:_floop13
v___temp_1 EQU 0x01e0 ; _make_tenfold_divisor:temp
v___data_71 EQU 0 ; print_dword_hex(): data
v___data_67 EQU 0 ; print_word_hex(): data
v___data_57 EQU 0 ; print_dword_bin(): data
v___data_51 EQU 0 ; print_word_bin(): data
v____device_put_1 EQU 0x01e4 ; print_string:_device_put
v__str_count EQU 0x01e7 ; print_string:_str_count
v___str_1 EQU 0x01e9 ; print_string:str
v_len EQU 0x01ec ; print_string:len
v___i_1 EQU 0x01ee ; print_string:i
v__floop9 EQU 0x01ef ; print_string:_floop9
v___n_5 EQU 0x01f1 ; delay_100ms:n
v__floop5 EQU 0x01f3 ; delay_100ms:_floop5
v__floop6 EQU 0x01f5 ; delay_100ms:_floop6
v___n_3 EQU 0x01f7 ; delay_1ms:n
v__floop3 EQU 0x01f9 ; delay_1ms:_floop3
v__floop4 EQU 0x01fb ; delay_1ms:_floop4
v___n_1 EQU 0x01fd ; delay_10us:n
v__floop1 EQU 0x01fe ; delay_10us:_floop1
v__floop2 EQU 0x01ff ; delay_10us:_floop2
v___value_1 EQU 0x0200 ; recalcxy:value
v____temp_62 EQU 0x0202 ; recalcxy:_temp
v___a_7 EQU 0x020a ; recalcswr:a
v___b_9 EQU 0x020c ; recalcswr:b
v____temp_61 EQU 0x020e ; recalcswr:_temp
v__btemp35 EQU 0x0214 ; setmtrtype:_btemp35-->_bitbucket106:0
v__btemp36 EQU 0x0214 ; setmtrtype:_btemp36-->_bitbucket106:1
v__btemp37 EQU 0x0214 ; setmtrtype:_btemp37-->_bitbucket106:2
v__btemp38 EQU 0x0214 ; setmtrtype:_btemp38-->_bitbucket106:3
v__btemp39 EQU 0x0214 ; setmtrtype:_btemp39-->_bitbucket106:4
v__btemp40 EQU 0x0214 ; setmtrtype:_btemp40-->_bitbucket106:5
v__btemp41 EQU 0x0214 ; setmtrtype:_btemp41-->_bitbucket106:6
v__btemp42 EQU 0x0214 ; setmtrtype:_btemp42-->_bitbucket106:7
v__btemp43 EQU 0x0214 ; setmtrtype:_btemp43-->_bitbucket106:8
v__btemp44 EQU 0x0214 ; setmtrtype:_btemp44-->_bitbucket106:9
v__btemp45 EQU 0x0214 ; setmtrtype:_btemp45-->_bitbucket106:10
v__btemp46 EQU 0x0214 ; setmtrtype:_btemp46-->_bitbucket106:11
v__btemp47 EQU 0x0214 ; setmtrtype:_btemp47-->_bitbucket106:12
v__btemp48 EQU 0x0214 ; setmtrtype:_btemp48-->_bitbucket106:13
v__btemp49 EQU 0x0214 ; setmtrtype:_btemp49-->_bitbucket106:14
v__btemp50 EQU 0x0214 ; setmtrtype:_btemp50-->_bitbucket106:15
v__btemp51 EQU 0x0214 ; setmtrtype:_btemp51-->_bitbucket106:16
v__btemp52 EQU 0x0214 ; setmtrtype:_btemp52-->_bitbucket106:17
v__btemp53 EQU 0x0214 ; setmtrtype:_btemp53-->_bitbucket106:18
v__btemp54 EQU 0x0214 ; setmtrtype:_btemp54-->_bitbucket106:19
v__btemp55 EQU 0x0214 ; setmtrtype:_btemp55-->_bitbucket106:20
v__btemp56 EQU 0x0214 ; setmtrtype:_btemp56-->_bitbucket106:21
v__btemp57 EQU 0x0214 ; setmtrtype:_btemp57-->_bitbucket106:22
v__btemp58 EQU 0x0214 ; setmtrtype:_btemp58-->_bitbucket106:23
v__btemp59 EQU 0x0214 ; setmtrtype:_btemp59-->_bitbucket106:24
v__btemp60 EQU 0x0214 ; setmtrtype:_btemp60-->_bitbucket106:25
v__btemp61 EQU 0x0214 ; setmtrtype:_btemp61-->_bitbucket106:26
v__btemp62 EQU 0x0214 ; setmtrtype:_btemp62-->_bitbucket106:27
v__btemp63 EQU 0x0214 ; setmtrtype:_btemp63-->_bitbucket106:28
v__btemp64 EQU 0x0214 ; setmtrtype:_btemp64-->_bitbucket106:29
v__btemp65 EQU 0x0214 ; setmtrtype:_btemp65-->_bitbucket106:30
v__btemp66 EQU 0x0214 ; setmtrtype:_btemp66-->_bitbucket106:31
v__btemp67 EQU 0x0214 ; setmtrtype:_btemp67-->_bitbucket106:32
v__btemp68 EQU 0x0214 ; setmtrtype:_btemp68-->_bitbucket106:33
v__btemp69 EQU 0x0214 ; setmtrtype:_btemp69-->_bitbucket106:34
v__btemp70 EQU 0x0214 ; setmtrtype:_btemp70-->_bitbucket106:35
v__btemp71 EQU 0x0214 ; setmtrtype:_btemp71-->_bitbucket106:36
v__btemp72 EQU 0x0214 ; setmtrtype:_btemp72-->_bitbucket106:37
v__btemp73 EQU 0x0214 ; setmtrtype:_btemp73-->_bitbucket106:38
v__btemp74 EQU 0x0214 ; setmtrtype:_btemp74-->_bitbucket106:39
v__btemp75 EQU 0x0214 ; setmtrtype:_btemp75-->_bitbucket106:40
v__btemp76 EQU 0x0214 ; setmtrtype:_btemp76-->_bitbucket106:41
v__btemp77 EQU 0x0214 ; setmtrtype:_btemp77-->_bitbucket106:42
v__btemp78 EQU 0x0214 ; setmtrtype:_btemp78-->_bitbucket106:43
v__btemp79 EQU 0x0214 ; setmtrtype:_btemp79-->_bitbucket106:44
v__btemp80 EQU 0x0214 ; setmtrtype:_btemp80-->_bitbucket106:45
v__btemp81 EQU 0x0214 ; setmtrtype:_btemp81-->_bitbucket106:46
v__btemp82 EQU 0x0214 ; setmtrtype:_btemp82-->_bitbucket106:47
v__btemp83 EQU 0x0214 ; setmtrtype:_btemp83-->_bitbucket106:48
v__btemp84 EQU 0x0214 ; setmtrtype:_btemp84-->_bitbucket106:49
v__btemp85 EQU 0x0214 ; setmtrtype:_btemp85-->_bitbucket106:50
v__btemp86 EQU 0x0214 ; setmtrtype:_btemp86-->_bitbucket106:51
v__btemp87 EQU 0x0214 ; setmtrtype:_btemp87-->_bitbucket106:52
v__btemp88 EQU 0x0214 ; setmtrtype:_btemp88-->_bitbucket106:53
v__btemp89 EQU 0x0214 ; setmtrtype:_btemp89-->_bitbucket106:54
v__btemp90 EQU 0x0214 ; setmtrtype:_btemp90-->_bitbucket106:55
v__btemp91 EQU 0x0214 ; setmtrtype:_btemp91-->_bitbucket106:56
v__btemp92 EQU 0x0214 ; setmtrtype:_btemp92-->_bitbucket106:57
v__btemp93 EQU 0x0214 ; setmtrtype:_btemp93-->_bitbucket106:58
v__btemp94 EQU 0x0214 ; setmtrtype:_btemp94-->_bitbucket106:59
v__btemp95 EQU 0x0214 ; setmtrtype:_btemp95-->_bitbucket106:60
v__btemp96 EQU 0x0214 ; setmtrtype:_btemp96-->_bitbucket106:61
v__btemp97 EQU 0x0214 ; setmtrtype:_btemp97-->_bitbucket106:62
v__btemp98 EQU 0x0214 ; setmtrtype:_btemp98-->_bitbucket106:63
v__btemp99 EQU 0x0214 ; setmtrtype:_btemp99-->_bitbucket106:64
v__btemp100 EQU 0x0214 ; setmtrtype:_btemp100-->_bitbucket106:65
v____bitbucket_106 EQU 0x0214 ; setmtrtype:_bitbucket
v____temp_60 EQU 0x021d ; readeeprom:_temp
v___offset_22 EQU 0x021e ; readeeprom:offset
v___data_16 EQU 0x0220 ; readeeprom:data
v___offset_23 EQU 0x0221 ; readeeprom:offset
v___data_17 EQU 0x0223 ; readeeprom:data
v___offset_24 EQU 0x0224 ; readeeprom:offset
v___data_18 EQU 0x0226 ; readeeprom:data
v___offset_25 EQU 0x0227 ; readeeprom:offset
v___data_19 EQU 0x0229 ; readeeprom:data
v___offset_26 EQU 0x022a ; readeeprom:offset
v___data_20 EQU 0x022c ; readeeprom:data
v___offset_27 EQU 0x022d ; readeeprom:offset
v___data_21 EQU 0x022f ; readeeprom:data
v___offset_28 EQU 0x0230 ; readeeprom:offset
v___data_22 EQU 0x0232 ; readeeprom:data
v___offset_29 EQU 0x0233 ; readeeprom:offset
v___data_23 EQU 0x0235 ; readeeprom:data
v___offset_30 EQU 0x0236 ; readeeprom:offset
v___data_24 EQU 0x0238 ; readeeprom:data
v___offset_31 EQU 0x0239 ; readeeprom:offset
v___data_25 EQU 0x023b ; readeeprom:data
v___offset_32 EQU 0x023c ; readeeprom:offset
v___data_26 EQU 0x023e ; readeeprom:data
v___offset_33 EQU 0x023f ; readeeprom:offset
v___data_27 EQU 0x0241 ; readeeprom:data
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_6 EQU 0x0242 ; data_eeprom_write:offset
v___data_3 EQU 0x0244 ; data_eeprom_write:data
v_gie_old EQU 0x0245 ; data_eeprom_write:gie_old-->_bitbucket134:0
v____bitbucket_134 EQU 0x0245 ; data_eeprom_write:_bitbucket
v___offset_7 EQU 0x0246 ; data_eeprom_write:offset
v___tempoffset_2 EQU 0x0246 ; data_eeprom_write:tempoffset-->offset7
v___offset_3 EQU 0x0248 ; data_eeprom_read:offset
v___data_1 EQU 0x024a ; data_eeprom_read:data
v___offset_4 EQU 0x024b ; data_eeprom_read:offset
v___tempoffset_1 EQU 0x024b ; data_eeprom_read:tempoffset-->offset4
v___offset_1 EQU 0 ; _prepare_eeprom_access(): offset
; 7 include 18f4550
org 0
goto l__main
org 8
movlb 0
movf v__pic_state,w,v__access
movwf v__pic_isr_state,v__access
goto l_myint
l__data_sinlookup
db 0x00,0x03,0x08,0x0c,0x11,0x15,0x1a,0x1e
db 0x23,0x27,0x2b,0x30,0x34,0x39,0x3d,0x41
db 0x46,0x4a,0x4e,0x52,0x57,0x5b,0x5f,0x63
db 0x67,0x6b,0x6f,0x73,0x77,0x7b,0x7f,0x83
db 0x87,0x8a,0x8e,0x92,0x95,0x99,0x9d,0xa0
db 0xa4,0xa7,0xaa,0xae,0xb1,0xb4,0xb7,0xba
db 0xbd,0xc0,0xc3,0xc6,0xc9,0xcb,0xce,0xd1
db 0xd3,0xd6,0xd8,0xda,0xdd,0xdf,0xe1,0xe3
db 0xe5,0xe7,0xe9,0xeb,0xec,0xee,0xf0,0xf1
db 0xf2,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa
db 0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xff
db 0xff,0xff,0xff,0x00
l__data_msg1
db 0x53,0x57,0x52,0x20,0x4d,0x65,0x74,0x65
db 0x72,0x20,0x2a,0x20,0x42,0x79,0x20,0x50
db 0x41,0x32,0x52,0x44,0x4b,0x00
l__data_msg2
db 0x20,0x20,0x50,0x49,0x33,0x52,0x41,0x5a
db 0x2e,0x4e,0x4c,0x00
l__data_msg3
db 0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67
db 0x68,0x74,0x20,0x50,0x41,0x32,0x52,0x44
db 0x4b,0x20,0x28,0x63,0x29,0x00
l__data_msg4
db 0x20,0x20,0x56,0x65,0x72,0x73,0x69,0x6f
db 0x6e,0x20,0x33,0x2e,0x35,0x20,0x48,0x53
l__data_msg5
db 0x4d,0x65,0x74,0x65,0x72,0x20,0x69,0x6e
db 0x20,0x72,0x65,0x76,0x65,0x72,0x73,0x65
db 0x20,0x6d,0x6f,0x64,0x65,0x00
l__data_msg6
db 0x4d,0x65,0x74,0x65,0x72,0x20,0x69,0x6e
db 0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20
db 0x6d,0x6f,0x64,0x65
l__data_refstr
db 0x52,0x45,0x46,0x20,0x3d,0x00
l__data_swrstr
db 0x53,0x57,0x52,0x20,0x3d,0x00
l__data_swrxstr
db 0x53,0x57,0x58,0x58,0x3d,0x00
l__data_peakst
db 0x50,0x45,0x41,0x4b,0x3d,0x00
l__data_watstr
db 0x57,0x20
l__data_watxstr
db 0x30,0x57,0x20,0x00
l__data_sw2str
db 0x31,0x3a
l__data_empstr
db 0x20,0x00
l__data_pntstr
db 0x2e,0x00
l__data_starstr
db 0x2a,0x00
l__data_reverse
db 0x52,0x45,0x46,0x00
l__data_maxswr
db 0x48,0x49,0x47,0x48,0x20,0x00
l__data_swr1
db 0x31,0x3d
l__data_swr2
db 0x32,0x3d
l__data_power1
db 0x53,0x57,0x52,0x31,0x20,0x50,0x6f,0x77
db 0x65,0x72,0x20,0x00
l__data_power2
db 0x53,0x57,0x52,0x32,0x20,0x50,0x6f,0x77
db 0x65,0x72,0x20,0x00
l__data_mpr
db 0x4d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x69
db 0x65,0x72,0x20,0x00
l__data_volt
db 0x35,0x20,0x56,0x6f,0x6c,0x74,0x20,0x20
db 0x20,0x20,0x20,0x00
l__data_volton
db 0x4f,0x6e,0x20,0x00
l__data_voltoff
db 0x4f,0x66,0x66,0x00
l__data_ishf
db 0x48,0x46,0x20,0x00
l__data_is4m
db 0x34,0x4d,0x20,0x00
l__data_isvhf
db 0x56,0x48,0x46,0x00
l__data_isuhf
db 0x55,0x48,0x46,0x00
l__data_isshf
db 0x53,0x48,0x46,0x00
l__data_isnc
db 0x4e,0x2f,0x43,0x00
l__data_pwrlookup
db 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01
db 0x02,0x02,0x02,0x03,0x03,0x04,0x05,0x05
db 0x06,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c
db 0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,0x14
db 0x16,0x17,0x19,0x1a,0x1b,0x1d,0x1e,0x20
db 0x22,0x23,0x25,0x27,0x29,0x2a,0x2c,0x2e
db 0x30,0x32,0x34,0x36,0x38,0x3a,0x3d,0x3f
db 0x41,0x43,0x46,0x48,0x4a,0x4d,0x4f,0x52
db 0x55,0x57,0x5a,0x5c,0x5f,0x62,0x65,0x68
db 0x6b,0x6e,0x71,0x74,0x77,0x7a,0x7d,0x80
db 0x83,0x86,0x8a,0x8d,0x91,0x94,0x97,0x9b
db 0x9e,0xa2,0xa6,0xa9,0xad,0xb1,0xb5,0xb8
db 0xbc,0xc0,0xc4,0xc8,0xcc,0xd0,0xd4,0xd8
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