-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodometrija.map
2090 lines (2023 loc) · 144 KB
/
odometrija.map
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
Microchip Technology Inc, vv3_24 (A) Y
Tool Name:
c:\program files (x86)\microchip\mplab c30\bin\bin\..\bin/pic30-coff-ld.exe
Command:
-p33FJ128MC802 \
-oodometrija.cof \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/.. \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../lib \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../support/generic/gld \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../lib/PIC24F \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../support/PIC24F/gld \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../lib/PIC24H \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../support/PIC24H/gld \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../lib/dsPIC30F \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../support/dsPIC30F/gld \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../lib/dsPIC33F \
-Lc:/program files (x86)/microchip/mplab c30/bin/bin/../../support/dsPIC33F/gld \
main.o \
init.o \
uart.o \
timer.o \
pwm.o \
can.o \
kretanje.o \
-Tp33FJ128MC802.gld.00 \
--defsym=__MPLAB_BUILD=1 \
--defsym=__MPLAB_DEBUG=1 \
-Map=odometrija.map \
--report-mem \
-start-group \
--library=pic30-coff \
--library=m-coff \
--library=c-coff \
-end-group \
Archive member included because of file (symbol)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(crt0_standard.o)
(_resetPRI)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(delay32.o)
can.o (__delay32)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(data_init_standard.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(crt0_standard.o) (_data_init_standard)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(modsi3.o)
main.o (__modsi3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsi3.o)
main.o (__divsi3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(floatsisf.o)
main.o (__floatsisf)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsf3.o)
main.o (__divsf3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fixsfsi.o)
main.o (__fixsfsi)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(mulsf3.o)
main.o (__mulsf3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(addsf3.o)
main.o (__subsf3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fixsfdi.o)
kretanje.o (__fixsfdi)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(floatdisf.o)
kretanje.o (__floatdisf)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atan2f.o)
kretanje.o (atan2f)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(sqrtf.o)
kretanje.o (sqrtf)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(feqltle.o)
kretanje.o (__ltsf2)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(umodsi3.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(modsi3.o) (__umodsi3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(udivsi3.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsi3.o) (__udivsi3)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fpack.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(floatsisf.o) (_fpack)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(funpack2.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsf3.o) (_funpack2)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(futil.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsf3.o) (_fPropagateNaN)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(funpack.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fixsfsi.o) (_funpack)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(errno.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atan2f.o) (errno)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atanf.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atan2f.o) (atanf)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fcompare.o)
c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(feqltle.o) (_fcompare)
Program Memory [Origin = 0x200, Length = 0x15600]
section address length (PC units) length (bytes) (dec)
------- ------- ----------------- --------------------
.text 0x200 0x656 0x981 (2433)
.const 0x856 0x4000 0x6000 (24576)
.text 0x4856 0x2690 0x39d8 (14808)
.dinit 0x6ee6 0x42 0x63 (99)
.text 0x6f28 0x1c 0x2a (42)
.isr 0x6f44 0x2 0x3 (3)
Total program memory used (bytes): 0xa3e9 (41961) 31%
Data Memory [Origin = 0x800, Length = 0x4000]
section address alignment gaps total length (dec)
------- ------- -------------- -------------------
.nbss 0x800 0 0x1e2 (482)
.ndata 0x9e2 0 0x32 (50)
.nbss 0xa14 0 0x2 (2)
_02eab9a0525ffaa4 0x47c0 0 0x40 (64)
Total data memory used (bytes): 0x256 (598) 3%
Dynamic Memory Usage
region address maximum length (dec)
------ ------- ---------------------
heap 0 0 (0)
stack 0xa16 0x3daa (15786)
Maximum dynamic memory (bytes): 0x3daa (15786)
External Symbols in Data Memory (by address):
0x099c _positionR
0x09a0 _positionL
0x09a4 _vR
0x09a6 _vL
0x09a8 _greska_pred
0x09aa _greska_pred_R
0x09ac _zaglavL
0x09ae _zaglavR
0x09b0 _brzinaL
0x09b2 _vmax
0x09b6 _accel
0x09ba _omega
0x09be _alfa
0x09c2 _brojac
0x09c6 _i
0x09ca _PWML
0x09cc _PWMD
0x09ce _v_ref
0x09d2 _rxData
0x09da _txData
0x09e2 _brint
0x09e4 _L
0x09e8 _orientation
0x09ec _teta
0x09f0 _Xlong
0x09f8 _Ylong
0x0a00 _X
0x0a04 _Y
0x0a08 _sys_time
0x0a0c _t_ref
0x0a10 _d_ref
External Symbols in Data Memory (by name):
0x09e4 _L
0x09cc _PWMD
0x09ca _PWML
0x0a00 _X
0x09f0 _Xlong
0x0a04 _Y
0x09f8 _Ylong
0x09b6 _accel
0x09be _alfa
0x09e2 _brint
0x09c2 _brojac
0x09b0 _brzinaL
0x0a10 _d_ref
0x09a8 _greska_pred
0x09aa _greska_pred_R
0x09c6 _i
0x09ba _omega
0x09e8 _orientation
0x09a0 _positionL
0x099c _positionR
0x09d2 _rxData
0x0a08 _sys_time
0x0a0c _t_ref
0x09ec _teta
0x09da _txData
0x09a6 _vL
0x09a4 _vR
0x09ce _v_ref
0x09b2 _vmax
0x09ac _zaglavL
0x09ae _zaglavR
External Symbols in Program Memory (by address):
0x000200 __resetPRI
0x000222 __psv_init
0x000232 __data_init
0x000232 __data_init_standard
0x000290 ___modsi3
0x0002ae ___divsi3
0x0002cc ___floatsisf
0x000322 ___divsf3
0x0003a6 ___fixsfsi
0x0003e8 ___mulsf3
0x000450 ___subsf3
0x000452 ___addsf3
0x00050c ___fixsfdi
0x00055e ___floatdisf
0x0005d6 _atan2f
0x000610 _sqrtf
0x00067a ___lesf2
0x00067a ___ltsf2
0x00067a ___eqsf2
0x00067e ___umodsi3
0x000684 ___udivsi3
0x0006a4 __fpack
0x0006f0 __funpack2
0x000700 __fPropagateNaN
0x000712 __fbopExit
0x00071a __fbopReturnNaN
0x000720 __funpack
0x00074a _atanf
0x000814 __fcompare
0x00084a _CloseTimer1
0x000856 _sinus
0x004856 _SetX
0x004896 _SetY
0x0048d6 _SetO
0x00497e _set_speed_accel
0x0049b2 _getPosition
0x004a42 _GetX
0x004a68 _GetY
0x004a8e _GetO
0x004ad6 _get_command
0x004b9a _detektuj_zaglavljivanje
0x004bf2 _gotoXY
0x0051ea _kretanje_pravo
0x00564a _apsolutni_ugao
0x0056a2 _okret_R
0x00595c _kurva
0x005e7c __T1Interrupt
0x006374 _ResetDriver
0x00639e _LeviPWM
0x0063aa _DesniPWM
0x0063b6 _main
0x006700 _CAN_checkRX
0x006718 _CAN_write
0x0067b0 _CAN_read
0x006800 __DMA1Interrupt
0x0068ca __DMA2Interrupt
0x0068de __C1Interrupt
0x006900 _CAN_init
0x006a5a _BusyUART1
0x006a68 _CloseUART1
0x006a78 _ConfigIntUART1
0x006ae2 _DataRdyUART1
0x006aee _getsUART1
0x006b56 _OpenUART1
0x006b6e _putsUART1
0x006bb4 _ReadUART1
0x006bd2 _WriteUART1
0x006bee _getch
0x006c00 _putch
0x006c12 _SendLong
0x006d36 _NewLine
0x006d44 _UARTinit
0x006d64 _PWMinit
0x006d94 _TimerInit
0x006dbc _QEIinit
0x006e0a _PortInit
0x006e34 _CloseMCPWM
0x006e60 _OpenMCPWM
0x006e84 _OverrideMCPWM
0x006e90 _SetDCMCPWM
0x006ec2 _SetMCPWMDeadTimeAssignment
0x006ece _SetMCPWMDeadTimeGeneration
0x006eda _SetMCPWMFaultA
0x006f28 ___delay32
0x006f44 __DefaultInterrupt
External Symbols in Program Memory (by name):
0x006a5a _BusyUART1
0x006700 _CAN_checkRX
0x006900 _CAN_init
0x0067b0 _CAN_read
0x006718 _CAN_write
0x006e34 _CloseMCPWM
0x00084a _CloseTimer1
0x006a68 _CloseUART1
0x006a78 _ConfigIntUART1
0x006ae2 _DataRdyUART1
0x0063aa _DesniPWM
0x004a8e _GetO
0x004a42 _GetX
0x004a68 _GetY
0x00639e _LeviPWM
0x006d36 _NewLine
0x006e60 _OpenMCPWM
0x006b56 _OpenUART1
0x006e84 _OverrideMCPWM
0x006d64 _PWMinit
0x006e0a _PortInit
0x006dbc _QEIinit
0x006bb4 _ReadUART1
0x006374 _ResetDriver
0x006c12 _SendLong
0x006e90 _SetDCMCPWM
0x006ec2 _SetMCPWMDeadTimeAssignment
0x006ece _SetMCPWMDeadTimeGeneration
0x006eda _SetMCPWMFaultA
0x0048d6 _SetO
0x004856 _SetX
0x004896 _SetY
0x006d94 _TimerInit
0x006d44 _UARTinit
0x006bd2 _WriteUART1
0x0068de __C1Interrupt
0x006800 __DMA1Interrupt
0x0068ca __DMA2Interrupt
0x006f44 __DefaultInterrupt
0x005e7c __T1Interrupt
0x000452 ___addsf3
0x006f28 ___delay32
0x000322 ___divsf3
0x0002ae ___divsi3
0x00067a ___eqsf2
0x00050c ___fixsfdi
0x0003a6 ___fixsfsi
0x00055e ___floatdisf
0x0002cc ___floatsisf
0x00067a ___lesf2
0x00067a ___ltsf2
0x000290 ___modsi3
0x0003e8 ___mulsf3
0x000450 ___subsf3
0x000684 ___udivsi3
0x00067e ___umodsi3
0x000232 __data_init
0x000232 __data_init_standard
0x000700 __fPropagateNaN
0x000712 __fbopExit
0x00071a __fbopReturnNaN
0x000814 __fcompare
0x0006a4 __fpack
0x000720 __funpack
0x0006f0 __funpack2
0x000222 __psv_init
0x000200 __resetPRI
0x00564a _apsolutni_ugao
0x0005d6 _atan2f
0x00074a _atanf
0x004b9a _detektuj_zaglavljivanje
0x0049b2 _getPosition
0x004ad6 _get_command
0x006bee _getch
0x006aee _getsUART1
0x004bf2 _gotoXY
0x0051ea _kretanje_pravo
0x00595c _kurva
0x0063b6 _main
0x0056a2 _okret_R
0x006c00 _putch
0x006b6e _putsUART1
0x00497e _set_speed_accel
0x000856 _sinus
0x000610 _sqrtf
Memory Configuration
Name Origin Length Attributes
data 0x000800 0x004000 a !xr
reset 0x000000 0x000004
ivt 0x000004 0x0000fc
aivt 0x000104 0x0000fc
program 0x000200 0x015600 xr
FBS 0xf80000 0x000002
FSS 0xf80002 0x000002
FGS 0xf80004 0x000002
FOSCSEL 0xf80006 0x000002
FOSC 0xf80008 0x000002
FWDT 0xf8000a 0x000002
FPOR 0xf8000c 0x000002
FICD 0xf8000e 0x000002
FUID0 0xf80010 0x000002
FUID1 0xf80012 0x000002
FUID2 0xf80014 0x000002
FUID3 0xf80016 0x000002
*default* 0x000000 0xffffffff
Linker script and memory map
LOAD main.o
LOAD init.o
LOAD uart.o
LOAD timer.o
LOAD pwm.o
LOAD can.o
LOAD kretanje.o
LOAD c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib/dsPIC33F\libp33FJ128MC802-coff.a
0xf80000 __FBS = 0xf80000
0xf80002 __FSS = 0xf80002
0xf80004 __FGS = 0xf80004
0xf80006 __FOSCSEL = 0xf80006
0xf80008 __FOSC = 0xf80008
0xf8000a __FWDT = 0xf8000a
0xf8000c __FPOR = 0xf8000c
0xf8000e __FICD = 0xf8000e
0xf80010 __FUID0 = 0xf80010
0xf80012 __FUID1 = 0xf80012
0xf80014 __FUID2 = 0xf80014
0xf80016 __FUID3 = 0xf80016
0x0004 __IVT_BASE = 0x4
0x0104 __AIVT_BASE = 0x104
0x0800 __DATA_BASE = 0x800
0x2800 __YDATA_BASE = 0x2800
0x4000 __DMA_BASE = 0x4000
0x47ff __DMA_END = 0x47ff
0x0200 __CODE_BASE = 0x200
.reset 0x000000 0x4
0x000000 0x2 SHORT 0x200 <code 339> (__reset)
0x000001 0x2 SHORT 0x4
0x000002 0x2 SHORT 0x0 ((<code 339> (__reset) >> 0x10) & 0x7f)
0x000003 0x2 SHORT 0x0
.text 0x000200 0x656
*(.init)
.init 0x000200 0x32 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(crt0_standard.o)
0x000200 _resetPRI
0x000200 _reset
0x000222 _psv_init
.init 0x000232 0x5e c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libpic30-coff.a(data_init_standard.o)
0x000232 _data_init_standard
0x000232 _data_init
*(.user_init)
*(.handle)
*(.libc)
*(.libm)
.libm 0x000290 0x1e c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(modsi3.o)
0x000290 __modsi3
.libm 0x0002ae 0x1e c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsi3.o)
0x0002ae __divsi3
.libm 0x0002cc 0x56 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(floatsisf.o)
0x0002cc __floatsisf
.libm 0x000322 0x84 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(divsf3.o)
0x000322 __divsf3
.libm 0x0003a6 0x42 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fixsfsi.o)
0x0003a6 __fixsfsi
.libm 0x0003e8 0x68 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(mulsf3.o)
0x0003e8 __mulsf3
.libm 0x000450 0xbc c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(addsf3.o)
0x000450 __subsf3
0x000452 __addsf3
.libm 0x00050c 0x52 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fixsfdi.o)
0x00050c __fixsfdi
.libm 0x00055e 0x78 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(floatdisf.o)
0x00055e __floatdisf
.libm 0x0005d6 0x3a c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atan2f.o)
0x0005d6 atan2f
.libm 0x000610 0x6a c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(sqrtf.o)
0x000610 sqrtf
.libm 0x00067a 0x4 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(feqltle.o)
0x00067a __eqsf2
0x00067a __ltsf2
0x00067a __lesf2
.libm 0x00067e 0x6 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(umodsi3.o)
0x00067e __umodsi3
.libm 0x000684 0x20 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(udivsi3.o)
0x000684 __udivsi3
.libm 0x0006a4 0x4c c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fpack.o)
0x0006a4 _fpack
.libm 0x0006f0 0x10 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(funpack2.o)
0x0006f0 _funpack2
.libm 0x000700 0x20 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(futil.o)
0x000700 _fPropagateNaN
0x000712 _fbopExit
0x00071a _fbopReturnNaN
.libm 0x000720 0x2a c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(funpack.o)
0x000720 _funpack
.libm 0x00074a 0xca c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(atanf.o)
0x00074a atanf
.libm 0x000814 0x36 c:/program files (x86)/microchip/mplab c30/bin/bin/../../lib\libm-coff.a(fcompare.o)
0x000814 _fcompare
*(.libdsp)
*(.lib*)
.libperi 0x00084a 0xc timer.o
0x00084a CloseTimer1
usercode
*(usercode)
__FBS
*(__FBS.sec)
__FSS
*(__FSS.sec)
__FGS
*(__FGS.sec)
__FOSCSEL 0xf80006 0x2
*(__FOSCSEL.sec)
__FOSCSEL.sec 0xf80006 0x2 main.o
__FOSC 0xf80008 0x2
*(__FOSC.sec)
__FOSC.sec 0xf80008 0x2 main.o
__FWDT 0xf8000a 0x2
*(__FWDT.sec)
__FWDT.sec 0xf8000a 0x2 main.o
__FPOR 0xf8000c 0x2
*(__FPOR.sec)
__FPOR.sec 0xf8000c 0x2 main.o
__FICD
*(__FICD.sec)
__FUID0
*(__FUID0.sec)
__FUID1
*(__FUID1.sec)
__FUID2
*(__FUID2.sec)
__FUID3
*(__FUID3.sec)
.comment
*(.comment)
.debug_info
*(.debug_info)
*(.gnu.linkonce.wi.*)
.debug_abbrev
*(.debug_abbrev)
.debug_line
*(.debug_line)
.debug_frame
*(.debug_frame)
.debug_str
*(.debug_str)
.debug_loc
*(.debug_loc)
.debug_macinfo
*(.debug_macinfo)
.debug_pubnames
*(.debug_pubnames)
.debug_ranges
*(.debug_ranges)
.debug_aranges
*(.debug_aranges)
.ivt 0x000004 0xfc
0x000004 0x4 LONG 0x6f44 DEFINED (__ReservedTrap0)?<code 339> (__ReservedTrap0):<code 339> (__DefaultInterrupt)
0x000006 0x4 LONG 0x6f44 DEFINED (__OscillatorFail)?<code 339> (__OscillatorFail):<code 339> (__DefaultInterrupt)
0x000008 0x4 LONG 0x6f44 DEFINED (__AddressError)?<code 339> (__AddressError):<code 339> (__DefaultInterrupt)
0x00000a 0x4 LONG 0x6f44 DEFINED (__StackError)?<code 339> (__StackError):<code 339> (__DefaultInterrupt)
0x00000c 0x4 LONG 0x6f44 DEFINED (__MathError)?<code 339> (__MathError):<code 339> (__DefaultInterrupt)
0x00000e 0x4 LONG 0x6f44 DEFINED (__DMACError)?<code 339> (__DMACError):<code 339> (__DefaultInterrupt)
0x000010 0x4 LONG 0x6f44 DEFINED (__ReservedTrap6)?<code 339> (__ReservedTrap6):<code 339> (__DefaultInterrupt)
0x000012 0x4 LONG 0x6f44 DEFINED (__ReservedTrap7)?<code 339> (__ReservedTrap7):<code 339> (__DefaultInterrupt)
0x000014 0x4 LONG 0x6f44 DEFINED (__INT0Interrupt)?<code 339> (__INT0Interrupt):<code 339> (__DefaultInterrupt)
0x000016 0x4 LONG 0x6f44 DEFINED (__IC1Interrupt)?<code 339> (__IC1Interrupt):<code 339> (__DefaultInterrupt)
0x000018 0x4 LONG 0x6f44 DEFINED (__OC1Interrupt)?<code 339> (__OC1Interrupt):<code 339> (__DefaultInterrupt)
0x00001a 0x4 LONG 0x5e7c DEFINED (__T1Interrupt)?<code 339> (__T1Interrupt):<code 339> (__DefaultInterrupt)
0x00001c 0x4 LONG 0x6f44 DEFINED (__DMA0Interrupt)?<code 339> (__DMA0Interrupt):<code 339> (__DefaultInterrupt)
0x00001e 0x4 LONG 0x6f44 DEFINED (__IC2Interrupt)?<code 339> (__IC2Interrupt):<code 339> (__DefaultInterrupt)
0x000020 0x4 LONG 0x6f44 DEFINED (__OC2Interrupt)?<code 339> (__OC2Interrupt):<code 339> (__DefaultInterrupt)
0x000022 0x4 LONG 0x6f44 DEFINED (__T2Interrupt)?<code 339> (__T2Interrupt):<code 339> (__DefaultInterrupt)
0x000024 0x4 LONG 0x6f44 DEFINED (__T3Interrupt)?<code 339> (__T3Interrupt):<code 339> (__DefaultInterrupt)
0x000026 0x4 LONG 0x6f44 DEFINED (__SPI1ErrInterrupt)?<code 339> (__SPI1ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000028 0x4 LONG 0x6f44 DEFINED (__SPI1Interrupt)?<code 339> (__SPI1Interrupt):<code 339> (__DefaultInterrupt)
0x00002a 0x4 LONG 0x6f44 DEFINED (__U1RXInterrupt)?<code 339> (__U1RXInterrupt):<code 339> (__DefaultInterrupt)
0x00002c 0x4 LONG 0x6f44 DEFINED (__U1TXInterrupt)?<code 339> (__U1TXInterrupt):<code 339> (__DefaultInterrupt)
0x00002e 0x4 LONG 0x6f44 DEFINED (__ADC1Interrupt)?<code 339> (__ADC1Interrupt):<code 339> (__DefaultInterrupt)
0x000030 0x4 LONG 0x6800 DEFINED (__DMA1Interrupt)?<code 339> (__DMA1Interrupt):<code 339> (__DefaultInterrupt)
0x000032 0x4 LONG 0x6f44 DEFINED (__Interrupt15)?<code 339> (__Interrupt15):<code 339> (__DefaultInterrupt)
0x000034 0x4 LONG 0x6f44 DEFINED (__SI2C1Interrupt)?<code 339> (__SI2C1Interrupt):<code 339> (__DefaultInterrupt)
0x000036 0x4 LONG 0x6f44 DEFINED (__MI2C1Interrupt)?<code 339> (__MI2C1Interrupt):<code 339> (__DefaultInterrupt)
0x000038 0x4 LONG 0x6f44 DEFINED (__CMPInterrupt)?<code 339> (__CMPInterrupt):<code 339> (__DefaultInterrupt)
0x00003a 0x4 LONG 0x6f44 DEFINED (__CNInterrupt)?<code 339> (__CNInterrupt):<code 339> (__DefaultInterrupt)
0x00003c 0x4 LONG 0x6f44 DEFINED (__INT1Interrupt)?<code 339> (__INT1Interrupt):<code 339> (__DefaultInterrupt)
0x00003e 0x4 LONG 0x6f44 DEFINED (__Interrupt21)?<code 339> (__Interrupt21):<code 339> (__DefaultInterrupt)
0x000040 0x4 LONG 0x6f44 DEFINED (__IC7Interrupt)?<code 339> (__IC7Interrupt):<code 339> (__DefaultInterrupt)
0x000042 0x4 LONG 0x6f44 DEFINED (__IC8Interrupt)?<code 339> (__IC8Interrupt):<code 339> (__DefaultInterrupt)
0x000044 0x4 LONG 0x68ca DEFINED (__DMA2Interrupt)?<code 339> (__DMA2Interrupt):<code 339> (__DefaultInterrupt)
0x000046 0x4 LONG 0x6f44 DEFINED (__OC3Interrupt)?<code 339> (__OC3Interrupt):<code 339> (__DefaultInterrupt)
0x000048 0x4 LONG 0x6f44 DEFINED (__OC4Interrupt)?<code 339> (__OC4Interrupt):<code 339> (__DefaultInterrupt)
0x00004a 0x4 LONG 0x6f44 DEFINED (__T4Interrupt)?<code 339> (__T4Interrupt):<code 339> (__DefaultInterrupt)
0x00004c 0x4 LONG 0x6f44 DEFINED (__T5Interrupt)?<code 339> (__T5Interrupt):<code 339> (__DefaultInterrupt)
0x00004e 0x4 LONG 0x6f44 DEFINED (__INT2Interrupt)?<code 339> (__INT2Interrupt):<code 339> (__DefaultInterrupt)
0x000050 0x4 LONG 0x6f44 DEFINED (__U2RXInterrupt)?<code 339> (__U2RXInterrupt):<code 339> (__DefaultInterrupt)
0x000052 0x4 LONG 0x6f44 DEFINED (__U2TXInterrupt)?<code 339> (__U2TXInterrupt):<code 339> (__DefaultInterrupt)
0x000054 0x4 LONG 0x6f44 DEFINED (__SPI2ErrInterrupt)?<code 339> (__SPI2ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000056 0x4 LONG 0x6f44 DEFINED (__SPI2Interrupt)?<code 339> (__SPI2Interrupt):<code 339> (__DefaultInterrupt)
0x000058 0x4 LONG 0x6f44 DEFINED (__C1RxRdyInterrupt)?<code 339> (__C1RxRdyInterrupt):<code 339> (__DefaultInterrupt)
0x00005a 0x4 LONG 0x68de DEFINED (__C1Interrupt)?<code 339> (__C1Interrupt):<code 339> (__DefaultInterrupt)
0x00005c 0x4 LONG 0x6f44 DEFINED (__DMA3Interrupt)?<code 339> (__DMA3Interrupt):<code 339> (__DefaultInterrupt)
0x00005e 0x4 LONG 0x6f44 DEFINED (__Interrupt37)?<code 339> (__Interrupt37):<code 339> (__DefaultInterrupt)
0x000060 0x4 LONG 0x6f44 DEFINED (__Interrupt38)?<code 339> (__Interrupt38):<code 339> (__DefaultInterrupt)
0x000062 0x4 LONG 0x6f44 DEFINED (__Interrupt39)?<code 339> (__Interrupt39):<code 339> (__DefaultInterrupt)
0x000064 0x4 LONG 0x6f44 DEFINED (__Interrupt40)?<code 339> (__Interrupt40):<code 339> (__DefaultInterrupt)
0x000066 0x4 LONG 0x6f44 DEFINED (__Interrupt41)?<code 339> (__Interrupt41):<code 339> (__DefaultInterrupt)
0x000068 0x4 LONG 0x6f44 DEFINED (__Interrupt42)?<code 339> (__Interrupt42):<code 339> (__DefaultInterrupt)
0x00006a 0x4 LONG 0x6f44 DEFINED (__Interrupt43)?<code 339> (__Interrupt43):<code 339> (__DefaultInterrupt)
0x00006c 0x4 LONG 0x6f44 DEFINED (__Interrupt44)?<code 339> (__Interrupt44):<code 339> (__DefaultInterrupt)
0x00006e 0x4 LONG 0x6f44 DEFINED (__PMPInterrupt)?<code 339> (__PMPInterrupt):<code 339> (__DefaultInterrupt)
0x000070 0x4 LONG 0x6f44 DEFINED (__DMA4Interrupt)?<code 339> (__DMA4Interrupt):<code 339> (__DefaultInterrupt)
0x000072 0x4 LONG 0x6f44 DEFINED (__Interrupt47)?<code 339> (__Interrupt47):<code 339> (__DefaultInterrupt)
0x000074 0x4 LONG 0x6f44 DEFINED (__Interrupt48)?<code 339> (__Interrupt48):<code 339> (__DefaultInterrupt)
0x000076 0x4 LONG 0x6f44 DEFINED (__Interrupt49)?<code 339> (__Interrupt49):<code 339> (__DefaultInterrupt)
0x000078 0x4 LONG 0x6f44 DEFINED (__Interrupt50)?<code 339> (__Interrupt50):<code 339> (__DefaultInterrupt)
0x00007a 0x4 LONG 0x6f44 DEFINED (__Interrupt51)?<code 339> (__Interrupt51):<code 339> (__DefaultInterrupt)
0x00007c 0x4 LONG 0x6f44 DEFINED (__Interrupt52)?<code 339> (__Interrupt52):<code 339> (__DefaultInterrupt)
0x00007e 0x4 LONG 0x6f44 DEFINED (__Interrupt53)?<code 339> (__Interrupt53):<code 339> (__DefaultInterrupt)
0x000080 0x4 LONG 0x6f44 DEFINED (__Interrupt54)?<code 339> (__Interrupt54):<code 339> (__DefaultInterrupt)
0x000082 0x4 LONG 0x6f44 DEFINED (__Interrupt55)?<code 339> (__Interrupt55):<code 339> (__DefaultInterrupt)
0x000084 0x4 LONG 0x6f44 DEFINED (__Interrupt56)?<code 339> (__Interrupt56):<code 339> (__DefaultInterrupt)
0x000086 0x4 LONG 0x6f44 DEFINED (__MPWM1Interrupt)?<code 339> (__MPWM1Interrupt):<code 339> (__DefaultInterrupt)
0x000088 0x4 LONG 0x6f44 DEFINED (__QEI1Interrupt)?<code 339> (__QEI1Interrupt):<code 339> (__DefaultInterrupt)
0x00008a 0x4 LONG 0x6f44 DEFINED (__Interrupt59)?<code 339> (__Interrupt59):<code 339> (__DefaultInterrupt)
0x00008c 0x4 LONG 0x6f44 DEFINED (__Interrupt60)?<code 339> (__Interrupt60):<code 339> (__DefaultInterrupt)
0x00008e 0x4 LONG 0x6f44 DEFINED (__DMA5Interrupt)?<code 339> (__DMA5Interrupt):<code 339> (__DefaultInterrupt)
0x000090 0x4 LONG 0x6f44 DEFINED (__RTCCInterrupt)?<code 339> (__RTCCInterrupt):<code 339> (__DefaultInterrupt)
0x000092 0x4 LONG 0x6f44 DEFINED (__FLTA1Interrupt)?<code 339> (__FLTA1Interrupt):<code 339> (__DefaultInterrupt)
0x000094 0x4 LONG 0x6f44 DEFINED (__Interrupt64)?<code 339> (__Interrupt64):<code 339> (__DefaultInterrupt)
0x000096 0x4 LONG 0x6f44 DEFINED (__U1ErrInterrupt)?<code 339> (__U1ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000098 0x4 LONG 0x6f44 DEFINED (__U2ErrInterrupt)?<code 339> (__U2ErrInterrupt):<code 339> (__DefaultInterrupt)
0x00009a 0x4 LONG 0x6f44 DEFINED (__CRCInterrupt)?<code 339> (__CRCInterrupt):<code 339> (__DefaultInterrupt)
0x00009c 0x4 LONG 0x6f44 DEFINED (__DMA6Interrupt)?<code 339> (__DMA6Interrupt):<code 339> (__DefaultInterrupt)
0x00009e 0x4 LONG 0x6f44 DEFINED (__DMA7Interrupt)?<code 339> (__DMA7Interrupt):<code 339> (__DefaultInterrupt)
0x0000a0 0x4 LONG 0x6f44 DEFINED (__C1TxReqInterrupt)?<code 339> (__C1TxReqInterrupt):<code 339> (__DefaultInterrupt)
0x0000a2 0x4 LONG 0x6f44 DEFINED (__Interrupt71)?<code 339> (__Interrupt71):<code 339> (__DefaultInterrupt)
0x0000a4 0x4 LONG 0x6f44 DEFINED (__Interrupt72)?<code 339> (__Interrupt72):<code 339> (__DefaultInterrupt)
0x0000a6 0x4 LONG 0x6f44 DEFINED (__MPWM2Interrupt)?<code 339> (__MPWM2Interrupt):<code 339> (__DefaultInterrupt)
0x0000a8 0x4 LONG 0x6f44 DEFINED (__FLTA2Interrupt)?<code 339> (__FLTA2Interrupt):<code 339> (__DefaultInterrupt)
0x0000aa 0x4 LONG 0x6f44 DEFINED (__QEI2Interrupt)?<code 339> (__QEI2Interrupt):<code 339> (__DefaultInterrupt)
0x0000ac 0x4 LONG 0x6f44 DEFINED (__Interrupt76)?<code 339> (__Interrupt76):<code 339> (__DefaultInterrupt)
0x0000ae 0x4 LONG 0x6f44 DEFINED (__Interrupt77)?<code 339> (__Interrupt77):<code 339> (__DefaultInterrupt)
0x0000b0 0x4 LONG 0x6f44 DEFINED (__Interrupt78)?<code 339> (__Interrupt78):<code 339> (__DefaultInterrupt)
0x0000b2 0x4 LONG 0x6f44 DEFINED (__Interrupt79)?<code 339> (__Interrupt79):<code 339> (__DefaultInterrupt)
0x0000b4 0x4 LONG 0x6f44 DEFINED (__Interrupt80)?<code 339> (__Interrupt80):<code 339> (__DefaultInterrupt)
0x0000b6 0x4 LONG 0x6f44 DEFINED (__Interrupt81)?<code 339> (__Interrupt81):<code 339> (__DefaultInterrupt)
0x0000b8 0x4 LONG 0x6f44 DEFINED (__Interrupt82)?<code 339> (__Interrupt82):<code 339> (__DefaultInterrupt)
0x0000ba 0x4 LONG 0x6f44 DEFINED (__Interrupt83)?<code 339> (__Interrupt83):<code 339> (__DefaultInterrupt)
0x0000bc 0x4 LONG 0x6f44 DEFINED (__Interrupt84)?<code 339> (__Interrupt84):<code 339> (__DefaultInterrupt)
0x0000be 0x4 LONG 0x6f44 DEFINED (__Interrupt85)?<code 339> (__Interrupt85):<code 339> (__DefaultInterrupt)
0x0000c0 0x4 LONG 0x6f44 DEFINED (__Interrupt86)?<code 339> (__Interrupt86):<code 339> (__DefaultInterrupt)
0x0000c2 0x4 LONG 0x6f44 DEFINED (__Interrupt87)?<code 339> (__Interrupt87):<code 339> (__DefaultInterrupt)
0x0000c4 0x4 LONG 0x6f44 DEFINED (__Interrupt88)?<code 339> (__Interrupt88):<code 339> (__DefaultInterrupt)
0x0000c6 0x4 LONG 0x6f44 DEFINED (__Interrupt89)?<code 339> (__Interrupt89):<code 339> (__DefaultInterrupt)
0x0000c8 0x4 LONG 0x6f44 DEFINED (__Interrupt90)?<code 339> (__Interrupt90):<code 339> (__DefaultInterrupt)
0x0000ca 0x4 LONG 0x6f44 DEFINED (__Interrupt91)?<code 339> (__Interrupt91):<code 339> (__DefaultInterrupt)
0x0000cc 0x4 LONG 0x6f44 DEFINED (__Interrupt92)?<code 339> (__Interrupt92):<code 339> (__DefaultInterrupt)
0x0000ce 0x4 LONG 0x6f44 DEFINED (__Interrupt93)?<code 339> (__Interrupt93):<code 339> (__DefaultInterrupt)
0x0000d0 0x4 LONG 0x6f44 DEFINED (__Interrupt94)?<code 339> (__Interrupt94):<code 339> (__DefaultInterrupt)
0x0000d2 0x4 LONG 0x6f44 DEFINED (__Interrupt95)?<code 339> (__Interrupt95):<code 339> (__DefaultInterrupt)
0x0000d4 0x4 LONG 0x6f44 DEFINED (__Interrupt96)?<code 339> (__Interrupt96):<code 339> (__DefaultInterrupt)
0x0000d6 0x4 LONG 0x6f44 DEFINED (__Interrupt97)?<code 339> (__Interrupt97):<code 339> (__DefaultInterrupt)
0x0000d8 0x4 LONG 0x6f44 DEFINED (__Interrupt98)?<code 339> (__Interrupt98):<code 339> (__DefaultInterrupt)
0x0000da 0x4 LONG 0x6f44 DEFINED (__Interrupt99)?<code 339> (__Interrupt99):<code 339> (__DefaultInterrupt)
0x0000dc 0x4 LONG 0x6f44 DEFINED (__Interrupt100)?<code 339> (__Interrupt100):<code 339> (__DefaultInterrupt)
0x0000de 0x4 LONG 0x6f44 DEFINED (__Interrupt101)?<code 339> (__Interrupt101):<code 339> (__DefaultInterrupt)
0x0000e0 0x4 LONG 0x6f44 DEFINED (__Interrupt102)?<code 339> (__Interrupt102):<code 339> (__DefaultInterrupt)
0x0000e2 0x4 LONG 0x6f44 DEFINED (__Interrupt103)?<code 339> (__Interrupt103):<code 339> (__DefaultInterrupt)
0x0000e4 0x4 LONG 0x6f44 DEFINED (__Interrupt104)?<code 339> (__Interrupt104):<code 339> (__DefaultInterrupt)
0x0000e6 0x4 LONG 0x6f44 DEFINED (__Interrupt105)?<code 339> (__Interrupt105):<code 339> (__DefaultInterrupt)
0x0000e8 0x4 LONG 0x6f44 DEFINED (__Interrupt106)?<code 339> (__Interrupt106):<code 339> (__DefaultInterrupt)
0x0000ea 0x4 LONG 0x6f44 DEFINED (__Interrupt107)?<code 339> (__Interrupt107):<code 339> (__DefaultInterrupt)
0x0000ec 0x4 LONG 0x6f44 DEFINED (__Interrupt108)?<code 339> (__Interrupt108):<code 339> (__DefaultInterrupt)
0x0000ee 0x4 LONG 0x6f44 DEFINED (__Interrupt109)?<code 339> (__Interrupt109):<code 339> (__DefaultInterrupt)
0x0000f0 0x4 LONG 0x6f44 DEFINED (__Interrupt110)?<code 339> (__Interrupt110):<code 339> (__DefaultInterrupt)
0x0000f2 0x4 LONG 0x6f44 DEFINED (__Interrupt111)?<code 339> (__Interrupt111):<code 339> (__DefaultInterrupt)
0x0000f4 0x4 LONG 0x6f44 DEFINED (__Interrupt112)?<code 339> (__Interrupt112):<code 339> (__DefaultInterrupt)
0x0000f6 0x4 LONG 0x6f44 DEFINED (__Interrupt113)?<code 339> (__Interrupt113):<code 339> (__DefaultInterrupt)
0x0000f8 0x4 LONG 0x6f44 DEFINED (__Interrupt114)?<code 339> (__Interrupt114):<code 339> (__DefaultInterrupt)
0x0000fa 0x4 LONG 0x6f44 DEFINED (__Interrupt115)?<code 339> (__Interrupt115):<code 339> (__DefaultInterrupt)
0x0000fc 0x4 LONG 0x6f44 DEFINED (__Interrupt116)?<code 339> (__Interrupt116):<code 339> (__DefaultInterrupt)
0x0000fe 0x4 LONG 0x6f44 DEFINED (__Interrupt117)?<code 339> (__Interrupt117):<code 339> (__DefaultInterrupt)
.aivt 0x000104 0xfc
0x000104 0x4 LONG 0x6f44 DEFINED (__AltReservedTrap0)?<code 339> (__AltReservedTrap0):DEFINED (__ReservedTrap0)?<code 339> (__ReservedTrap0):<code 339> (__DefaultInterrupt)
0x000106 0x4 LONG 0x6f44 DEFINED (__AltOscillatorFail)?<code 339> (__AltOscillatorFail):DEFINED (__OscillatorFail)?<code 339> (__OscillatorFail):<code 339> (__DefaultInterrupt)
0x000108 0x4 LONG 0x6f44 DEFINED (__AltAddressError)?<code 339> (__AltAddressError):DEFINED (__AddressError)?<code 339> (__AddressError):<code 339> (__DefaultInterrupt)
0x00010a 0x4 LONG 0x6f44 DEFINED (__AltStackError)?<code 339> (__AltStackError):DEFINED (__StackError)?<code 339> (__StackError):<code 339> (__DefaultInterrupt)
0x00010c 0x4 LONG 0x6f44 DEFINED (__AltMathError)?<code 339> (__AltMathError):DEFINED (__MathError)?<code 339> (__MathError):<code 339> (__DefaultInterrupt)
0x00010e 0x4 LONG 0x6f44 DEFINED (__AltDMACError)?<code 339> (__AltDMACError):DEFINED (__DMACError)?<code 339> (__DMACError):<code 339> (__DefaultInterrupt)
0x000110 0x4 LONG 0x6f44 DEFINED (__AltReservedTrap6)?<code 339> (__AltReservedTrap6):DEFINED (__ReservedTrap6)?<code 339> (__ReservedTrap6):<code 339> (__DefaultInterrupt)
0x000112 0x4 LONG 0x6f44 DEFINED (__AltReservedTrap7)?<code 339> (__AltReservedTrap7):DEFINED (__ReservedTrap7)?<code 339> (__ReservedTrap7):<code 339> (__DefaultInterrupt)
0x000114 0x4 LONG 0x6f44 DEFINED (__AltINT0Interrupt)?<code 339> (__AltINT0Interrupt):DEFINED (__INT0Interrupt)?<code 339> (__INT0Interrupt):<code 339> (__DefaultInterrupt)
0x000116 0x4 LONG 0x6f44 DEFINED (__AltIC1Interrupt)?<code 339> (__AltIC1Interrupt):DEFINED (__IC1Interrupt)?<code 339> (__IC1Interrupt):<code 339> (__DefaultInterrupt)
0x000118 0x4 LONG 0x6f44 DEFINED (__AltOC1Interrupt)?<code 339> (__AltOC1Interrupt):DEFINED (__OC1Interrupt)?<code 339> (__OC1Interrupt):<code 339> (__DefaultInterrupt)
0x00011a 0x4 LONG 0x5e7c DEFINED (__AltT1Interrupt)?<code 339> (__AltT1Interrupt):DEFINED (__T1Interrupt)?<code 339> (__T1Interrupt):<code 339> (__DefaultInterrupt)
0x00011c 0x4 LONG 0x6f44 DEFINED (__AltDMA0Interrupt)?<code 339> (__AltDMA0Interrupt):DEFINED (__DMA0Interrupt)?<code 339> (__DMA0Interrupt):<code 339> (__DefaultInterrupt)
0x00011e 0x4 LONG 0x6f44 DEFINED (__AltIC2Interrupt)?<code 339> (__AltIC2Interrupt):DEFINED (__IC2Interrupt)?<code 339> (__IC2Interrupt):<code 339> (__DefaultInterrupt)
0x000120 0x4 LONG 0x6f44 DEFINED (__AltOC2Interrupt)?<code 339> (__AltOC2Interrupt):DEFINED (__OC2Interrupt)?<code 339> (__OC2Interrupt):<code 339> (__DefaultInterrupt)
0x000122 0x4 LONG 0x6f44 DEFINED (__AltT2Interrupt)?<code 339> (__AltT2Interrupt):DEFINED (__T2Interrupt)?<code 339> (__T2Interrupt):<code 339> (__DefaultInterrupt)
0x000124 0x4 LONG 0x6f44 DEFINED (__AltT3Interrupt)?<code 339> (__AltT3Interrupt):DEFINED (__T3Interrupt)?<code 339> (__T3Interrupt):<code 339> (__DefaultInterrupt)
0x000126 0x4 LONG 0x6f44 DEFINED (__AltSPI1ErrInterrupt)?<code 339> (__AltSPI1ErrInterrupt):DEFINED (__SPI1ErrInterrupt)?<code 339> (__SPI1ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000128 0x4 LONG 0x6f44 DEFINED (__AltSPI1Interrupt)?<code 339> (__AltSPI1Interrupt):DEFINED (__SPI1Interrupt)?<code 339> (__SPI1Interrupt):<code 339> (__DefaultInterrupt)
0x00012a 0x4 LONG 0x6f44 DEFINED (__AltU1RXInterrupt)?<code 339> (__AltU1RXInterrupt):DEFINED (__U1RXInterrupt)?<code 339> (__U1RXInterrupt):<code 339> (__DefaultInterrupt)
0x00012c 0x4 LONG 0x6f44 DEFINED (__AltU1TXInterrupt)?<code 339> (__AltU1TXInterrupt):DEFINED (__U1TXInterrupt)?<code 339> (__U1TXInterrupt):<code 339> (__DefaultInterrupt)
0x00012e 0x4 LONG 0x6f44 DEFINED (__AltADC1Interrupt)?<code 339> (__AltADC1Interrupt):DEFINED (__ADC1Interrupt)?<code 339> (__ADC1Interrupt):<code 339> (__DefaultInterrupt)
0x000130 0x4 LONG 0x6800 DEFINED (__AltDMA1Interrupt)?<code 339> (__AltDMA1Interrupt):DEFINED (__DMA1Interrupt)?<code 339> (__DMA1Interrupt):<code 339> (__DefaultInterrupt)
0x000132 0x4 LONG 0x6f44 DEFINED (__AltInterrupt15)?<code 339> (__AltInterrupt15):DEFINED (__Interrupt15)?<code 339> (__Interrupt15):<code 339> (__DefaultInterrupt)
0x000134 0x4 LONG 0x6f44 DEFINED (__AltSI2C1Interrupt)?<code 339> (__AltSI2C1Interrupt):DEFINED (__SI2C1Interrupt)?<code 339> (__SI2C1Interrupt):<code 339> (__DefaultInterrupt)
0x000136 0x4 LONG 0x6f44 DEFINED (__AltMI2C1Interrupt)?<code 339> (__AltMI2C1Interrupt):DEFINED (__MI2C1Interrupt)?<code 339> (__MI2C1Interrupt):<code 339> (__DefaultInterrupt)
0x000138 0x4 LONG 0x6f44 DEFINED (__AltCMPInterrupt)?<code 339> (__AltCMPInterrupt):DEFINED (__CMPInterrupt)?<code 339> (__CMPInterrupt):<code 339> (__DefaultInterrupt)
0x00013a 0x4 LONG 0x6f44 DEFINED (__AltCNInterrupt)?<code 339> (__AltCNInterrupt):DEFINED (__CNInterrupt)?<code 339> (__CNInterrupt):<code 339> (__DefaultInterrupt)
0x00013c 0x4 LONG 0x6f44 DEFINED (__AltINT1Interrupt)?<code 339> (__AltINT1Interrupt):DEFINED (__INT1Interrupt)?<code 339> (__INT1Interrupt):<code 339> (__DefaultInterrupt)
0x00013e 0x4 LONG 0x6f44 DEFINED (__AltInterrupt21)?<code 339> (__AltInterrupt21):DEFINED (__Interrupt21)?<code 339> (__Interrupt21):<code 339> (__DefaultInterrupt)
0x000140 0x4 LONG 0x6f44 DEFINED (__AltIC7Interrupt)?<code 339> (__AltIC7Interrupt):DEFINED (__IC7Interrupt)?<code 339> (__IC7Interrupt):<code 339> (__DefaultInterrupt)
0x000142 0x4 LONG 0x6f44 DEFINED (__AltIC8Interrupt)?<code 339> (__AltIC8Interrupt):DEFINED (__IC8Interrupt)?<code 339> (__IC8Interrupt):<code 339> (__DefaultInterrupt)
0x000144 0x4 LONG 0x68ca DEFINED (__AltDMA2Interrupt)?<code 339> (__AltDMA2Interrupt):DEFINED (__DMA2Interrupt)?<code 339> (__DMA2Interrupt):<code 339> (__DefaultInterrupt)
0x000146 0x4 LONG 0x6f44 DEFINED (__AltOC3Interrupt)?<code 339> (__AltOC3Interrupt):DEFINED (__OC3Interrupt)?<code 339> (__OC3Interrupt):<code 339> (__DefaultInterrupt)
0x000148 0x4 LONG 0x6f44 DEFINED (__AltOC4Interrupt)?<code 339> (__AltOC4Interrupt):DEFINED (__OC4Interrupt)?<code 339> (__OC4Interrupt):<code 339> (__DefaultInterrupt)
0x00014a 0x4 LONG 0x6f44 DEFINED (__AltT4Interrupt)?<code 339> (__AltT4Interrupt):DEFINED (__T4Interrupt)?<code 339> (__T4Interrupt):<code 339> (__DefaultInterrupt)
0x00014c 0x4 LONG 0x6f44 DEFINED (__AltT5Interrupt)?<code 339> (__AltT5Interrupt):DEFINED (__T5Interrupt)?<code 339> (__T5Interrupt):<code 339> (__DefaultInterrupt)
0x00014e 0x4 LONG 0x6f44 DEFINED (__AltINT2Interrupt)?<code 339> (__AltINT2Interrupt):DEFINED (__INT2Interrupt)?<code 339> (__INT2Interrupt):<code 339> (__DefaultInterrupt)
0x000150 0x4 LONG 0x6f44 DEFINED (__AltU2RXInterrupt)?<code 339> (__AltU2RXInterrupt):DEFINED (__U2RXInterrupt)?<code 339> (__U2RXInterrupt):<code 339> (__DefaultInterrupt)
0x000152 0x4 LONG 0x6f44 DEFINED (__AltU2TXInterrupt)?<code 339> (__AltU2TXInterrupt):DEFINED (__U2TXInterrupt)?<code 339> (__U2TXInterrupt):<code 339> (__DefaultInterrupt)
0x000154 0x4 LONG 0x6f44 DEFINED (__AltSPI2ErrInterrupt)?<code 339> (__AltSPI2ErrInterrupt):DEFINED (__SPI2ErrInterrupt)?<code 339> (__SPI2ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000156 0x4 LONG 0x6f44 DEFINED (__AltSPI2Interrupt)?<code 339> (__AltSPI2Interrupt):DEFINED (__SPI2Interrupt)?<code 339> (__SPI2Interrupt):<code 339> (__DefaultInterrupt)
0x000158 0x4 LONG 0x6f44 DEFINED (__AltC1RxRdyInterrupt)?<code 339> (__AltC1RxRdyInterrupt):DEFINED (__C1RxRdyInterrupt)?<code 339> (__C1RxRdyInterrupt):<code 339> (__DefaultInterrupt)
0x00015a 0x4 LONG 0x68de DEFINED (__AltC1Interrupt)?<code 339> (__AltC1Interrupt):DEFINED (__C1Interrupt)?<code 339> (__C1Interrupt):<code 339> (__DefaultInterrupt)
0x00015c 0x4 LONG 0x6f44 DEFINED (__AltDMA3Interrupt)?<code 339> (__AltDMA3Interrupt):DEFINED (__DMA3Interrupt)?<code 339> (__DMA3Interrupt):<code 339> (__DefaultInterrupt)
0x00015e 0x4 LONG 0x6f44 DEFINED (__AltInterrupt37)?<code 339> (__AltInterrupt37):DEFINED (__Interrupt37)?<code 339> (__Interrupt37):<code 339> (__DefaultInterrupt)
0x000160 0x4 LONG 0x6f44 DEFINED (__AltInterrupt38)?<code 339> (__AltInterrupt38):DEFINED (__Interrupt38)?<code 339> (__Interrupt38):<code 339> (__DefaultInterrupt)
0x000162 0x4 LONG 0x6f44 DEFINED (__AltInterrupt39)?<code 339> (__AltInterrupt39):DEFINED (__Interrupt39)?<code 339> (__Interrupt39):<code 339> (__DefaultInterrupt)
0x000164 0x4 LONG 0x6f44 DEFINED (__AltInterrupt40)?<code 339> (__AltInterrupt40):DEFINED (__Interrupt40)?<code 339> (__Interrupt40):<code 339> (__DefaultInterrupt)
0x000166 0x4 LONG 0x6f44 DEFINED (__AltInterrupt41)?<code 339> (__AltInterrupt41):DEFINED (__Interrupt41)?<code 339> (__Interrupt41):<code 339> (__DefaultInterrupt)
0x000168 0x4 LONG 0x6f44 DEFINED (__AltInterrupt42)?<code 339> (__AltInterrupt42):DEFINED (__Interrupt42)?<code 339> (__Interrupt42):<code 339> (__DefaultInterrupt)
0x00016a 0x4 LONG 0x6f44 DEFINED (__AltInterrupt43)?<code 339> (__AltInterrupt43):DEFINED (__Interrupt43)?<code 339> (__Interrupt43):<code 339> (__DefaultInterrupt)
0x00016c 0x4 LONG 0x6f44 DEFINED (__AltInterrupt44)?<code 339> (__AltInterrupt44):DEFINED (__Interrupt44)?<code 339> (__Interrupt44):<code 339> (__DefaultInterrupt)
0x00016e 0x4 LONG 0x6f44 DEFINED (__AltPMPInterrupt)?<code 339> (__AltPMPInterrupt):DEFINED (__PMPInterrupt)?<code 339> (__PMPInterrupt):<code 339> (__DefaultInterrupt)
0x000170 0x4 LONG 0x6f44 DEFINED (__AltDMA4Interrupt)?<code 339> (__AltDMA4Interrupt):DEFINED (__DMA4Interrupt)?<code 339> (__DMA4Interrupt):<code 339> (__DefaultInterrupt)
0x000172 0x4 LONG 0x6f44 DEFINED (__AltInterrupt47)?<code 339> (__AltInterrupt47):DEFINED (__Interrupt47)?<code 339> (__Interrupt47):<code 339> (__DefaultInterrupt)
0x000174 0x4 LONG 0x6f44 DEFINED (__AltInterrupt48)?<code 339> (__AltInterrupt48):DEFINED (__Interrupt48)?<code 339> (__Interrupt48):<code 339> (__DefaultInterrupt)
0x000176 0x4 LONG 0x6f44 DEFINED (__AltInterrupt49)?<code 339> (__AltInterrupt49):DEFINED (__Interrupt49)?<code 339> (__Interrupt49):<code 339> (__DefaultInterrupt)
0x000178 0x4 LONG 0x6f44 DEFINED (__AltInterrupt50)?<code 339> (__AltInterrupt50):DEFINED (__Interrupt50)?<code 339> (__Interrupt50):<code 339> (__DefaultInterrupt)
0x00017a 0x4 LONG 0x6f44 DEFINED (__AltInterrupt51)?<code 339> (__AltInterrupt51):DEFINED (__Interrupt51)?<code 339> (__Interrupt51):<code 339> (__DefaultInterrupt)
0x00017c 0x4 LONG 0x6f44 DEFINED (__AltInterrupt52)?<code 339> (__AltInterrupt52):DEFINED (__Interrupt52)?<code 339> (__Interrupt52):<code 339> (__DefaultInterrupt)
0x00017e 0x4 LONG 0x6f44 DEFINED (__AltInterrupt53)?<code 339> (__AltInterrupt53):DEFINED (__Interrupt53)?<code 339> (__Interrupt53):<code 339> (__DefaultInterrupt)
0x000180 0x4 LONG 0x6f44 DEFINED (__AltInterrupt54)?<code 339> (__AltInterrupt54):DEFINED (__Interrupt54)?<code 339> (__Interrupt54):<code 339> (__DefaultInterrupt)
0x000182 0x4 LONG 0x6f44 DEFINED (__AltInterrupt55)?<code 339> (__AltInterrupt55):DEFINED (__Interrupt55)?<code 339> (__Interrupt55):<code 339> (__DefaultInterrupt)
0x000184 0x4 LONG 0x6f44 DEFINED (__AltInterrupt56)?<code 339> (__AltInterrupt56):DEFINED (__Interrupt56)?<code 339> (__Interrupt56):<code 339> (__DefaultInterrupt)
0x000186 0x4 LONG 0x6f44 DEFINED (__AltMPWM1Interrupt)?<code 339> (__AltMPWM1Interrupt):DEFINED (__MPWM1Interrupt)?<code 339> (__MPWM1Interrupt):<code 339> (__DefaultInterrupt)
0x000188 0x4 LONG 0x6f44 DEFINED (__AltQEI1Interrupt)?<code 339> (__AltQEI1Interrupt):DEFINED (__QEI1Interrupt)?<code 339> (__QEI1Interrupt):<code 339> (__DefaultInterrupt)
0x00018a 0x4 LONG 0x6f44 DEFINED (__AltInterrupt59)?<code 339> (__AltInterrupt59):DEFINED (__Interrupt59)?<code 339> (__Interrupt59):<code 339> (__DefaultInterrupt)
0x00018c 0x4 LONG 0x6f44 DEFINED (__AltInterrupt60)?<code 339> (__AltInterrupt60):DEFINED (__Interrupt60)?<code 339> (__Interrupt60):<code 339> (__DefaultInterrupt)
0x00018e 0x4 LONG 0x6f44 DEFINED (__AltDMA5Interrupt)?<code 339> (__AltDMA5Interrupt):DEFINED (__DMA5Interrupt)?<code 339> (__DMA5Interrupt):<code 339> (__DefaultInterrupt)
0x000190 0x4 LONG 0x6f44 DEFINED (__AltRTCCInterrupt)?<code 339> (__AltRTCCInterrupt):DEFINED (__RTCCInterrupt)?<code 339> (__RTCCInterrupt):<code 339> (__DefaultInterrupt)
0x000192 0x4 LONG 0x6f44 DEFINED (__AltFLTA1Interrupt)?<code 339> (__AltFLTA1Interrupt):DEFINED (__FLTA1Interrupt)?<code 339> (__FLTA1Interrupt):<code 339> (__DefaultInterrupt)
0x000194 0x4 LONG 0x6f44 DEFINED (__AltInterrupt64)?<code 339> (__AltInterrupt64):DEFINED (__Interrupt64)?<code 339> (__Interrupt64):<code 339> (__DefaultInterrupt)
0x000196 0x4 LONG 0x6f44 DEFINED (__AltU1ErrInterrupt)?<code 339> (__AltU1ErrInterrupt):DEFINED (__U1ErrInterrupt)?<code 339> (__U1ErrInterrupt):<code 339> (__DefaultInterrupt)
0x000198 0x4 LONG 0x6f44 DEFINED (__AltU2ErrInterrupt)?<code 339> (__AltU2ErrInterrupt):DEFINED (__U2ErrInterrupt)?<code 339> (__U2ErrInterrupt):<code 339> (__DefaultInterrupt)
0x00019a 0x4 LONG 0x6f44 DEFINED (__AltCRCInterrupt)?<code 339> (__AltCRCInterrupt):DEFINED (__CRCInterrupt)?<code 339> (__CRCInterrupt):<code 339> (__DefaultInterrupt)
0x00019c 0x4 LONG 0x6f44 DEFINED (__AltDMA6Interrupt)?<code 339> (__AltDMA6Interrupt):DEFINED (__DMA6Interrupt)?<code 339> (__DMA6Interrupt):<code 339> (__DefaultInterrupt)
0x00019e 0x4 LONG 0x6f44 DEFINED (__AltDMA7Interrupt)?<code 339> (__AltDMA7Interrupt):DEFINED (__DMA7Interrupt)?<code 339> (__DMA7Interrupt):<code 339> (__DefaultInterrupt)
0x0001a0 0x4 LONG 0x6f44 DEFINED (__AltC1TxReqInterrupt)?<code 339> (__AltC1TxReqInterrupt):DEFINED (__C1TxReqInterrupt)?<code 339> (__C1TxReqInterrupt):<code 339> (__DefaultInterrupt)
0x0001a2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt71)?<code 339> (__AltInterrupt71):DEFINED (__Interrupt71)?<code 339> (__Interrupt71):<code 339> (__DefaultInterrupt)
0x0001a4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt72)?<code 339> (__AltInterrupt72):DEFINED (__Interrupt72)?<code 339> (__Interrupt72):<code 339> (__DefaultInterrupt)
0x0001a6 0x4 LONG 0x6f44 DEFINED (__AltMPWM2Interrupt)?<code 339> (__AltMPWM2Interrupt):DEFINED (__MPWM2Interrupt)?<code 339> (__MPWM2Interrupt):<code 339> (__DefaultInterrupt)
0x0001a8 0x4 LONG 0x6f44 DEFINED (__AltFLTA2Interrupt)?<code 339> (__AltFLTA2Interrupt):DEFINED (__FLTA2Interrupt)?<code 339> (__FLTA2Interrupt):<code 339> (__DefaultInterrupt)
0x0001aa 0x4 LONG 0x6f44 DEFINED (__AltQEI2Interrupt)?<code 339> (__AltQEI2Interrupt):DEFINED (__QEI2Interrupt)?<code 339> (__QEI2Interrupt):<code 339> (__DefaultInterrupt)
0x0001ac 0x4 LONG 0x6f44 DEFINED (__AltInterrupt76)?<code 339> (__AltInterrupt76):DEFINED (__Interrupt76)?<code 339> (__Interrupt76):<code 339> (__DefaultInterrupt)
0x0001ae 0x4 LONG 0x6f44 DEFINED (__AltInterrupt77)?<code 339> (__AltInterrupt77):DEFINED (__Interrupt77)?<code 339> (__Interrupt77):<code 339> (__DefaultInterrupt)
0x0001b0 0x4 LONG 0x6f44 DEFINED (__AltInterrupt78)?<code 339> (__AltInterrupt78):DEFINED (__Interrupt78)?<code 339> (__Interrupt78):<code 339> (__DefaultInterrupt)
0x0001b2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt79)?<code 339> (__AltInterrupt79):DEFINED (__Interrupt79)?<code 339> (__Interrupt79):<code 339> (__DefaultInterrupt)
0x0001b4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt80)?<code 339> (__AltInterrupt80):DEFINED (__Interrupt80)?<code 339> (__Interrupt80):<code 339> (__DefaultInterrupt)
0x0001b6 0x4 LONG 0x6f44 DEFINED (__AltInterrupt81)?<code 339> (__AltInterrupt81):DEFINED (__Interrupt81)?<code 339> (__Interrupt81):<code 339> (__DefaultInterrupt)
0x0001b8 0x4 LONG 0x6f44 DEFINED (__AltInterrupt82)?<code 339> (__AltInterrupt82):DEFINED (__Interrupt82)?<code 339> (__Interrupt82):<code 339> (__DefaultInterrupt)
0x0001ba 0x4 LONG 0x6f44 DEFINED (__AltInterrupt83)?<code 339> (__AltInterrupt83):DEFINED (__Interrupt83)?<code 339> (__Interrupt83):<code 339> (__DefaultInterrupt)
0x0001bc 0x4 LONG 0x6f44 DEFINED (__AltInterrupt84)?<code 339> (__AltInterrupt84):DEFINED (__Interrupt84)?<code 339> (__Interrupt84):<code 339> (__DefaultInterrupt)
0x0001be 0x4 LONG 0x6f44 DEFINED (__AltInterrupt85)?<code 339> (__AltInterrupt85):DEFINED (__Interrupt85)?<code 339> (__Interrupt85):<code 339> (__DefaultInterrupt)
0x0001c0 0x4 LONG 0x6f44 DEFINED (__AltInterrupt86)?<code 339> (__AltInterrupt86):DEFINED (__Interrupt86)?<code 339> (__Interrupt86):<code 339> (__DefaultInterrupt)
0x0001c2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt87)?<code 339> (__AltInterrupt87):DEFINED (__Interrupt87)?<code 339> (__Interrupt87):<code 339> (__DefaultInterrupt)
0x0001c4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt88)?<code 339> (__AltInterrupt88):DEFINED (__Interrupt88)?<code 339> (__Interrupt88):<code 339> (__DefaultInterrupt)
0x0001c6 0x4 LONG 0x6f44 DEFINED (__AltInterrupt89)?<code 339> (__AltInterrupt89):DEFINED (__Interrupt89)?<code 339> (__Interrupt89):<code 339> (__DefaultInterrupt)
0x0001c8 0x4 LONG 0x6f44 DEFINED (__AltInterrupt90)?<code 339> (__AltInterrupt90):DEFINED (__Interrupt90)?<code 339> (__Interrupt90):<code 339> (__DefaultInterrupt)
0x0001ca 0x4 LONG 0x6f44 DEFINED (__AltInterrupt91)?<code 339> (__AltInterrupt91):DEFINED (__Interrupt91)?<code 339> (__Interrupt91):<code 339> (__DefaultInterrupt)
0x0001cc 0x4 LONG 0x6f44 DEFINED (__AltInterrupt92)?<code 339> (__AltInterrupt92):DEFINED (__Interrupt92)?<code 339> (__Interrupt92):<code 339> (__DefaultInterrupt)
0x0001ce 0x4 LONG 0x6f44 DEFINED (__AltInterrupt93)?<code 339> (__AltInterrupt93):DEFINED (__Interrupt93)?<code 339> (__Interrupt93):<code 339> (__DefaultInterrupt)
0x0001d0 0x4 LONG 0x6f44 DEFINED (__AltInterrupt94)?<code 339> (__AltInterrupt94):DEFINED (__Interrupt94)?<code 339> (__Interrupt94):<code 339> (__DefaultInterrupt)
0x0001d2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt95)?<code 339> (__AltInterrupt95):DEFINED (__Interrupt95)?<code 339> (__Interrupt95):<code 339> (__DefaultInterrupt)
0x0001d4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt96)?<code 339> (__AltInterrupt96):DEFINED (__Interrupt96)?<code 339> (__Interrupt96):<code 339> (__DefaultInterrupt)
0x0001d6 0x4 LONG 0x6f44 DEFINED (__AltInterrupt97)?<code 339> (__AltInterrupt97):DEFINED (__Interrupt97)?<code 339> (__Interrupt97):<code 339> (__DefaultInterrupt)
0x0001d8 0x4 LONG 0x6f44 DEFINED (__AltInterrupt98)?<code 339> (__AltInterrupt98):DEFINED (__Interrupt98)?<code 339> (__Interrupt98):<code 339> (__DefaultInterrupt)
0x0001da 0x4 LONG 0x6f44 DEFINED (__AltInterrupt99)?<code 339> (__AltInterrupt99):DEFINED (__Interrupt99)?<code 339> (__Interrupt99):<code 339> (__DefaultInterrupt)
0x0001dc 0x4 LONG 0x6f44 DEFINED (__AltInterrupt100)?<code 339> (__AltInterrupt100):DEFINED (__Interrupt100)?<code 339> (__Interrupt100):<code 339> (__DefaultInterrupt)
0x0001de 0x4 LONG 0x6f44 DEFINED (__AltInterrupt101)?<code 339> (__AltInterrupt101):DEFINED (__Interrupt101)?<code 339> (__Interrupt101):<code 339> (__DefaultInterrupt)
0x0001e0 0x4 LONG 0x6f44 DEFINED (__AltInterrupt102)?<code 339> (__AltInterrupt102):DEFINED (__Interrupt102)?<code 339> (__Interrupt102):<code 339> (__DefaultInterrupt)
0x0001e2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt103)?<code 339> (__AltInterrupt103):DEFINED (__Interrupt103)?<code 339> (__Interrupt103):<code 339> (__DefaultInterrupt)
0x0001e4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt104)?<code 339> (__AltInterrupt104):DEFINED (__Interrupt104)?<code 339> (__Interrupt104):<code 339> (__DefaultInterrupt)
0x0001e6 0x4 LONG 0x6f44 DEFINED (__AltInterrupt105)?<code 339> (__AltInterrupt105):DEFINED (__Interrupt105)?<code 339> (__Interrupt105):<code 339> (__DefaultInterrupt)
0x0001e8 0x4 LONG 0x6f44 DEFINED (__AltInterrupt106)?<code 339> (__AltInterrupt106):DEFINED (__Interrupt106)?<code 339> (__Interrupt106):<code 339> (__DefaultInterrupt)
0x0001ea 0x4 LONG 0x6f44 DEFINED (__AltInterrupt107)?<code 339> (__AltInterrupt107):DEFINED (__Interrupt107)?<code 339> (__Interrupt107):<code 339> (__DefaultInterrupt)
0x0001ec 0x4 LONG 0x6f44 DEFINED (__AltInterrupt108)?<code 339> (__AltInterrupt108):DEFINED (__Interrupt108)?<code 339> (__Interrupt108):<code 339> (__DefaultInterrupt)
0x0001ee 0x4 LONG 0x6f44 DEFINED (__AltInterrupt109)?<code 339> (__AltInterrupt109):DEFINED (__Interrupt109)?<code 339> (__Interrupt109):<code 339> (__DefaultInterrupt)
0x0001f0 0x4 LONG 0x6f44 DEFINED (__AltInterrupt110)?<code 339> (__AltInterrupt110):DEFINED (__Interrupt110)?<code 339> (__Interrupt110):<code 339> (__DefaultInterrupt)
0x0001f2 0x4 LONG 0x6f44 DEFINED (__AltInterrupt111)?<code 339> (__AltInterrupt111):DEFINED (__Interrupt111)?<code 339> (__Interrupt111):<code 339> (__DefaultInterrupt)
0x0001f4 0x4 LONG 0x6f44 DEFINED (__AltInterrupt112)?<code 339> (__AltInterrupt112):DEFINED (__Interrupt112)?<code 339> (__Interrupt112):<code 339> (__DefaultInterrupt)
0x0001f6 0x4 LONG 0x6f44 DEFINED (__AltInterrupt113)?<code 339> (__AltInterrupt113):DEFINED (__Interrupt113)?<code 339> (__Interrupt113):<code 339> (__DefaultInterrupt)
0x0001f8 0x4 LONG 0x6f44 DEFINED (__AltInterrupt114)?<code 339> (__AltInterrupt114):DEFINED (__Interrupt114)?<code 339> (__Interrupt114):<code 339> (__DefaultInterrupt)
0x0001fa 0x4 LONG 0x6f44 DEFINED (__AltInterrupt115)?<code 339> (__AltInterrupt115):DEFINED (__Interrupt115)?<code 339> (__Interrupt115):<code 339> (__DefaultInterrupt)
0x0001fc 0x4 LONG 0x6f44 DEFINED (__AltInterrupt116)?<code 339> (__AltInterrupt116):DEFINED (__Interrupt116)?<code 339> (__Interrupt116):<code 339> (__DefaultInterrupt)
0x0001fe 0x4 LONG 0x6f44 DEFINED (__AltInterrupt117)?<code 339> (__AltInterrupt117):DEFINED (__Interrupt117)?<code 339> (__Interrupt117):<code 339> (__DefaultInterrupt)
0x0000 WREG0 = 0x0
0x0000 _WREG0 = 0x0
0x0002 WREG1 = 0x2
0x0002 _WREG1 = 0x2
0x0004 WREG2 = 0x4
0x0004 _WREG2 = 0x4
0x0006 WREG3 = 0x6
0x0006 _WREG3 = 0x6
0x0008 WREG4 = 0x8
0x0008 _WREG4 = 0x8
0x000a WREG5 = 0xa
0x000a _WREG5 = 0xa
0x000c WREG6 = 0xc
0x000c _WREG6 = 0xc
0x000e WREG7 = 0xe
0x000e _WREG7 = 0xe
0x0010 WREG8 = 0x10
0x0010 _WREG8 = 0x10
0x0012 WREG9 = 0x12
0x0012 _WREG9 = 0x12
0x0014 WREG10 = 0x14
0x0014 _WREG10 = 0x14
0x0016 WREG11 = 0x16
0x0016 _WREG11 = 0x16
0x0018 WREG12 = 0x18
0x0018 _WREG12 = 0x18
0x001a WREG13 = 0x1a
0x001a _WREG13 = 0x1a
0x001c WREG14 = 0x1c
0x001c _WREG14 = 0x1c
0x001e WREG15 = 0x1e
0x001e _WREG15 = 0x1e
0x0020 SPLIM = 0x20
0x0020 _SPLIM = 0x20
0x0022 ACCAL = 0x22
0x0022 _ACCAL = 0x22
0x0024 ACCAH = 0x24
0x0024 _ACCAH = 0x24
0x0026 ACCAU = 0x26
0x0026 _ACCAU = 0x26
0x0028 ACCBL = 0x28
0x0028 _ACCBL = 0x28
0x002a ACCBH = 0x2a
0x002a _ACCBH = 0x2a
0x002c ACCBU = 0x2c
0x002c _ACCBU = 0x2c
0x002e PCL = 0x2e
0x002e _PCL = 0x2e
0x0030 PCH = 0x30
0x0030 _PCH = 0x30
0x0032 TBLPAG = 0x32
0x0032 _TBLPAG = 0x32
0x0034 PSVPAG = 0x34
0x0034 _PSVPAG = 0x34
0x0036 RCOUNT = 0x36
0x0036 _RCOUNT = 0x36
0x0038 DCOUNT = 0x38
0x0038 _DCOUNT = 0x38
0x003a DOSTARTL = 0x3a
0x003a _DOSTARTL = 0x3a
0x003c DOSTARTH = 0x3c
0x003c _DOSTARTH = 0x3c
0x003e DOENDL = 0x3e
0x003e _DOENDL = 0x3e
0x0040 DOENDH = 0x40
0x0040 _DOENDH = 0x40
0x0042 SR = 0x42
0x0042 _SR = 0x42
0x0042 _SRbits = 0x42
0x0044 CORCON = 0x44
0x0044 _CORCON = 0x44
0x0044 _CORCONbits = 0x44
0x0046 MODCON = 0x46
0x0046 _MODCON = 0x46
0x0046 _MODCONbits = 0x46
0x0048 XMODSRT = 0x48
0x0048 _XMODSRT = 0x48
0x004a XMODEND = 0x4a
0x004a _XMODEND = 0x4a
0x004c YMODSRT = 0x4c
0x004c _YMODSRT = 0x4c
0x004e YMODEND = 0x4e
0x004e _YMODEND = 0x4e
0x0050 XBREV = 0x50
0x0050 _XBREV = 0x50
0x0050 _XBREVbits = 0x50
0x0052 DISICNT = 0x52
0x0052 _DISICNT = 0x52
0x0060 CNEN1 = 0x60
0x0060 _CNEN1 = 0x60
0x0060 _CNEN1bits = 0x60
0x0062 CNEN2 = 0x62
0x0062 _CNEN2 = 0x62
0x0062 _CNEN2bits = 0x62
0x0068 CNPU1 = 0x68
0x0068 _CNPU1 = 0x68
0x0068 _CNPU1bits = 0x68
0x006a CNPU2 = 0x6a
0x006a _CNPU2 = 0x6a
0x006a _CNPU2bits = 0x6a
0x0080 INTCON1 = 0x80
0x0080 _INTCON1 = 0x80
0x0080 _INTCON1bits = 0x80
0x0082 INTCON2 = 0x82
0x0082 _INTCON2 = 0x82
0x0082 _INTCON2bits = 0x82
0x0084 IFS0 = 0x84
0x0084 _IFS0 = 0x84
0x0084 _IFS0bits = 0x84
0x0086 IFS1 = 0x86
0x0086 _IFS1 = 0x86
0x0086 _IFS1bits = 0x86
0x0088 IFS2 = 0x88
0x0088 _IFS2 = 0x88
0x0088 _IFS2bits = 0x88
0x008a IFS3 = 0x8a
0x008a _IFS3 = 0x8a
0x008a _IFS3bits = 0x8a
0x008c IFS4 = 0x8c
0x008c _IFS4 = 0x8c
0x008c _IFS4bits = 0x8c
0x0094 IEC0 = 0x94
0x0094 _IEC0 = 0x94
0x0094 _IEC0bits = 0x94
0x0096 IEC1 = 0x96
0x0096 _IEC1 = 0x96
0x0096 _IEC1bits = 0x96
0x0098 IEC2 = 0x98
0x0098 _IEC2 = 0x98
0x0098 _IEC2bits = 0x98
0x009a IEC3 = 0x9a
0x009a _IEC3 = 0x9a
0x009a _IEC3bits = 0x9a
0x009c IEC4 = 0x9c
0x009c _IEC4 = 0x9c
0x009c _IEC4bits = 0x9c
0x00a4 IPC0 = 0xa4
0x00a4 _IPC0 = 0xa4
0x00a4 _IPC0bits = 0xa4
0x00a6 IPC1 = 0xa6
0x00a6 _IPC1 = 0xa6
0x00a6 _IPC1bits = 0xa6
0x00a8 IPC2 = 0xa8
0x00a8 _IPC2 = 0xa8
0x00a8 _IPC2bits = 0xa8
0x00aa IPC3 = 0xaa
0x00aa _IPC3 = 0xaa
0x00aa _IPC3bits = 0xaa
0x00ac IPC4 = 0xac
0x00ac _IPC4 = 0xac
0x00ac _IPC4bits = 0xac
0x00ae IPC5 = 0xae
0x00ae _IPC5 = 0xae
0x00ae _IPC5bits = 0xae
0x00b0 IPC6 = 0xb0
0x00b0 _IPC6 = 0xb0
0x00b0 _IPC6bits = 0xb0
0x00b2 IPC7 = 0xb2
0x00b2 _IPC7 = 0xb2
0x00b2 _IPC7bits = 0xb2
0x00b4 IPC8 = 0xb4
0x00b4 _IPC8 = 0xb4
0x00b4 _IPC8bits = 0xb4
0x00b6 IPC9 = 0xb6
0x00b6 _IPC9 = 0xb6
0x00b6 _IPC9bits = 0xb6
0x00ba IPC11 = 0xba
0x00ba _IPC11 = 0xba
0x00ba _IPC11bits = 0xba
0x00c0 IPC14 = 0xc0
0x00c0 _IPC14 = 0xc0
0x00c0 _IPC14bits = 0xc0
0x00c2 IPC15 = 0xc2
0x00c2 _IPC15 = 0xc2
0x00c2 _IPC15bits = 0xc2
0x00c4 IPC16 = 0xc4
0x00c4 _IPC16 = 0xc4
0x00c4 _IPC16bits = 0xc4