-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString.map
2007 lines (1946 loc) · 140 KB
/
String.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
Archive member included because of file (symbol)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libpic30-coff.a(crt1.o)
(_resetALT)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libpic30-coff.a(crt0.o)
(_resetPRI)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(mulsf3.o)
collect.o (__mulsf3)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(addsf3.o)
collect.o (__subsf3)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fgtge.o)
collect.o (__gtsf2)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(feqltle.o)
collect.o (__ltsf2)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(funpack2.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(mulsf3.o) (_funpack2)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(futil.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(mulsf3.o) (_fPropagateNaN)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fpack.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(mulsf3.o) (_fpack)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fcompare.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fgtge.o) (_fcompare)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(funpack.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(funpack2.o) (_funpack)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(sprintf.io)
main.o (_isprintf)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(memcpy.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(sprintf.io) (memcpy)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(sprintf.io) (__iPrintf)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xvacopy.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io) (_Vacopy)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(strchr.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io) (strchr)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(isdigit.os)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io) (isdigit)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputfld.io)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io) (__iPutfld)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputtxt.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io) (_Puttxt)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xlitob.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputfld.io) (_Litob)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(strlen.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputfld.io) (strlen)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(memchr.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputfld.io) (memchr)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(negdi2.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xlitob.o) (__negdi2)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(divmoddi3.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xlitob.o) (__udivdi3)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(muldi3.o)
C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xlitob.o) (__muldi3)
Program Memory Usage
section address length (PC units) length (bytes) (dec)
------- ------- ----------------- --------------------
.reset 0 0x4 0x6 (6)
.ivt 0x4 0xfc 0x17a (378)
.aivt 0x104 0xfc 0x17a (378)
.text 0x200 0x213c 0x31da (12762)
.const 0x233c 0xe 0x15 (21)
.dinit 0x234a 0xe0 0x150 (336)
.isr 0x242a 0x2 0x3 (3)
__FBS 0xf80000 0x2 0x3 (3)
__FSS 0xf80002 0x2 0x3 (3)
__FGS 0xf80004 0x2 0x3 (3)
__FOSCSEL 0xf80006 0x2 0x3 (3)
__FOSC 0xf80008 0x2 0x3 (3)
__FWDT 0xf8000a 0x2 0x3 (3)
__FPOR 0xf8000c 0x2 0x3 (3)
Total program memory used (bytes): 0x3651 (13905) 21%
Data Memory Usage
section address alignment gaps total length (dec)
------- ------- -------------- -------------------
.nbss 0x800 0 0x1bc (444)
.ndata 0x9bc 0 0xd8 (216)
.ndata 0xa94 0 0x22 (34)
.ndata 0xab6 0 0x12 (18)
C:\Users\zwq\AppData\Local\Temp/cc04caaa.s.scn1 0x4780 0 0x40 (64)
.dconst 0x47c0 0 0x8 (8)
Total data memory used (bytes): 0x310 (784) 4%
Dynamic Memory Usage
region address maximum length (dec)
------ ------- ---------------------
heap 0 0 (0)
stack 0xac8 0x3cb8 (15544)
Maximum dynamic memory (bytes): 0x3cb8 (15544)
External Symbols in Data Memory (by address):
0x0800 _send_ascii
0x08fa _freq
0x0942 _lq
0x0944 _temp_freq
0x0954 _temp
0x0994 _Slave_Message_Count
0x0998 _canTxMessage
0x09aa _canRxMessage
0x09bc _MAIN_ID
0x09be _count_rx
0x09c0 _send_data
0x0a88 _flag_ascii_or_bin
0x0a8a _Tick_40S
0x0a8c _work_enable
0x0a8d _uart2_enable
0x0a8e _uart1_enable
0x0a90 _start_judge
0x0a92 _CAN_FLAG
0x4780 _ecan1msgBuf
External Symbols in Data Memory (by name):
0x0a92 _CAN_FLAG
0x09bc _MAIN_ID
0x0994 _Slave_Message_Count
0x0a8a _Tick_40S
0x09aa _canRxMessage
0x0998 _canTxMessage
0x09be _count_rx
0x4780 _ecan1msgBuf
0x0a88 _flag_ascii_or_bin
0x08fa _freq
0x0942 _lq
0x0800 _send_ascii
0x09c0 _send_data
0x0a90 _start_judge
0x0954 _temp
0x0944 _temp_freq
0x0a8e _uart1_enable
0x0a8d _uart2_enable
0x0a8c _work_enable
External Symbols in Program Memory (by address):
0x000204 __resetPRI
0x000284 sprintf.io:_prout
0x000290 __isprintf
0x0002b2 _memcpy
0x0002c0 ___iPrintf
0x00042a __Vacopy
0x00042e _strchr
0x00043e _isdigit
0x00044a ___iPutfld
0x000756 __Puttxt
0x0008f2 __Litob
0x000a56 _strlen
0x000a64 _memchr
0x000a76 ___mulsf3
0x000ade ___subsf3
0x000ae0 ___addsf3
0x000b9a ___gesf2
0x000b9a ___gtsf2
0x000b9e ___lesf2
0x000b9e ___ltsf2
0x000b9e ___eqsf2
0x000ba2 __funpack2
0x000bb2 __fPropagateNaN
0x000bc4 __fbopExit
0x000bcc __fbopReturnNaN
0x000bd2 __fpack
0x000c1e __fcompare
0x000c54 __funpack
0x000c7e ___negdi2
0x000cd0 ___udivmoddi3
0x000d9c ___udivdi3
0x000daa ___umoddi3
0x000db2 ___divdi3
0x000df2 ___moddi3
0x000eaa ___umuldi3
0x000eec ___muldi3
0x000f36 _DELAY
0x000f68 _UART2_Send
0x000f9c _UART1_Send
0x000fd0 __T6Interrupt
0x001024 __U1RXInterrupt
0x0010b2 __U2RXInterrupt
0x001262 __C1Interrupt
0x0012d2 _main
0x00184c _InitTimer6
0x001874 _StartTimer6
0x001880 _StopTimer6
0x001888 _InitTimer2
0x0018a8 _StartTimer2
0x0018c0 _StopTimer2
0x0018c8 _InitSCI
0x001926 _sendECAN
0x001af6 _rxECAN
0x001d04 _clearRxFlags
0x001d52 _initECAN
0x001e70 _initDMAECAN
0x001eaa _s_transstart
0x001f1c _s_connectionreset
0x001f5e _s_write_byte
0x001fee _s_read_byte
0x00209c _s_softreset
0x0020be _s_read_statusreg
0x0020ec _s_write_statusreg
0x002118 _s_measure
0x00224e _calc_sth11
0x00242a __DefaultInterrupt
External Symbols in Program Memory (by name):
0x000f36 _DELAY
0x0018c8 _InitSCI
0x001888 _InitTimer2
0x00184c _InitTimer6
0x0018a8 _StartTimer2
0x001874 _StartTimer6
0x0018c0 _StopTimer2
0x001880 _StopTimer6
0x000f9c _UART1_Send
0x000f68 _UART2_Send
0x001262 __C1Interrupt
0x00242a __DefaultInterrupt
0x0008f2 __Litob
0x000756 __Puttxt
0x000fd0 __T6Interrupt
0x001024 __U1RXInterrupt
0x0010b2 __U2RXInterrupt
0x00042a __Vacopy
0x000ae0 ___addsf3
0x000db2 ___divdi3
0x000b9e ___eqsf2
0x000b9a ___gesf2
0x000b9a ___gtsf2
0x0002c0 ___iPrintf
0x00044a ___iPutfld
0x000b9e ___lesf2
0x000b9e ___ltsf2
0x000df2 ___moddi3
0x000eec ___muldi3
0x000a76 ___mulsf3
0x000c7e ___negdi2
0x000ade ___subsf3
0x000d9c ___udivdi3
0x000cd0 ___udivmoddi3
0x000daa ___umoddi3
0x000eaa ___umuldi3
0x000bb2 __fPropagateNaN
0x000bc4 __fbopExit
0x000bcc __fbopReturnNaN
0x000c1e __fcompare
0x000bd2 __fpack
0x000c54 __funpack
0x000ba2 __funpack2
0x000290 __isprintf
0x000204 __resetPRI
0x00224e _calc_sth11
0x001d04 _clearRxFlags
0x001e70 _initDMAECAN
0x001d52 _initECAN
0x00043e _isdigit
0x0012d2 _main
0x000a64 _memchr
0x0002b2 _memcpy
0x001af6 _rxECAN
0x001f1c _s_connectionreset
0x002118 _s_measure
0x001fee _s_read_byte
0x0020be _s_read_statusreg
0x00209c _s_softreset
0x001eaa _s_transstart
0x001f5e _s_write_byte
0x0020ec _s_write_statusreg
0x001926 _sendECAN
0x00042e _strchr
0x000a56 _strlen
0x000284 sprintf.io:_prout
Memory Configuration
Name Origin Length Attributes
data 0x000800 0x004000 a !xr
reset 0x000000 0x000004
ivt 0x000004 0x0000fc
aivt 0x000104 0x0000fc
program 0x000200 0x00aa00 xr
FBS 0xf80000 0x000002
FSS 0xf80002 0x000002
FGS 0xf80004 0x000002
FOSCSEL 0xf80006 0x000002
FOSC 0xf80008 0x000002
FWDT 0xf8000a 0x000002
FPOR 0xf8000c 0x000002
CONFIG3 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 timer.o
LOAD sci.o
LOAD ecan.o
LOAD collect.o
0xf80000 __FBS = 0xf80000
0xf80002 __FSS = 0xf80002
0xf80004 __FGS = 0xf80004
0xf80006 __FOSCSEL = 0xf80006
0xf80008 __FOSC = 0xf80008
0xf8000a __FWDT = 0xf8000a
0xf8000c __FPOR = 0xf8000c
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 0x204 <code 336> (__reset)
0x000001 0x2 SHORT 0x4
0x000002 0x2 SHORT 0x0 ((<code 336> (__reset) >> 0x10) & 0x7f)
0x000003 0x2 SHORT 0x0
.text 0x000200 0x213c
*(.handle)
.handle 0x000200 0x4 jump_table
*(.libc)
.libc 0x000204 0x80 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libpic30-coff.a(crt0.o)
0x000204 _resetPRI
0x000204 _reset
0x000218 _psv_init
0x000228 _data_init
.libc 0x000284 0x2e C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(sprintf.io)
0x000284 sprintf.io:_prout
0x000290 _isprintf
.libc 0x0002b2 0xe C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(memcpy.o)
0x0002b2 memcpy
.libc 0x0002c0 0x16a C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xprintf.io)
0x0002c0 __iPrintf
.libc 0x00042a 0x4 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xvacopy.o)
0x00042a _Vacopy
.libc 0x00042e 0x10 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(strchr.o)
0x00042e strchr
.libc 0x00043e 0xc C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(isdigit.os)
0x00043e isdigit
.libc 0x00044a 0x30c C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputfld.io)
0x00044a __iPutfld
.libc 0x000756 0x19c C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xputtxt.o)
0x000756 _Puttxt
.libc 0x0008f2 0x164 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(xlitob.o)
0x0008f2 _Litob
.libc 0x000a56 0xe C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(strlen.o)
0x000a56 strlen
.libc 0x000a64 0x12 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libc-coff.a(memchr.o)
0x000a64 memchr
*(.libm)
.libm 0x000a76 0x68 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(mulsf3.o)
0x000a76 __mulsf3
.libm 0x000ade 0xbc C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(addsf3.o)
0x000ade __subsf3
0x000ae0 __addsf3
.libm 0x000b9a 0x4 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fgtge.o)
0x000b9a __gesf2
0x000b9a __gtsf2
.libm 0x000b9e 0x4 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(feqltle.o)
0x000b9e __eqsf2
0x000b9e __ltsf2
0x000b9e __lesf2
.libm 0x000ba2 0x10 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(funpack2.o)
0x000ba2 _funpack2
.libm 0x000bb2 0x20 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(futil.o)
0x000bb2 _fPropagateNaN
0x000bc4 _fbopExit
0x000bcc _fbopReturnNaN
.libm 0x000bd2 0x4c C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fpack.o)
0x000bd2 _fpack
.libm 0x000c1e 0x36 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(fcompare.o)
0x000c1e _fcompare
.libm 0x000c54 0x2a C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(funpack.o)
0x000c54 _funpack
.libm 0x000c7e 0xa C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(negdi2.o)
0x000c7e __negdi2
.libm 0x000c88 0x222 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(divmoddi3.o)
0x000cd0 __udivmoddi3
0x000d9c __udivdi3
0x000daa __umoddi3
0x000db2 __divdi3
0x000df2 __moddi3
.libm 0x000eaa 0x8c C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libm-coff.a(muldi3.o)
0x000eaa __umuldi3
0x000eec __muldi3
*(.libdsp)
*(.lib*)
*(.text)
.text 0x000f36 0x916 main.o
0x000f36 DELAY
0x000f68 UART2_Send
0x000f9c UART1_Send
0x000fd0 _T6Interrupt
0x001024 _U1RXInterrupt
0x0010b2 _U2RXInterrupt
0x001262 _C1Interrupt
0x0012d2 main
.text 0x00184c 0x7c timer.o
0x00184c InitTimer6
0x001874 StartTimer6
0x001880 StopTimer6
0x001888 InitTimer2
0x0018a8 StartTimer2
0x0018c0 StopTimer2
.text 0x0018c8 0x5e sci.o
0x0018c8 InitSCI
.text 0x001926 0x584 ecan.o
0x001926 sendECAN
0x001af6 rxECAN
0x001d04 clearRxFlags
0x001d52 initECAN
0x001e70 initDMAECAN
.text 0x001eaa 0x492 collect.o
0x001eaa s_transstart
0x001f1c s_connectionreset
0x001f5e s_write_byte
0x001fee s_read_byte
0x00209c s_softreset
0x0020be s_read_statusreg
0x0020ec s_write_statusreg
0x002118 s_measure
0x00224e calc_sth11
__FBS 0xf80000 0x2
*(__FBS.sec)
__FBS.sec 0xf80000 0x2 main.o
__FSS 0xf80002 0x2
*(__FSS.sec)
__FSS.sec 0xf80002 0x2 main.o
__FGS 0xf80004 0x2
*(__FGS.sec)
__FGS.sec 0xf80004 0x2 main.o
__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
__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 0x242a DEFINED (__ReservedTrap0)?<code 336> (__ReservedTrap0):<code 336> (__DefaultInterrupt)
0x000006 0x4 LONG 0x242a DEFINED (__OscillatorFail)?<code 336> (__OscillatorFail):<code 336> (__DefaultInterrupt)
0x000008 0x4 LONG 0x242a DEFINED (__AddressError)?<code 336> (__AddressError):<code 336> (__DefaultInterrupt)
0x00000a 0x4 LONG 0x242a DEFINED (__StackError)?<code 336> (__StackError):<code 336> (__DefaultInterrupt)
0x00000c 0x4 LONG 0x242a DEFINED (__MathError)?<code 336> (__MathError):<code 336> (__DefaultInterrupt)
0x00000e 0x4 LONG 0x242a DEFINED (__DMACError)?<code 336> (__DMACError):<code 336> (__DefaultInterrupt)
0x000010 0x4 LONG 0x242a DEFINED (__ReservedTrap6)?<code 336> (__ReservedTrap6):<code 336> (__DefaultInterrupt)
0x000012 0x4 LONG 0x242a DEFINED (__ReservedTrap7)?<code 336> (__ReservedTrap7):<code 336> (__DefaultInterrupt)
0x000014 0x4 LONG 0x242a DEFINED (__INT0Interrupt)?<code 336> (__INT0Interrupt):<code 336> (__DefaultInterrupt)
0x000016 0x4 LONG 0x242a DEFINED (__IC1Interrupt)?<code 336> (__IC1Interrupt):<code 336> (__DefaultInterrupt)
0x000018 0x4 LONG 0x242a DEFINED (__OC1Interrupt)?<code 336> (__OC1Interrupt):<code 336> (__DefaultInterrupt)
0x00001a 0x4 LONG 0x242a DEFINED (__T1Interrupt)?<code 336> (__T1Interrupt):<code 336> (__DefaultInterrupt)
0x00001c 0x4 LONG 0x242a DEFINED (__DMA0Interrupt)?<code 336> (__DMA0Interrupt):<code 336> (__DefaultInterrupt)
0x00001e 0x4 LONG 0x242a DEFINED (__IC2Interrupt)?<code 336> (__IC2Interrupt):<code 336> (__DefaultInterrupt)
0x000020 0x4 LONG 0x242a DEFINED (__OC2Interrupt)?<code 336> (__OC2Interrupt):<code 336> (__DefaultInterrupt)
0x000022 0x4 LONG 0x242a DEFINED (__T2Interrupt)?<code 336> (__T2Interrupt):<code 336> (__DefaultInterrupt)
0x000024 0x4 LONG 0x242a DEFINED (__T3Interrupt)?<code 336> (__T3Interrupt):<code 336> (__DefaultInterrupt)
0x000026 0x4 LONG 0x242a DEFINED (__SPI1ErrInterrupt)?<code 336> (__SPI1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000028 0x4 LONG 0x242a DEFINED (__SPI1Interrupt)?<code 336> (__SPI1Interrupt):<code 336> (__DefaultInterrupt)
0x00002a 0x4 LONG 0x1024 DEFINED (__U1RXInterrupt)?<code 336> (__U1RXInterrupt):<code 336> (__DefaultInterrupt)
0x00002c 0x4 LONG 0x242a DEFINED (__U1TXInterrupt)?<code 336> (__U1TXInterrupt):<code 336> (__DefaultInterrupt)
0x00002e 0x4 LONG 0x242a DEFINED (__ADC1Interrupt)?<code 336> (__ADC1Interrupt):<code 336> (__DefaultInterrupt)
0x000030 0x4 LONG 0x242a DEFINED (__DMA1Interrupt)?<code 336> (__DMA1Interrupt):<code 336> (__DefaultInterrupt)
0x000032 0x4 LONG 0x242a DEFINED (__Interrupt15)?<code 336> (__Interrupt15):<code 336> (__DefaultInterrupt)
0x000034 0x4 LONG 0x242a DEFINED (__SI2C1Interrupt)?<code 336> (__SI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000036 0x4 LONG 0x242a DEFINED (__MI2C1Interrupt)?<code 336> (__MI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000038 0x4 LONG 0x242a DEFINED (__Interrupt18)?<code 336> (__Interrupt18):<code 336> (__DefaultInterrupt)
0x00003a 0x4 LONG 0x242a DEFINED (__CNInterrupt)?<code 336> (__CNInterrupt):<code 336> (__DefaultInterrupt)
0x00003c 0x4 LONG 0x242a DEFINED (__INT1Interrupt)?<code 336> (__INT1Interrupt):<code 336> (__DefaultInterrupt)
0x00003e 0x4 LONG 0x242a DEFINED (__ADC2Interrupt)?<code 336> (__ADC2Interrupt):<code 336> (__DefaultInterrupt)
0x000040 0x4 LONG 0x242a DEFINED (__IC7Interrupt)?<code 336> (__IC7Interrupt):<code 336> (__DefaultInterrupt)
0x000042 0x4 LONG 0x242a DEFINED (__IC8Interrupt)?<code 336> (__IC8Interrupt):<code 336> (__DefaultInterrupt)
0x000044 0x4 LONG 0x242a DEFINED (__DMA2Interrupt)?<code 336> (__DMA2Interrupt):<code 336> (__DefaultInterrupt)
0x000046 0x4 LONG 0x242a DEFINED (__OC3Interrupt)?<code 336> (__OC3Interrupt):<code 336> (__DefaultInterrupt)
0x000048 0x4 LONG 0x242a DEFINED (__OC4Interrupt)?<code 336> (__OC4Interrupt):<code 336> (__DefaultInterrupt)
0x00004a 0x4 LONG 0x242a DEFINED (__T4Interrupt)?<code 336> (__T4Interrupt):<code 336> (__DefaultInterrupt)
0x00004c 0x4 LONG 0x242a DEFINED (__T5Interrupt)?<code 336> (__T5Interrupt):<code 336> (__DefaultInterrupt)
0x00004e 0x4 LONG 0x242a DEFINED (__INT2Interrupt)?<code 336> (__INT2Interrupt):<code 336> (__DefaultInterrupt)
0x000050 0x4 LONG 0x10b2 DEFINED (__U2RXInterrupt)?<code 336> (__U2RXInterrupt):<code 336> (__DefaultInterrupt)
0x000052 0x4 LONG 0x242a DEFINED (__U2TXInterrupt)?<code 336> (__U2TXInterrupt):<code 336> (__DefaultInterrupt)
0x000054 0x4 LONG 0x242a DEFINED (__SPI2ErrInterrupt)?<code 336> (__SPI2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000056 0x4 LONG 0x242a DEFINED (__SPI2Interrupt)?<code 336> (__SPI2Interrupt):<code 336> (__DefaultInterrupt)
0x000058 0x4 LONG 0x242a DEFINED (__C1RxRdyInterrupt)?<code 336> (__C1RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x00005a 0x4 LONG 0x1262 DEFINED (__C1Interrupt)?<code 336> (__C1Interrupt):<code 336> (__DefaultInterrupt)
0x00005c 0x4 LONG 0x242a DEFINED (__DMA3Interrupt)?<code 336> (__DMA3Interrupt):<code 336> (__DefaultInterrupt)
0x00005e 0x4 LONG 0x242a DEFINED (__IC3Interrupt)?<code 336> (__IC3Interrupt):<code 336> (__DefaultInterrupt)
0x000060 0x4 LONG 0x242a DEFINED (__IC4Interrupt)?<code 336> (__IC4Interrupt):<code 336> (__DefaultInterrupt)
0x000062 0x4 LONG 0x242a DEFINED (__IC5Interrupt)?<code 336> (__IC5Interrupt):<code 336> (__DefaultInterrupt)
0x000064 0x4 LONG 0x242a DEFINED (__IC6Interrupt)?<code 336> (__IC6Interrupt):<code 336> (__DefaultInterrupt)
0x000066 0x4 LONG 0x242a DEFINED (__OC5Interrupt)?<code 336> (__OC5Interrupt):<code 336> (__DefaultInterrupt)
0x000068 0x4 LONG 0x242a DEFINED (__OC6Interrupt)?<code 336> (__OC6Interrupt):<code 336> (__DefaultInterrupt)
0x00006a 0x4 LONG 0x242a DEFINED (__OC7Interrupt)?<code 336> (__OC7Interrupt):<code 336> (__DefaultInterrupt)
0x00006c 0x4 LONG 0x242a DEFINED (__OC8Interrupt)?<code 336> (__OC8Interrupt):<code 336> (__DefaultInterrupt)
0x00006e 0x4 LONG 0x242a DEFINED (__Interrupt45)?<code 336> (__Interrupt45):<code 336> (__DefaultInterrupt)
0x000070 0x4 LONG 0x242a DEFINED (__DMA4Interrupt)?<code 336> (__DMA4Interrupt):<code 336> (__DefaultInterrupt)
0x000072 0x4 LONG 0xfd0 DEFINED (__T6Interrupt)?<code 336> (__T6Interrupt):<code 336> (__DefaultInterrupt)
0x000074 0x4 LONG 0x242a DEFINED (__T7Interrupt)?<code 336> (__T7Interrupt):<code 336> (__DefaultInterrupt)
0x000076 0x4 LONG 0x242a DEFINED (__SI2C2Interrupt)?<code 336> (__SI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x000078 0x4 LONG 0x242a DEFINED (__MI2C2Interrupt)?<code 336> (__MI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x00007a 0x4 LONG 0x242a DEFINED (__T8Interrupt)?<code 336> (__T8Interrupt):<code 336> (__DefaultInterrupt)
0x00007c 0x4 LONG 0x242a DEFINED (__T9Interrupt)?<code 336> (__T9Interrupt):<code 336> (__DefaultInterrupt)
0x00007e 0x4 LONG 0x242a DEFINED (__INT3Interrupt)?<code 336> (__INT3Interrupt):<code 336> (__DefaultInterrupt)
0x000080 0x4 LONG 0x242a DEFINED (__INT4Interrupt)?<code 336> (__INT4Interrupt):<code 336> (__DefaultInterrupt)
0x000082 0x4 LONG 0x242a DEFINED (__C2RxRdyInterrupt)?<code 336> (__C2RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x000084 0x4 LONG 0x242a DEFINED (__C2Interrupt)?<code 336> (__C2Interrupt):<code 336> (__DefaultInterrupt)
0x000086 0x4 LONG 0x242a DEFINED (__Interrupt57)?<code 336> (__Interrupt57):<code 336> (__DefaultInterrupt)
0x000088 0x4 LONG 0x242a DEFINED (__Interrupt58)?<code 336> (__Interrupt58):<code 336> (__DefaultInterrupt)
0x00008a 0x4 LONG 0x242a DEFINED (__DCIErrInterrupt)?<code 336> (__DCIErrInterrupt):<code 336> (__DefaultInterrupt)
0x00008c 0x4 LONG 0x242a DEFINED (__DCIInterrupt)?<code 336> (__DCIInterrupt):<code 336> (__DefaultInterrupt)
0x00008e 0x4 LONG 0x242a DEFINED (__DMA5Interrupt)?<code 336> (__DMA5Interrupt):<code 336> (__DefaultInterrupt)
0x000090 0x4 LONG 0x242a DEFINED (__Interrupt62)?<code 336> (__Interrupt62):<code 336> (__DefaultInterrupt)
0x000092 0x4 LONG 0x242a DEFINED (__Interrupt63)?<code 336> (__Interrupt63):<code 336> (__DefaultInterrupt)
0x000094 0x4 LONG 0x242a DEFINED (__Interrupt64)?<code 336> (__Interrupt64):<code 336> (__DefaultInterrupt)
0x000096 0x4 LONG 0x242a DEFINED (__U1ErrInterrupt)?<code 336> (__U1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000098 0x4 LONG 0x242a DEFINED (__U2ErrInterrupt)?<code 336> (__U2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x00009a 0x4 LONG 0x242a DEFINED (__Interrupt68)?<code 336> (__Interrupt68):<code 336> (__DefaultInterrupt)
0x00009c 0x4 LONG 0x242a DEFINED (__DMA6Interrupt)?<code 336> (__DMA6Interrupt):<code 336> (__DefaultInterrupt)
0x00009e 0x4 LONG 0x242a DEFINED (__DMA7Interrupt)?<code 336> (__DMA7Interrupt):<code 336> (__DefaultInterrupt)
0x0000a0 0x4 LONG 0x242a DEFINED (__C1TxReqInterrupt)?<code 336> (__C1TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0000a2 0x4 LONG 0x242a DEFINED (__C2TxReqInterrupt)?<code 336> (__C2TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0000a4 0x4 LONG 0x242a DEFINED (__Interrupt72)?<code 336> (__Interrupt72):<code 336> (__DefaultInterrupt)
0x0000a6 0x4 LONG 0x242a DEFINED (__Interrupt73)?<code 336> (__Interrupt73):<code 336> (__DefaultInterrupt)
0x0000a8 0x4 LONG 0x242a DEFINED (__Interrupt74)?<code 336> (__Interrupt74):<code 336> (__DefaultInterrupt)
0x0000aa 0x4 LONG 0x242a DEFINED (__Interrupt75)?<code 336> (__Interrupt75):<code 336> (__DefaultInterrupt)
0x0000ac 0x4 LONG 0x242a DEFINED (__Interrupt76)?<code 336> (__Interrupt76):<code 336> (__DefaultInterrupt)
0x0000ae 0x4 LONG 0x242a DEFINED (__Interrupt77)?<code 336> (__Interrupt77):<code 336> (__DefaultInterrupt)
0x0000b0 0x4 LONG 0x242a DEFINED (__Interrupt78)?<code 336> (__Interrupt78):<code 336> (__DefaultInterrupt)
0x0000b2 0x4 LONG 0x242a DEFINED (__Interrupt79)?<code 336> (__Interrupt79):<code 336> (__DefaultInterrupt)
0x0000b4 0x4 LONG 0x242a DEFINED (__Interrupt80)?<code 336> (__Interrupt80):<code 336> (__DefaultInterrupt)
0x0000b6 0x4 LONG 0x242a DEFINED (__Interrupt81)?<code 336> (__Interrupt81):<code 336> (__DefaultInterrupt)
0x0000b8 0x4 LONG 0x242a DEFINED (__Interrupt82)?<code 336> (__Interrupt82):<code 336> (__DefaultInterrupt)
0x0000ba 0x4 LONG 0x242a DEFINED (__Interrupt83)?<code 336> (__Interrupt83):<code 336> (__DefaultInterrupt)
0x0000bc 0x4 LONG 0x242a DEFINED (__Interrupt84)?<code 336> (__Interrupt84):<code 336> (__DefaultInterrupt)
0x0000be 0x4 LONG 0x242a DEFINED (__Interrupt85)?<code 336> (__Interrupt85):<code 336> (__DefaultInterrupt)
0x0000c0 0x4 LONG 0x242a DEFINED (__Interrupt86)?<code 336> (__Interrupt86):<code 336> (__DefaultInterrupt)
0x0000c2 0x4 LONG 0x242a DEFINED (__Interrupt87)?<code 336> (__Interrupt87):<code 336> (__DefaultInterrupt)
0x0000c4 0x4 LONG 0x242a DEFINED (__Interrupt88)?<code 336> (__Interrupt88):<code 336> (__DefaultInterrupt)
0x0000c6 0x4 LONG 0x242a DEFINED (__Interrupt89)?<code 336> (__Interrupt89):<code 336> (__DefaultInterrupt)
0x0000c8 0x4 LONG 0x242a DEFINED (__Interrupt90)?<code 336> (__Interrupt90):<code 336> (__DefaultInterrupt)
0x0000ca 0x4 LONG 0x242a DEFINED (__Interrupt91)?<code 336> (__Interrupt91):<code 336> (__DefaultInterrupt)
0x0000cc 0x4 LONG 0x242a DEFINED (__Interrupt92)?<code 336> (__Interrupt92):<code 336> (__DefaultInterrupt)
0x0000ce 0x4 LONG 0x242a DEFINED (__Interrupt93)?<code 336> (__Interrupt93):<code 336> (__DefaultInterrupt)
0x0000d0 0x4 LONG 0x242a DEFINED (__Interrupt94)?<code 336> (__Interrupt94):<code 336> (__DefaultInterrupt)
0x0000d2 0x4 LONG 0x242a DEFINED (__Interrupt95)?<code 336> (__Interrupt95):<code 336> (__DefaultInterrupt)
0x0000d4 0x4 LONG 0x242a DEFINED (__Interrupt96)?<code 336> (__Interrupt96):<code 336> (__DefaultInterrupt)
0x0000d6 0x4 LONG 0x242a DEFINED (__Interrupt97)?<code 336> (__Interrupt97):<code 336> (__DefaultInterrupt)
0x0000d8 0x4 LONG 0x242a DEFINED (__Interrupt98)?<code 336> (__Interrupt98):<code 336> (__DefaultInterrupt)
0x0000da 0x4 LONG 0x242a DEFINED (__Interrupt99)?<code 336> (__Interrupt99):<code 336> (__DefaultInterrupt)
0x0000dc 0x4 LONG 0x242a DEFINED (__Interrupt100)?<code 336> (__Interrupt100):<code 336> (__DefaultInterrupt)
0x0000de 0x4 LONG 0x242a DEFINED (__Interrupt101)?<code 336> (__Interrupt101):<code 336> (__DefaultInterrupt)
0x0000e0 0x4 LONG 0x242a DEFINED (__Interrupt102)?<code 336> (__Interrupt102):<code 336> (__DefaultInterrupt)
0x0000e2 0x4 LONG 0x242a DEFINED (__Interrupt103)?<code 336> (__Interrupt103):<code 336> (__DefaultInterrupt)
0x0000e4 0x4 LONG 0x242a DEFINED (__Interrupt104)?<code 336> (__Interrupt104):<code 336> (__DefaultInterrupt)
0x0000e6 0x4 LONG 0x242a DEFINED (__Interrupt105)?<code 336> (__Interrupt105):<code 336> (__DefaultInterrupt)
0x0000e8 0x4 LONG 0x242a DEFINED (__Interrupt106)?<code 336> (__Interrupt106):<code 336> (__DefaultInterrupt)
0x0000ea 0x4 LONG 0x242a DEFINED (__Interrupt107)?<code 336> (__Interrupt107):<code 336> (__DefaultInterrupt)
0x0000ec 0x4 LONG 0x242a DEFINED (__Interrupt108)?<code 336> (__Interrupt108):<code 336> (__DefaultInterrupt)
0x0000ee 0x4 LONG 0x242a DEFINED (__Interrupt109)?<code 336> (__Interrupt109):<code 336> (__DefaultInterrupt)
0x0000f0 0x4 LONG 0x242a DEFINED (__Interrupt110)?<code 336> (__Interrupt110):<code 336> (__DefaultInterrupt)
0x0000f2 0x4 LONG 0x242a DEFINED (__Interrupt111)?<code 336> (__Interrupt111):<code 336> (__DefaultInterrupt)
0x0000f4 0x4 LONG 0x242a DEFINED (__Interrupt112)?<code 336> (__Interrupt112):<code 336> (__DefaultInterrupt)
0x0000f6 0x4 LONG 0x242a DEFINED (__Interrupt113)?<code 336> (__Interrupt113):<code 336> (__DefaultInterrupt)
0x0000f8 0x4 LONG 0x242a DEFINED (__Interrupt114)?<code 336> (__Interrupt114):<code 336> (__DefaultInterrupt)
0x0000fa 0x4 LONG 0x242a DEFINED (__Interrupt115)?<code 336> (__Interrupt115):<code 336> (__DefaultInterrupt)
0x0000fc 0x4 LONG 0x242a DEFINED (__Interrupt116)?<code 336> (__Interrupt116):<code 336> (__DefaultInterrupt)
0x0000fe 0x4 LONG 0x242a DEFINED (__Interrupt117)?<code 336> (__Interrupt117):<code 336> (__DefaultInterrupt)
.aivt 0x000104 0xfc
0x000104 0x4 LONG 0x242a DEFINED (__AltReservedTrap0)?<code 336> (__AltReservedTrap0):DEFINED (__ReservedTrap0)?<code 336> (__ReservedTrap0):<code 336> (__DefaultInterrupt)
0x000106 0x4 LONG 0x242a DEFINED (__AltOscillatorFail)?<code 336> (__AltOscillatorFail):DEFINED (__OscillatorFail)?<code 336> (__OscillatorFail):<code 336> (__DefaultInterrupt)
0x000108 0x4 LONG 0x242a DEFINED (__AltAddressError)?<code 336> (__AltAddressError):DEFINED (__AddressError)?<code 336> (__AddressError):<code 336> (__DefaultInterrupt)
0x00010a 0x4 LONG 0x242a DEFINED (__AltStackError)?<code 336> (__AltStackError):DEFINED (__StackError)?<code 336> (__StackError):<code 336> (__DefaultInterrupt)
0x00010c 0x4 LONG 0x242a DEFINED (__AltMathError)?<code 336> (__AltMathError):DEFINED (__MathError)?<code 336> (__MathError):<code 336> (__DefaultInterrupt)
0x00010e 0x4 LONG 0x242a DEFINED (__AltDMACError)?<code 336> (__AltDMACError):DEFINED (__DMACError)?<code 336> (__DMACError):<code 336> (__DefaultInterrupt)
0x000110 0x4 LONG 0x242a DEFINED (__AltReservedTrap6)?<code 336> (__AltReservedTrap6):DEFINED (__ReservedTrap6)?<code 336> (__ReservedTrap6):<code 336> (__DefaultInterrupt)
0x000112 0x4 LONG 0x242a DEFINED (__AltReservedTrap7)?<code 336> (__AltReservedTrap7):DEFINED (__ReservedTrap7)?<code 336> (__ReservedTrap7):<code 336> (__DefaultInterrupt)
0x000114 0x4 LONG 0x242a DEFINED (__AltINT0Interrupt)?<code 336> (__AltINT0Interrupt):DEFINED (__INT0Interrupt)?<code 336> (__INT0Interrupt):<code 336> (__DefaultInterrupt)
0x000116 0x4 LONG 0x242a DEFINED (__AltIC1Interrupt)?<code 336> (__AltIC1Interrupt):DEFINED (__IC1Interrupt)?<code 336> (__IC1Interrupt):<code 336> (__DefaultInterrupt)
0x000118 0x4 LONG 0x242a DEFINED (__AltOC1Interrupt)?<code 336> (__AltOC1Interrupt):DEFINED (__OC1Interrupt)?<code 336> (__OC1Interrupt):<code 336> (__DefaultInterrupt)
0x00011a 0x4 LONG 0x242a DEFINED (__AltT1Interrupt)?<code 336> (__AltT1Interrupt):DEFINED (__T1Interrupt)?<code 336> (__T1Interrupt):<code 336> (__DefaultInterrupt)
0x00011c 0x4 LONG 0x242a DEFINED (__AltDMA0Interrupt)?<code 336> (__AltDMA0Interrupt):DEFINED (__DMA0Interrupt)?<code 336> (__DMA0Interrupt):<code 336> (__DefaultInterrupt)
0x00011e 0x4 LONG 0x242a DEFINED (__AltIC2Interrupt)?<code 336> (__AltIC2Interrupt):DEFINED (__IC2Interrupt)?<code 336> (__IC2Interrupt):<code 336> (__DefaultInterrupt)
0x000120 0x4 LONG 0x242a DEFINED (__AltOC2Interrupt)?<code 336> (__AltOC2Interrupt):DEFINED (__OC2Interrupt)?<code 336> (__OC2Interrupt):<code 336> (__DefaultInterrupt)
0x000122 0x4 LONG 0x242a DEFINED (__AltT2Interrupt)?<code 336> (__AltT2Interrupt):DEFINED (__T2Interrupt)?<code 336> (__T2Interrupt):<code 336> (__DefaultInterrupt)
0x000124 0x4 LONG 0x242a DEFINED (__AltT3Interrupt)?<code 336> (__AltT3Interrupt):DEFINED (__T3Interrupt)?<code 336> (__T3Interrupt):<code 336> (__DefaultInterrupt)
0x000126 0x4 LONG 0x242a DEFINED (__AltSPI1ErrInterrupt)?<code 336> (__AltSPI1ErrInterrupt):DEFINED (__SPI1ErrInterrupt)?<code 336> (__SPI1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000128 0x4 LONG 0x242a DEFINED (__AltSPI1Interrupt)?<code 336> (__AltSPI1Interrupt):DEFINED (__SPI1Interrupt)?<code 336> (__SPI1Interrupt):<code 336> (__DefaultInterrupt)
0x00012a 0x4 LONG 0x1024 DEFINED (__AltU1RXInterrupt)?<code 336> (__AltU1RXInterrupt):DEFINED (__U1RXInterrupt)?<code 336> (__U1RXInterrupt):<code 336> (__DefaultInterrupt)
0x00012c 0x4 LONG 0x242a DEFINED (__AltU1TXInterrupt)?<code 336> (__AltU1TXInterrupt):DEFINED (__U1TXInterrupt)?<code 336> (__U1TXInterrupt):<code 336> (__DefaultInterrupt)
0x00012e 0x4 LONG 0x242a DEFINED (__AltADC1Interrupt)?<code 336> (__AltADC1Interrupt):DEFINED (__ADC1Interrupt)?<code 336> (__ADC1Interrupt):<code 336> (__DefaultInterrupt)
0x000130 0x4 LONG 0x242a DEFINED (__AltDMA1Interrupt)?<code 336> (__AltDMA1Interrupt):DEFINED (__DMA1Interrupt)?<code 336> (__DMA1Interrupt):<code 336> (__DefaultInterrupt)
0x000132 0x4 LONG 0x242a DEFINED (__AltInterrupt15)?<code 336> (__AltInterrupt15):DEFINED (__Interrupt15)?<code 336> (__Interrupt15):<code 336> (__DefaultInterrupt)
0x000134 0x4 LONG 0x242a DEFINED (__AltSI2C1Interrupt)?<code 336> (__AltSI2C1Interrupt):DEFINED (__SI2C1Interrupt)?<code 336> (__SI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000136 0x4 LONG 0x242a DEFINED (__AltMI2C1Interrupt)?<code 336> (__AltMI2C1Interrupt):DEFINED (__MI2C1Interrupt)?<code 336> (__MI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000138 0x4 LONG 0x242a DEFINED (__AltInterrupt18)?<code 336> (__AltInterrupt18):DEFINED (__Interrupt18)?<code 336> (__Interrupt18):<code 336> (__DefaultInterrupt)
0x00013a 0x4 LONG 0x242a DEFINED (__AltCNInterrupt)?<code 336> (__AltCNInterrupt):DEFINED (__CNInterrupt)?<code 336> (__CNInterrupt):<code 336> (__DefaultInterrupt)
0x00013c 0x4 LONG 0x242a DEFINED (__AltINT1Interrupt)?<code 336> (__AltINT1Interrupt):DEFINED (__INT1Interrupt)?<code 336> (__INT1Interrupt):<code 336> (__DefaultInterrupt)
0x00013e 0x4 LONG 0x242a DEFINED (__AltADC2Interrupt)?<code 336> (__AltADC2Interrupt):DEFINED (__ADC2Interrupt)?<code 336> (__ADC2Interrupt):<code 336> (__DefaultInterrupt)
0x000140 0x4 LONG 0x242a DEFINED (__AltIC7Interrupt)?<code 336> (__AltIC7Interrupt):DEFINED (__IC7Interrupt)?<code 336> (__IC7Interrupt):<code 336> (__DefaultInterrupt)
0x000142 0x4 LONG 0x242a DEFINED (__AltIC8Interrupt)?<code 336> (__AltIC8Interrupt):DEFINED (__IC8Interrupt)?<code 336> (__IC8Interrupt):<code 336> (__DefaultInterrupt)
0x000144 0x4 LONG 0x242a DEFINED (__AltDMA2Interrupt)?<code 336> (__AltDMA2Interrupt):DEFINED (__DMA2Interrupt)?<code 336> (__DMA2Interrupt):<code 336> (__DefaultInterrupt)
0x000146 0x4 LONG 0x242a DEFINED (__AltOC3Interrupt)?<code 336> (__AltOC3Interrupt):DEFINED (__OC3Interrupt)?<code 336> (__OC3Interrupt):<code 336> (__DefaultInterrupt)
0x000148 0x4 LONG 0x242a DEFINED (__AltOC4Interrupt)?<code 336> (__AltOC4Interrupt):DEFINED (__OC4Interrupt)?<code 336> (__OC4Interrupt):<code 336> (__DefaultInterrupt)
0x00014a 0x4 LONG 0x242a DEFINED (__AltT4Interrupt)?<code 336> (__AltT4Interrupt):DEFINED (__T4Interrupt)?<code 336> (__T4Interrupt):<code 336> (__DefaultInterrupt)
0x00014c 0x4 LONG 0x242a DEFINED (__AltT5Interrupt)?<code 336> (__AltT5Interrupt):DEFINED (__T5Interrupt)?<code 336> (__T5Interrupt):<code 336> (__DefaultInterrupt)
0x00014e 0x4 LONG 0x242a DEFINED (__AltINT2Interrupt)?<code 336> (__AltINT2Interrupt):DEFINED (__INT2Interrupt)?<code 336> (__INT2Interrupt):<code 336> (__DefaultInterrupt)
0x000150 0x4 LONG 0x10b2 DEFINED (__AltU2RXInterrupt)?<code 336> (__AltU2RXInterrupt):DEFINED (__U2RXInterrupt)?<code 336> (__U2RXInterrupt):<code 336> (__DefaultInterrupt)
0x000152 0x4 LONG 0x242a DEFINED (__AltU2TXInterrupt)?<code 336> (__AltU2TXInterrupt):DEFINED (__U2TXInterrupt)?<code 336> (__U2TXInterrupt):<code 336> (__DefaultInterrupt)
0x000154 0x4 LONG 0x242a DEFINED (__AltSPI2ErrInterrupt)?<code 336> (__AltSPI2ErrInterrupt):DEFINED (__SPI2ErrInterrupt)?<code 336> (__SPI2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000156 0x4 LONG 0x242a DEFINED (__AltSPI2Interrupt)?<code 336> (__AltSPI2Interrupt):DEFINED (__SPI2Interrupt)?<code 336> (__SPI2Interrupt):<code 336> (__DefaultInterrupt)
0x000158 0x4 LONG 0x242a DEFINED (__AltC1RxRdyInterrupt)?<code 336> (__AltC1RxRdyInterrupt):DEFINED (__C1RxRdyInterrupt)?<code 336> (__C1RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x00015a 0x4 LONG 0x1262 DEFINED (__AltC1Interrupt)?<code 336> (__AltC1Interrupt):DEFINED (__C1Interrupt)?<code 336> (__C1Interrupt):<code 336> (__DefaultInterrupt)
0x00015c 0x4 LONG 0x242a DEFINED (__AltDMA3Interrupt)?<code 336> (__AltDMA3Interrupt):DEFINED (__DMA3Interrupt)?<code 336> (__DMA3Interrupt):<code 336> (__DefaultInterrupt)
0x00015e 0x4 LONG 0x242a DEFINED (__AltIC3Interrupt)?<code 336> (__AltIC3Interrupt):DEFINED (__IC3Interrupt)?<code 336> (__IC3Interrupt):<code 336> (__DefaultInterrupt)
0x000160 0x4 LONG 0x242a DEFINED (__AltIC4Interrupt)?<code 336> (__AltIC4Interrupt):DEFINED (__IC4Interrupt)?<code 336> (__IC4Interrupt):<code 336> (__DefaultInterrupt)
0x000162 0x4 LONG 0x242a DEFINED (__AltIC5Interrupt)?<code 336> (__AltIC5Interrupt):DEFINED (__IC5Interrupt)?<code 336> (__IC5Interrupt):<code 336> (__DefaultInterrupt)
0x000164 0x4 LONG 0x242a DEFINED (__AltIC6Interrupt)?<code 336> (__AltIC6Interrupt):DEFINED (__IC6Interrupt)?<code 336> (__IC6Interrupt):<code 336> (__DefaultInterrupt)
0x000166 0x4 LONG 0x242a DEFINED (__AltOC5Interrupt)?<code 336> (__AltOC5Interrupt):DEFINED (__OC5Interrupt)?<code 336> (__OC5Interrupt):<code 336> (__DefaultInterrupt)
0x000168 0x4 LONG 0x242a DEFINED (__AltOC6Interrupt)?<code 336> (__AltOC6Interrupt):DEFINED (__OC6Interrupt)?<code 336> (__OC6Interrupt):<code 336> (__DefaultInterrupt)
0x00016a 0x4 LONG 0x242a DEFINED (__AltOC7Interrupt)?<code 336> (__AltOC7Interrupt):DEFINED (__OC7Interrupt)?<code 336> (__OC7Interrupt):<code 336> (__DefaultInterrupt)
0x00016c 0x4 LONG 0x242a DEFINED (__AltOC8Interrupt)?<code 336> (__AltOC8Interrupt):DEFINED (__OC8Interrupt)?<code 336> (__OC8Interrupt):<code 336> (__DefaultInterrupt)
0x00016e 0x4 LONG 0x242a DEFINED (__AltInterrupt45)?<code 336> (__AltInterrupt45):DEFINED (__Interrupt45)?<code 336> (__Interrupt45):<code 336> (__DefaultInterrupt)
0x000170 0x4 LONG 0x242a DEFINED (__AltDMA4Interrupt)?<code 336> (__AltDMA4Interrupt):DEFINED (__DMA4Interrupt)?<code 336> (__DMA4Interrupt):<code 336> (__DefaultInterrupt)
0x000172 0x4 LONG 0xfd0 DEFINED (__AltT6Interrupt)?<code 336> (__AltT6Interrupt):DEFINED (__T6Interrupt)?<code 336> (__T6Interrupt):<code 336> (__DefaultInterrupt)
0x000174 0x4 LONG 0x242a DEFINED (__AltT7Interrupt)?<code 336> (__AltT7Interrupt):DEFINED (__T7Interrupt)?<code 336> (__T7Interrupt):<code 336> (__DefaultInterrupt)
0x000176 0x4 LONG 0x242a DEFINED (__AltSI2C2Interrupt)?<code 336> (__AltSI2C2Interrupt):DEFINED (__SI2C2Interrupt)?<code 336> (__SI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x000178 0x4 LONG 0x242a DEFINED (__AltMI2C2Interrupt)?<code 336> (__AltMI2C2Interrupt):DEFINED (__MI2C2Interrupt)?<code 336> (__MI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x00017a 0x4 LONG 0x242a DEFINED (__AltT8Interrupt)?<code 336> (__AltT8Interrupt):DEFINED (__T8Interrupt)?<code 336> (__T8Interrupt):<code 336> (__DefaultInterrupt)
0x00017c 0x4 LONG 0x242a DEFINED (__AltT9Interrupt)?<code 336> (__AltT9Interrupt):DEFINED (__T9Interrupt)?<code 336> (__T9Interrupt):<code 336> (__DefaultInterrupt)
0x00017e 0x4 LONG 0x242a DEFINED (__AltINT3Interrupt)?<code 336> (__AltINT3Interrupt):DEFINED (__INT3Interrupt)?<code 336> (__INT3Interrupt):<code 336> (__DefaultInterrupt)
0x000180 0x4 LONG 0x242a DEFINED (__AltINT4Interrupt)?<code 336> (__AltINT4Interrupt):DEFINED (__INT4Interrupt)?<code 336> (__INT4Interrupt):<code 336> (__DefaultInterrupt)
0x000182 0x4 LONG 0x242a DEFINED (__AltC2RxRdyInterrupt)?<code 336> (__AltC2RxRdyInterrupt):DEFINED (__C2RxRdyInterrupt)?<code 336> (__C2RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x000184 0x4 LONG 0x242a DEFINED (__AltC2Interrupt)?<code 336> (__AltC2Interrupt):DEFINED (__C2Interrupt)?<code 336> (__C2Interrupt):<code 336> (__DefaultInterrupt)
0x000186 0x4 LONG 0x242a DEFINED (__AltInterrupt57)?<code 336> (__AltInterrupt57):DEFINED (__Interrupt57)?<code 336> (__Interrupt57):<code 336> (__DefaultInterrupt)
0x000188 0x4 LONG 0x242a DEFINED (__AltInterrupt58)?<code 336> (__AltInterrupt58):DEFINED (__Interrupt58)?<code 336> (__Interrupt58):<code 336> (__DefaultInterrupt)
0x00018a 0x4 LONG 0x242a DEFINED (__AltDCIErrInterrupt)?<code 336> (__AltDCIErrInterrupt):DEFINED (__DCIErrInterrupt)?<code 336> (__DCIErrInterrupt):<code 336> (__DefaultInterrupt)
0x00018c 0x4 LONG 0x242a DEFINED (__AltDCIInterrupt)?<code 336> (__AltDCIInterrupt):DEFINED (__DCIInterrupt)?<code 336> (__DCIInterrupt):<code 336> (__DefaultInterrupt)
0x00018e 0x4 LONG 0x242a DEFINED (__AltDMA5Interrupt)?<code 336> (__AltDMA5Interrupt):DEFINED (__DMA5Interrupt)?<code 336> (__DMA5Interrupt):<code 336> (__DefaultInterrupt)
0x000190 0x4 LONG 0x242a DEFINED (__AltInterrupt62)?<code 336> (__AltInterrupt62):DEFINED (__Interrupt62)?<code 336> (__Interrupt62):<code 336> (__DefaultInterrupt)
0x000192 0x4 LONG 0x242a DEFINED (__AltInterrupt63)?<code 336> (__AltInterrupt63):DEFINED (__Interrupt63)?<code 336> (__Interrupt63):<code 336> (__DefaultInterrupt)
0x000194 0x4 LONG 0x242a DEFINED (__AltInterrupt64)?<code 336> (__AltInterrupt64):DEFINED (__Interrupt64)?<code 336> (__Interrupt64):<code 336> (__DefaultInterrupt)
0x000196 0x4 LONG 0x242a DEFINED (__AltU1ErrInterrupt)?<code 336> (__AltU1ErrInterrupt):DEFINED (__U1ErrInterrupt)?<code 336> (__U1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000198 0x4 LONG 0x242a DEFINED (__AltU2ErrInterrupt)?<code 336> (__AltU2ErrInterrupt):DEFINED (__U2ErrInterrupt)?<code 336> (__U2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x00019a 0x4 LONG 0x242a DEFINED (__AltInterrupt68)?<code 336> (__AltInterrupt68):DEFINED (__Interrupt68)?<code 336> (__Interrupt68):<code 336> (__DefaultInterrupt)
0x00019c 0x4 LONG 0x242a DEFINED (__AltDMA6Interrupt)?<code 336> (__AltDMA6Interrupt):DEFINED (__DMA6Interrupt)?<code 336> (__DMA6Interrupt):<code 336> (__DefaultInterrupt)
0x00019e 0x4 LONG 0x242a DEFINED (__AltDMA7Interrupt)?<code 336> (__AltDMA7Interrupt):DEFINED (__DMA7Interrupt)?<code 336> (__DMA7Interrupt):<code 336> (__DefaultInterrupt)
0x0001a0 0x4 LONG 0x242a DEFINED (__AltC1TxReqInterrupt)?<code 336> (__AltC1TxReqInterrupt):DEFINED (__C1TxReqInterrupt)?<code 336> (__C1TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0001a2 0x4 LONG 0x242a DEFINED (__AltC2TxReqInterrupt)?<code 336> (__AltC2TxReqInterrupt):DEFINED (__C2TxReqInterrupt)?<code 336> (__C2TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0001a4 0x4 LONG 0x242a DEFINED (__AltInterrupt72)?<code 336> (__AltInterrupt72):DEFINED (__Interrupt72)?<code 336> (__Interrupt72):<code 336> (__DefaultInterrupt)
0x0001a6 0x4 LONG 0x242a DEFINED (__AltInterrupt73)?<code 336> (__AltInterrupt73):DEFINED (__Interrupt73)?<code 336> (__Interrupt73):<code 336> (__DefaultInterrupt)
0x0001a8 0x4 LONG 0x242a DEFINED (__AltInterrupt74)?<code 336> (__AltInterrupt74):DEFINED (__Interrupt74)?<code 336> (__Interrupt74):<code 336> (__DefaultInterrupt)
0x0001aa 0x4 LONG 0x242a DEFINED (__AltInterrupt75)?<code 336> (__AltInterrupt75):DEFINED (__Interrupt75)?<code 336> (__Interrupt75):<code 336> (__DefaultInterrupt)
0x0001ac 0x4 LONG 0x242a DEFINED (__AltInterrupt76)?<code 336> (__AltInterrupt76):DEFINED (__Interrupt76)?<code 336> (__Interrupt76):<code 336> (__DefaultInterrupt)
0x0001ae 0x4 LONG 0x242a DEFINED (__AltInterrupt77)?<code 336> (__AltInterrupt77):DEFINED (__Interrupt77)?<code 336> (__Interrupt77):<code 336> (__DefaultInterrupt)
0x0001b0 0x4 LONG 0x242a DEFINED (__AltInterrupt78)?<code 336> (__AltInterrupt78):DEFINED (__Interrupt78)?<code 336> (__Interrupt78):<code 336> (__DefaultInterrupt)
0x0001b2 0x4 LONG 0x242a DEFINED (__AltInterrupt79)?<code 336> (__AltInterrupt79):DEFINED (__Interrupt79)?<code 336> (__Interrupt79):<code 336> (__DefaultInterrupt)
0x0001b4 0x4 LONG 0x242a DEFINED (__AltInterrupt80)?<code 336> (__AltInterrupt80):DEFINED (__Interrupt80)?<code 336> (__Interrupt80):<code 336> (__DefaultInterrupt)
0x0001b6 0x4 LONG 0x242a DEFINED (__AltInterrupt81)?<code 336> (__AltInterrupt81):DEFINED (__Interrupt81)?<code 336> (__Interrupt81):<code 336> (__DefaultInterrupt)
0x0001b8 0x4 LONG 0x242a DEFINED (__AltInterrupt82)?<code 336> (__AltInterrupt82):DEFINED (__Interrupt82)?<code 336> (__Interrupt82):<code 336> (__DefaultInterrupt)
0x0001ba 0x4 LONG 0x242a DEFINED (__AltInterrupt83)?<code 336> (__AltInterrupt83):DEFINED (__Interrupt83)?<code 336> (__Interrupt83):<code 336> (__DefaultInterrupt)
0x0001bc 0x4 LONG 0x242a DEFINED (__AltInterrupt84)?<code 336> (__AltInterrupt84):DEFINED (__Interrupt84)?<code 336> (__Interrupt84):<code 336> (__DefaultInterrupt)
0x0001be 0x4 LONG 0x242a DEFINED (__AltInterrupt85)?<code 336> (__AltInterrupt85):DEFINED (__Interrupt85)?<code 336> (__Interrupt85):<code 336> (__DefaultInterrupt)
0x0001c0 0x4 LONG 0x242a DEFINED (__AltInterrupt86)?<code 336> (__AltInterrupt86):DEFINED (__Interrupt86)?<code 336> (__Interrupt86):<code 336> (__DefaultInterrupt)
0x0001c2 0x4 LONG 0x242a DEFINED (__AltInterrupt87)?<code 336> (__AltInterrupt87):DEFINED (__Interrupt87)?<code 336> (__Interrupt87):<code 336> (__DefaultInterrupt)
0x0001c4 0x4 LONG 0x242a DEFINED (__AltInterrupt88)?<code 336> (__AltInterrupt88):DEFINED (__Interrupt88)?<code 336> (__Interrupt88):<code 336> (__DefaultInterrupt)
0x0001c6 0x4 LONG 0x242a DEFINED (__AltInterrupt89)?<code 336> (__AltInterrupt89):DEFINED (__Interrupt89)?<code 336> (__Interrupt89):<code 336> (__DefaultInterrupt)
0x0001c8 0x4 LONG 0x242a DEFINED (__AltInterrupt90)?<code 336> (__AltInterrupt90):DEFINED (__Interrupt90)?<code 336> (__Interrupt90):<code 336> (__DefaultInterrupt)
0x0001ca 0x4 LONG 0x242a DEFINED (__AltInterrupt91)?<code 336> (__AltInterrupt91):DEFINED (__Interrupt91)?<code 336> (__Interrupt91):<code 336> (__DefaultInterrupt)
0x0001cc 0x4 LONG 0x242a DEFINED (__AltInterrupt92)?<code 336> (__AltInterrupt92):DEFINED (__Interrupt92)?<code 336> (__Interrupt92):<code 336> (__DefaultInterrupt)
0x0001ce 0x4 LONG 0x242a DEFINED (__AltInterrupt93)?<code 336> (__AltInterrupt93):DEFINED (__Interrupt93)?<code 336> (__Interrupt93):<code 336> (__DefaultInterrupt)
0x0001d0 0x4 LONG 0x242a DEFINED (__AltInterrupt94)?<code 336> (__AltInterrupt94):DEFINED (__Interrupt94)?<code 336> (__Interrupt94):<code 336> (__DefaultInterrupt)
0x0001d2 0x4 LONG 0x242a DEFINED (__AltInterrupt95)?<code 336> (__AltInterrupt95):DEFINED (__Interrupt95)?<code 336> (__Interrupt95):<code 336> (__DefaultInterrupt)
0x0001d4 0x4 LONG 0x242a DEFINED (__AltInterrupt96)?<code 336> (__AltInterrupt96):DEFINED (__Interrupt96)?<code 336> (__Interrupt96):<code 336> (__DefaultInterrupt)
0x0001d6 0x4 LONG 0x242a DEFINED (__AltInterrupt97)?<code 336> (__AltInterrupt97):DEFINED (__Interrupt97)?<code 336> (__Interrupt97):<code 336> (__DefaultInterrupt)
0x0001d8 0x4 LONG 0x242a DEFINED (__AltInterrupt98)?<code 336> (__AltInterrupt98):DEFINED (__Interrupt98)?<code 336> (__Interrupt98):<code 336> (__DefaultInterrupt)
0x0001da 0x4 LONG 0x242a DEFINED (__AltInterrupt99)?<code 336> (__AltInterrupt99):DEFINED (__Interrupt99)?<code 336> (__Interrupt99):<code 336> (__DefaultInterrupt)
0x0001dc 0x4 LONG 0x242a DEFINED (__AltInterrupt100)?<code 336> (__AltInterrupt100):DEFINED (__Interrupt100)?<code 336> (__Interrupt100):<code 336> (__DefaultInterrupt)
0x0001de 0x4 LONG 0x242a DEFINED (__AltInterrupt101)?<code 336> (__AltInterrupt101):DEFINED (__Interrupt101)?<code 336> (__Interrupt101):<code 336> (__DefaultInterrupt)
0x0001e0 0x4 LONG 0x242a DEFINED (__AltInterrupt102)?<code 336> (__AltInterrupt102):DEFINED (__Interrupt102)?<code 336> (__Interrupt102):<code 336> (__DefaultInterrupt)
0x0001e2 0x4 LONG 0x242a DEFINED (__AltInterrupt103)?<code 336> (__AltInterrupt103):DEFINED (__Interrupt103)?<code 336> (__Interrupt103):<code 336> (__DefaultInterrupt)
0x0001e4 0x4 LONG 0x242a DEFINED (__AltInterrupt104)?<code 336> (__AltInterrupt104):DEFINED (__Interrupt104)?<code 336> (__Interrupt104):<code 336> (__DefaultInterrupt)
0x0001e6 0x4 LONG 0x242a DEFINED (__AltInterrupt105)?<code 336> (__AltInterrupt105):DEFINED (__Interrupt105)?<code 336> (__Interrupt105):<code 336> (__DefaultInterrupt)
0x0001e8 0x4 LONG 0x242a DEFINED (__AltInterrupt106)?<code 336> (__AltInterrupt106):DEFINED (__Interrupt106)?<code 336> (__Interrupt106):<code 336> (__DefaultInterrupt)
0x0001ea 0x4 LONG 0x242a DEFINED (__AltInterrupt107)?<code 336> (__AltInterrupt107):DEFINED (__Interrupt107)?<code 336> (__Interrupt107):<code 336> (__DefaultInterrupt)
0x0001ec 0x4 LONG 0x242a DEFINED (__AltInterrupt108)?<code 336> (__AltInterrupt108):DEFINED (__Interrupt108)?<code 336> (__Interrupt108):<code 336> (__DefaultInterrupt)
0x0001ee 0x4 LONG 0x242a DEFINED (__AltInterrupt109)?<code 336> (__AltInterrupt109):DEFINED (__Interrupt109)?<code 336> (__Interrupt109):<code 336> (__DefaultInterrupt)
0x0001f0 0x4 LONG 0x242a DEFINED (__AltInterrupt110)?<code 336> (__AltInterrupt110):DEFINED (__Interrupt110)?<code 336> (__Interrupt110):<code 336> (__DefaultInterrupt)
0x0001f2 0x4 LONG 0x242a DEFINED (__AltInterrupt111)?<code 336> (__AltInterrupt111):DEFINED (__Interrupt111)?<code 336> (__Interrupt111):<code 336> (__DefaultInterrupt)
0x0001f4 0x4 LONG 0x242a DEFINED (__AltInterrupt112)?<code 336> (__AltInterrupt112):DEFINED (__Interrupt112)?<code 336> (__Interrupt112):<code 336> (__DefaultInterrupt)
0x0001f6 0x4 LONG 0x242a DEFINED (__AltInterrupt113)?<code 336> (__AltInterrupt113):DEFINED (__Interrupt113)?<code 336> (__Interrupt113):<code 336> (__DefaultInterrupt)
0x0001f8 0x4 LONG 0x242a DEFINED (__AltInterrupt114)?<code 336> (__AltInterrupt114):DEFINED (__Interrupt114)?<code 336> (__Interrupt114):<code 336> (__DefaultInterrupt)
0x0001fa 0x4 LONG 0x242a DEFINED (__AltInterrupt115)?<code 336> (__AltInterrupt115):DEFINED (__Interrupt115)?<code 336> (__Interrupt115):<code 336> (__DefaultInterrupt)
0x0001fc 0x4 LONG 0x242a DEFINED (__AltInterrupt116)?<code 336> (__AltInterrupt116):DEFINED (__Interrupt116)?<code 336> (__Interrupt116):<code 336> (__DefaultInterrupt)
0x0001fe 0x4 LONG 0x242a DEFINED (__AltInterrupt117)?<code 336> (__AltInterrupt117):DEFINED (__Interrupt117)?<code 336> (__Interrupt117):<code 336> (__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
0x00b8 IPC10 = 0xb8
0x00b8 _IPC10 = 0xb8
0x00b8 _IPC10bits = 0xb8
0x00ba IPC11 = 0xba
0x00ba _IPC11 = 0xba
0x00ba _IPC11bits = 0xba
0x00bc IPC12 = 0xbc
0x00bc _IPC12 = 0xbc
0x00bc _IPC12bits = 0xbc
0x00be IPC13 = 0xbe
0x00be _IPC13 = 0xbe
0x00be _IPC13bits = 0xbe
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
0x00c6 IPC17 = 0xc6
0x00c6 _IPC17 = 0xc6
0x00c6 _IPC17bits = 0xc6
0x00e0 INTTREG = 0xe0
0x00e0 _INTTREG = 0xe0
0x00e0 _INTTREGbits = 0xe0
0x0100 TMR1 = 0x100
0x0100 _TMR1 = 0x100
0x0102 PR1 = 0x102
0x0102 _PR1 = 0x102
0x0104 T1CON = 0x104
0x0104 _T1CON = 0x104
0x0104 _T1CONbits = 0x104
0x0106 TMR2 = 0x106
0x0106 _TMR2 = 0x106
0x0108 TMR3HLD = 0x108
0x0108 _TMR3HLD = 0x108
0x010a TMR3 = 0x10a
0x010a _TMR3 = 0x10a
0x010c PR2 = 0x10c
0x010c _PR2 = 0x10c
0x010e PR3 = 0x10e
0x010e _PR3 = 0x10e
0x0110 T2CON = 0x110
0x0110 _T2CON = 0x110
0x0110 _T2CONbits = 0x110
0x0112 T3CON = 0x112
0x0112 _T3CON = 0x112
0x0112 _T3CONbits = 0x112
0x0114 TMR4 = 0x114
0x0114 _TMR4 = 0x114
0x0116 TMR5HLD = 0x116
0x0116 _TMR5HLD = 0x116
0x0118 TMR5 = 0x118
0x0118 _TMR5 = 0x118
0x011a PR4 = 0x11a
0x011a _PR4 = 0x11a
0x011c PR5 = 0x11c
0x011c _PR5 = 0x11c
0x011e T4CON = 0x11e
0x011e _T4CON = 0x11e
0x011e _T4CONbits = 0x11e