-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString.map
1900 lines (1842 loc) · 131 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)
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 0x14a2 0x1ef3 (7923)
.dinit 0x16a2 0x22 0x33 (51)
.isr 0x16c4 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): 0x2238 (8760) 13%
Data Memory Usage
section address alignment gaps total length (dec)
------- ------- -------------- -------------------
.nbss 0x800 0 0xdc (220)
.ndata 0x8dc 0 0x8 (8)
.ndata 0x8e4 0 0x2 (2)
C:\Users\zwq\AppData\Local\Temp/ccgncaaa.s.scn1 0x4780 0 0x40 (64)
Total data memory used (bytes): 0x126 (294) 1%
Dynamic Memory Usage
region address maximum length (dec)
------ ------- ---------------------
heap 0 0 (0)
stack 0x8e6 0x3e9a (16026)
Maximum dynamic memory (bytes): 0x3e9a (16026)
External Symbols in Data Memory (by address):
0x0800 _freq
0x0810 _lq
0x0812 _temp_freq
0x0822 _freq_float
0x0826 _temp
0x0836 _bat
0x0838 _dummy
0x083a _bat_high
0x083c _bat_mid
0x083e _bat_low
0x0840 _halt
0x0842 _CE_Enable
0x0844 _Read_Enable
0x0846 _Tick
0x0848 _halt_Tick
0x084a _halt_Timeout
0x084c _Send_Enable
0x084d _Save_Enable
0x084e _Tran_Enable
0x084f _halt_Enable
0x0850 _Read_Timer_En
0x0852 _filter_Tick
0x0854 _filter_Enable
0x0856 _filter_freq
0x0866 _filter
0x08a6 _stat1
0x08a8 _end_addr
0x08ac _temp_addr
0x08b0 _curr_addr
0x08b4 _read_count
0x08b6 _state
0x08b8 _canTxMessage
0x08ca _canRxMessage
0x08dc _ds1302_address
0x08e4 _BOARD_ID
0x4780 _ecan1msgBuf
External Symbols in Data Memory (by name):
0x08e4 _BOARD_ID
0x0842 _CE_Enable
0x0844 _Read_Enable
0x0850 _Read_Timer_En
0x084d _Save_Enable
0x084c _Send_Enable
0x0846 _Tick
0x084e _Tran_Enable
0x0836 _bat
0x083a _bat_high
0x083e _bat_low
0x083c _bat_mid
0x08ca _canRxMessage
0x08b8 _canTxMessage
0x08b0 _curr_addr
0x08dc _ds1302_address
0x0838 _dummy
0x4780 _ecan1msgBuf
0x08a8 _end_addr
0x0866 _filter
0x0854 _filter_Enable
0x0852 _filter_Tick
0x0856 _filter_freq
0x0800 _freq
0x0822 _freq_float
0x0840 _halt
0x084f _halt_Enable
0x0848 _halt_Tick
0x084a _halt_Timeout
0x0810 _lq
0x08b4 _read_count
0x08a6 _stat1
0x08b6 _state
0x0826 _temp
0x08ac _temp_addr
0x0812 _temp_freq
External Symbols in Program Memory (by address):
0x000200 __resetPRI
0x000280 _DELAY
0x0002b0 __T6Interrupt
0x0002d4 __U2RXInterrupt
0x0002dc __C1Interrupt
0x000334 _main
0x0007ac _InitTimer6
0x0007d4 _StartTimer6
0x0007e0 _StopTimer6
0x0007e8 _InitTimer2
0x000808 _StartTimer2
0x000820 _StopTimer2
0x000828 _InitADC
0x00089e _InitSCI
0x0008de _InitIC
0x000944 _StartIC
0x000a5a _StopIC
0x000ab0 _GetPeriod
0x000bbe _write8bit
0x000c38 _ds1302_write_byte
0x000c52 _read8bit
0x000cce _ds1302_read_byte
0x000ce8 _ds1302_write_time
0x000d0e _ds1302_bcd2asc
0x000d2e _ds1302_read_time
0x000d48 _ds1302_init
0x000d76 _InitSPI
0x000db2 _WREN
0x000de8 _RDSR
0x000e48 _WRSR
0x000ea8 _RDID
0x000f32 _WRITE
0x001018 _READ
0x0010fc _sendECAN
0x0012cc _rxECAN
0x0014da _clearRxFlags
0x001528 _initECAN
0x001668 _initDMAECAN
0x0016c4 __DefaultInterrupt
External Symbols in Program Memory (by name):
0x000280 _DELAY
0x000ab0 _GetPeriod
0x000828 _InitADC
0x0008de _InitIC
0x00089e _InitSCI
0x000d76 _InitSPI
0x0007e8 _InitTimer2
0x0007ac _InitTimer6
0x000ea8 _RDID
0x000de8 _RDSR
0x001018 _READ
0x000944 _StartIC
0x000808 _StartTimer2
0x0007d4 _StartTimer6
0x000a5a _StopIC
0x000820 _StopTimer2
0x0007e0 _StopTimer6
0x000db2 _WREN
0x000f32 _WRITE
0x000e48 _WRSR
0x0002dc __C1Interrupt
0x0016c4 __DefaultInterrupt
0x0002b0 __T6Interrupt
0x0002d4 __U2RXInterrupt
0x000200 __resetPRI
0x0014da _clearRxFlags
0x000d0e _ds1302_bcd2asc
0x000d48 _ds1302_init
0x000cce _ds1302_read_byte
0x000d2e _ds1302_read_time
0x000c38 _ds1302_write_byte
0x000ce8 _ds1302_write_time
0x001668 _initDMAECAN
0x001528 _initECAN
0x000334 _main
0x000c52 _read8bit
0x0012cc _rxECAN
0x0010fc _sendECAN
0x000bbe _write8bit
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 adc.o
LOAD sci.o
LOAD IC.o
LOAD DS1302.o
LOAD FRAM.o
LOAD ecan.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 0x200 <code 336> (__reset)
0x000001 0x2 SHORT 0x4
0x000002 0x2 SHORT 0x0 ((<code 336> (__reset) >> 0x10) & 0x7f)
0x000003 0x2 SHORT 0x0
.text 0x000200 0x14a2
*(.handle)
*(.libc)
.libc 0x000200 0x80 C:\Program Files (x86)\Microchip\MPLAB C30\bin\..\lib\libpic30-coff.a(crt0.o)
0x000200 _resetPRI
0x000200 _reset
0x000214 _psv_init
0x000224 _data_init
*(.libm)
*(.libdsp)
*(.lib*)
*(.text)
.text 0x000280 0x52c main.o
0x000280 DELAY
0x0002b0 _T6Interrupt
0x0002d4 _U2RXInterrupt
0x0002dc _C1Interrupt
0x000334 main
.text 0x0007ac 0x7c timer.o
0x0007ac InitTimer6
0x0007d4 StartTimer6
0x0007e0 StopTimer6
0x0007e8 InitTimer2
0x000808 StartTimer2
0x000820 StopTimer2
.text 0x000828 0x76 adc.o
0x000828 InitADC
.text 0x00089e 0x40 sci.o
0x00089e InitSCI
.text 0x0008de 0x2e0 IC.o
0x0008de InitIC
0x000944 StartIC
0x000a5a StopIC
0x000ab0 GetPeriod
.text 0x000bbe 0x1b8 DS1302.o
0x000bbe write8bit
0x000c38 ds1302_write_byte
0x000c52 read8bit
0x000cce ds1302_read_byte
0x000ce8 ds1302_write_time
0x000d0e ds1302_bcd2asc
0x000d2e ds1302_read_time
0x000d48 ds1302_init
.text 0x000d76 0x386 FRAM.o
0x000d76 InitSPI
0x000db2 WREN
0x000de8 RDSR
0x000e48 WRSR
0x000ea8 RDID
0x000f32 WRITE
0x001018 READ
.text 0x0010fc 0x5a6 ecan.o
0x0010fc sendECAN
0x0012cc rxECAN
0x0014da clearRxFlags
0x001528 initECAN
0x001668 initDMAECAN
__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 0x16c4 DEFINED (__ReservedTrap0)?<code 336> (__ReservedTrap0):<code 336> (__DefaultInterrupt)
0x000006 0x4 LONG 0x16c4 DEFINED (__OscillatorFail)?<code 336> (__OscillatorFail):<code 336> (__DefaultInterrupt)
0x000008 0x4 LONG 0x16c4 DEFINED (__AddressError)?<code 336> (__AddressError):<code 336> (__DefaultInterrupt)
0x00000a 0x4 LONG 0x16c4 DEFINED (__StackError)?<code 336> (__StackError):<code 336> (__DefaultInterrupt)
0x00000c 0x4 LONG 0x16c4 DEFINED (__MathError)?<code 336> (__MathError):<code 336> (__DefaultInterrupt)
0x00000e 0x4 LONG 0x16c4 DEFINED (__DMACError)?<code 336> (__DMACError):<code 336> (__DefaultInterrupt)
0x000010 0x4 LONG 0x16c4 DEFINED (__ReservedTrap6)?<code 336> (__ReservedTrap6):<code 336> (__DefaultInterrupt)
0x000012 0x4 LONG 0x16c4 DEFINED (__ReservedTrap7)?<code 336> (__ReservedTrap7):<code 336> (__DefaultInterrupt)
0x000014 0x4 LONG 0x16c4 DEFINED (__INT0Interrupt)?<code 336> (__INT0Interrupt):<code 336> (__DefaultInterrupt)
0x000016 0x4 LONG 0x16c4 DEFINED (__IC1Interrupt)?<code 336> (__IC1Interrupt):<code 336> (__DefaultInterrupt)
0x000018 0x4 LONG 0x16c4 DEFINED (__OC1Interrupt)?<code 336> (__OC1Interrupt):<code 336> (__DefaultInterrupt)
0x00001a 0x4 LONG 0x16c4 DEFINED (__T1Interrupt)?<code 336> (__T1Interrupt):<code 336> (__DefaultInterrupt)
0x00001c 0x4 LONG 0x16c4 DEFINED (__DMA0Interrupt)?<code 336> (__DMA0Interrupt):<code 336> (__DefaultInterrupt)
0x00001e 0x4 LONG 0x16c4 DEFINED (__IC2Interrupt)?<code 336> (__IC2Interrupt):<code 336> (__DefaultInterrupt)
0x000020 0x4 LONG 0x16c4 DEFINED (__OC2Interrupt)?<code 336> (__OC2Interrupt):<code 336> (__DefaultInterrupt)
0x000022 0x4 LONG 0x16c4 DEFINED (__T2Interrupt)?<code 336> (__T2Interrupt):<code 336> (__DefaultInterrupt)
0x000024 0x4 LONG 0x16c4 DEFINED (__T3Interrupt)?<code 336> (__T3Interrupt):<code 336> (__DefaultInterrupt)
0x000026 0x4 LONG 0x16c4 DEFINED (__SPI1ErrInterrupt)?<code 336> (__SPI1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000028 0x4 LONG 0x16c4 DEFINED (__SPI1Interrupt)?<code 336> (__SPI1Interrupt):<code 336> (__DefaultInterrupt)
0x00002a 0x4 LONG 0x16c4 DEFINED (__U1RXInterrupt)?<code 336> (__U1RXInterrupt):<code 336> (__DefaultInterrupt)
0x00002c 0x4 LONG 0x16c4 DEFINED (__U1TXInterrupt)?<code 336> (__U1TXInterrupt):<code 336> (__DefaultInterrupt)
0x00002e 0x4 LONG 0x16c4 DEFINED (__ADC1Interrupt)?<code 336> (__ADC1Interrupt):<code 336> (__DefaultInterrupt)
0x000030 0x4 LONG 0x16c4 DEFINED (__DMA1Interrupt)?<code 336> (__DMA1Interrupt):<code 336> (__DefaultInterrupt)
0x000032 0x4 LONG 0x16c4 DEFINED (__Interrupt15)?<code 336> (__Interrupt15):<code 336> (__DefaultInterrupt)
0x000034 0x4 LONG 0x16c4 DEFINED (__SI2C1Interrupt)?<code 336> (__SI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000036 0x4 LONG 0x16c4 DEFINED (__MI2C1Interrupt)?<code 336> (__MI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000038 0x4 LONG 0x16c4 DEFINED (__Interrupt18)?<code 336> (__Interrupt18):<code 336> (__DefaultInterrupt)
0x00003a 0x4 LONG 0x16c4 DEFINED (__CNInterrupt)?<code 336> (__CNInterrupt):<code 336> (__DefaultInterrupt)
0x00003c 0x4 LONG 0x16c4 DEFINED (__INT1Interrupt)?<code 336> (__INT1Interrupt):<code 336> (__DefaultInterrupt)
0x00003e 0x4 LONG 0x16c4 DEFINED (__ADC2Interrupt)?<code 336> (__ADC2Interrupt):<code 336> (__DefaultInterrupt)
0x000040 0x4 LONG 0x16c4 DEFINED (__IC7Interrupt)?<code 336> (__IC7Interrupt):<code 336> (__DefaultInterrupt)
0x000042 0x4 LONG 0x16c4 DEFINED (__IC8Interrupt)?<code 336> (__IC8Interrupt):<code 336> (__DefaultInterrupt)
0x000044 0x4 LONG 0x16c4 DEFINED (__DMA2Interrupt)?<code 336> (__DMA2Interrupt):<code 336> (__DefaultInterrupt)
0x000046 0x4 LONG 0x16c4 DEFINED (__OC3Interrupt)?<code 336> (__OC3Interrupt):<code 336> (__DefaultInterrupt)
0x000048 0x4 LONG 0x16c4 DEFINED (__OC4Interrupt)?<code 336> (__OC4Interrupt):<code 336> (__DefaultInterrupt)
0x00004a 0x4 LONG 0x16c4 DEFINED (__T4Interrupt)?<code 336> (__T4Interrupt):<code 336> (__DefaultInterrupt)
0x00004c 0x4 LONG 0x16c4 DEFINED (__T5Interrupt)?<code 336> (__T5Interrupt):<code 336> (__DefaultInterrupt)
0x00004e 0x4 LONG 0x16c4 DEFINED (__INT2Interrupt)?<code 336> (__INT2Interrupt):<code 336> (__DefaultInterrupt)
0x000050 0x4 LONG 0x2d4 DEFINED (__U2RXInterrupt)?<code 336> (__U2RXInterrupt):<code 336> (__DefaultInterrupt)
0x000052 0x4 LONG 0x16c4 DEFINED (__U2TXInterrupt)?<code 336> (__U2TXInterrupt):<code 336> (__DefaultInterrupt)
0x000054 0x4 LONG 0x16c4 DEFINED (__SPI2ErrInterrupt)?<code 336> (__SPI2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000056 0x4 LONG 0x16c4 DEFINED (__SPI2Interrupt)?<code 336> (__SPI2Interrupt):<code 336> (__DefaultInterrupt)
0x000058 0x4 LONG 0x16c4 DEFINED (__C1RxRdyInterrupt)?<code 336> (__C1RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x00005a 0x4 LONG 0x2dc DEFINED (__C1Interrupt)?<code 336> (__C1Interrupt):<code 336> (__DefaultInterrupt)
0x00005c 0x4 LONG 0x16c4 DEFINED (__DMA3Interrupt)?<code 336> (__DMA3Interrupt):<code 336> (__DefaultInterrupt)
0x00005e 0x4 LONG 0x16c4 DEFINED (__IC3Interrupt)?<code 336> (__IC3Interrupt):<code 336> (__DefaultInterrupt)
0x000060 0x4 LONG 0x16c4 DEFINED (__IC4Interrupt)?<code 336> (__IC4Interrupt):<code 336> (__DefaultInterrupt)
0x000062 0x4 LONG 0x16c4 DEFINED (__IC5Interrupt)?<code 336> (__IC5Interrupt):<code 336> (__DefaultInterrupt)
0x000064 0x4 LONG 0x16c4 DEFINED (__IC6Interrupt)?<code 336> (__IC6Interrupt):<code 336> (__DefaultInterrupt)
0x000066 0x4 LONG 0x16c4 DEFINED (__OC5Interrupt)?<code 336> (__OC5Interrupt):<code 336> (__DefaultInterrupt)
0x000068 0x4 LONG 0x16c4 DEFINED (__OC6Interrupt)?<code 336> (__OC6Interrupt):<code 336> (__DefaultInterrupt)
0x00006a 0x4 LONG 0x16c4 DEFINED (__OC7Interrupt)?<code 336> (__OC7Interrupt):<code 336> (__DefaultInterrupt)
0x00006c 0x4 LONG 0x16c4 DEFINED (__OC8Interrupt)?<code 336> (__OC8Interrupt):<code 336> (__DefaultInterrupt)
0x00006e 0x4 LONG 0x16c4 DEFINED (__Interrupt45)?<code 336> (__Interrupt45):<code 336> (__DefaultInterrupt)
0x000070 0x4 LONG 0x16c4 DEFINED (__DMA4Interrupt)?<code 336> (__DMA4Interrupt):<code 336> (__DefaultInterrupt)
0x000072 0x4 LONG 0x2b0 DEFINED (__T6Interrupt)?<code 336> (__T6Interrupt):<code 336> (__DefaultInterrupt)
0x000074 0x4 LONG 0x16c4 DEFINED (__T7Interrupt)?<code 336> (__T7Interrupt):<code 336> (__DefaultInterrupt)
0x000076 0x4 LONG 0x16c4 DEFINED (__SI2C2Interrupt)?<code 336> (__SI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x000078 0x4 LONG 0x16c4 DEFINED (__MI2C2Interrupt)?<code 336> (__MI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x00007a 0x4 LONG 0x16c4 DEFINED (__T8Interrupt)?<code 336> (__T8Interrupt):<code 336> (__DefaultInterrupt)
0x00007c 0x4 LONG 0x16c4 DEFINED (__T9Interrupt)?<code 336> (__T9Interrupt):<code 336> (__DefaultInterrupt)
0x00007e 0x4 LONG 0x16c4 DEFINED (__INT3Interrupt)?<code 336> (__INT3Interrupt):<code 336> (__DefaultInterrupt)
0x000080 0x4 LONG 0x16c4 DEFINED (__INT4Interrupt)?<code 336> (__INT4Interrupt):<code 336> (__DefaultInterrupt)
0x000082 0x4 LONG 0x16c4 DEFINED (__C2RxRdyInterrupt)?<code 336> (__C2RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x000084 0x4 LONG 0x16c4 DEFINED (__C2Interrupt)?<code 336> (__C2Interrupt):<code 336> (__DefaultInterrupt)
0x000086 0x4 LONG 0x16c4 DEFINED (__Interrupt57)?<code 336> (__Interrupt57):<code 336> (__DefaultInterrupt)
0x000088 0x4 LONG 0x16c4 DEFINED (__Interrupt58)?<code 336> (__Interrupt58):<code 336> (__DefaultInterrupt)
0x00008a 0x4 LONG 0x16c4 DEFINED (__DCIErrInterrupt)?<code 336> (__DCIErrInterrupt):<code 336> (__DefaultInterrupt)
0x00008c 0x4 LONG 0x16c4 DEFINED (__DCIInterrupt)?<code 336> (__DCIInterrupt):<code 336> (__DefaultInterrupt)
0x00008e 0x4 LONG 0x16c4 DEFINED (__DMA5Interrupt)?<code 336> (__DMA5Interrupt):<code 336> (__DefaultInterrupt)
0x000090 0x4 LONG 0x16c4 DEFINED (__Interrupt62)?<code 336> (__Interrupt62):<code 336> (__DefaultInterrupt)
0x000092 0x4 LONG 0x16c4 DEFINED (__Interrupt63)?<code 336> (__Interrupt63):<code 336> (__DefaultInterrupt)
0x000094 0x4 LONG 0x16c4 DEFINED (__Interrupt64)?<code 336> (__Interrupt64):<code 336> (__DefaultInterrupt)
0x000096 0x4 LONG 0x16c4 DEFINED (__U1ErrInterrupt)?<code 336> (__U1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000098 0x4 LONG 0x16c4 DEFINED (__U2ErrInterrupt)?<code 336> (__U2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x00009a 0x4 LONG 0x16c4 DEFINED (__Interrupt68)?<code 336> (__Interrupt68):<code 336> (__DefaultInterrupt)
0x00009c 0x4 LONG 0x16c4 DEFINED (__DMA6Interrupt)?<code 336> (__DMA6Interrupt):<code 336> (__DefaultInterrupt)
0x00009e 0x4 LONG 0x16c4 DEFINED (__DMA7Interrupt)?<code 336> (__DMA7Interrupt):<code 336> (__DefaultInterrupt)
0x0000a0 0x4 LONG 0x16c4 DEFINED (__C1TxReqInterrupt)?<code 336> (__C1TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0000a2 0x4 LONG 0x16c4 DEFINED (__C2TxReqInterrupt)?<code 336> (__C2TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0000a4 0x4 LONG 0x16c4 DEFINED (__Interrupt72)?<code 336> (__Interrupt72):<code 336> (__DefaultInterrupt)
0x0000a6 0x4 LONG 0x16c4 DEFINED (__Interrupt73)?<code 336> (__Interrupt73):<code 336> (__DefaultInterrupt)
0x0000a8 0x4 LONG 0x16c4 DEFINED (__Interrupt74)?<code 336> (__Interrupt74):<code 336> (__DefaultInterrupt)
0x0000aa 0x4 LONG 0x16c4 DEFINED (__Interrupt75)?<code 336> (__Interrupt75):<code 336> (__DefaultInterrupt)
0x0000ac 0x4 LONG 0x16c4 DEFINED (__Interrupt76)?<code 336> (__Interrupt76):<code 336> (__DefaultInterrupt)
0x0000ae 0x4 LONG 0x16c4 DEFINED (__Interrupt77)?<code 336> (__Interrupt77):<code 336> (__DefaultInterrupt)
0x0000b0 0x4 LONG 0x16c4 DEFINED (__Interrupt78)?<code 336> (__Interrupt78):<code 336> (__DefaultInterrupt)
0x0000b2 0x4 LONG 0x16c4 DEFINED (__Interrupt79)?<code 336> (__Interrupt79):<code 336> (__DefaultInterrupt)
0x0000b4 0x4 LONG 0x16c4 DEFINED (__Interrupt80)?<code 336> (__Interrupt80):<code 336> (__DefaultInterrupt)
0x0000b6 0x4 LONG 0x16c4 DEFINED (__Interrupt81)?<code 336> (__Interrupt81):<code 336> (__DefaultInterrupt)
0x0000b8 0x4 LONG 0x16c4 DEFINED (__Interrupt82)?<code 336> (__Interrupt82):<code 336> (__DefaultInterrupt)
0x0000ba 0x4 LONG 0x16c4 DEFINED (__Interrupt83)?<code 336> (__Interrupt83):<code 336> (__DefaultInterrupt)
0x0000bc 0x4 LONG 0x16c4 DEFINED (__Interrupt84)?<code 336> (__Interrupt84):<code 336> (__DefaultInterrupt)
0x0000be 0x4 LONG 0x16c4 DEFINED (__Interrupt85)?<code 336> (__Interrupt85):<code 336> (__DefaultInterrupt)
0x0000c0 0x4 LONG 0x16c4 DEFINED (__Interrupt86)?<code 336> (__Interrupt86):<code 336> (__DefaultInterrupt)
0x0000c2 0x4 LONG 0x16c4 DEFINED (__Interrupt87)?<code 336> (__Interrupt87):<code 336> (__DefaultInterrupt)
0x0000c4 0x4 LONG 0x16c4 DEFINED (__Interrupt88)?<code 336> (__Interrupt88):<code 336> (__DefaultInterrupt)
0x0000c6 0x4 LONG 0x16c4 DEFINED (__Interrupt89)?<code 336> (__Interrupt89):<code 336> (__DefaultInterrupt)
0x0000c8 0x4 LONG 0x16c4 DEFINED (__Interrupt90)?<code 336> (__Interrupt90):<code 336> (__DefaultInterrupt)
0x0000ca 0x4 LONG 0x16c4 DEFINED (__Interrupt91)?<code 336> (__Interrupt91):<code 336> (__DefaultInterrupt)
0x0000cc 0x4 LONG 0x16c4 DEFINED (__Interrupt92)?<code 336> (__Interrupt92):<code 336> (__DefaultInterrupt)
0x0000ce 0x4 LONG 0x16c4 DEFINED (__Interrupt93)?<code 336> (__Interrupt93):<code 336> (__DefaultInterrupt)
0x0000d0 0x4 LONG 0x16c4 DEFINED (__Interrupt94)?<code 336> (__Interrupt94):<code 336> (__DefaultInterrupt)
0x0000d2 0x4 LONG 0x16c4 DEFINED (__Interrupt95)?<code 336> (__Interrupt95):<code 336> (__DefaultInterrupt)
0x0000d4 0x4 LONG 0x16c4 DEFINED (__Interrupt96)?<code 336> (__Interrupt96):<code 336> (__DefaultInterrupt)
0x0000d6 0x4 LONG 0x16c4 DEFINED (__Interrupt97)?<code 336> (__Interrupt97):<code 336> (__DefaultInterrupt)
0x0000d8 0x4 LONG 0x16c4 DEFINED (__Interrupt98)?<code 336> (__Interrupt98):<code 336> (__DefaultInterrupt)
0x0000da 0x4 LONG 0x16c4 DEFINED (__Interrupt99)?<code 336> (__Interrupt99):<code 336> (__DefaultInterrupt)
0x0000dc 0x4 LONG 0x16c4 DEFINED (__Interrupt100)?<code 336> (__Interrupt100):<code 336> (__DefaultInterrupt)
0x0000de 0x4 LONG 0x16c4 DEFINED (__Interrupt101)?<code 336> (__Interrupt101):<code 336> (__DefaultInterrupt)
0x0000e0 0x4 LONG 0x16c4 DEFINED (__Interrupt102)?<code 336> (__Interrupt102):<code 336> (__DefaultInterrupt)
0x0000e2 0x4 LONG 0x16c4 DEFINED (__Interrupt103)?<code 336> (__Interrupt103):<code 336> (__DefaultInterrupt)
0x0000e4 0x4 LONG 0x16c4 DEFINED (__Interrupt104)?<code 336> (__Interrupt104):<code 336> (__DefaultInterrupt)
0x0000e6 0x4 LONG 0x16c4 DEFINED (__Interrupt105)?<code 336> (__Interrupt105):<code 336> (__DefaultInterrupt)
0x0000e8 0x4 LONG 0x16c4 DEFINED (__Interrupt106)?<code 336> (__Interrupt106):<code 336> (__DefaultInterrupt)
0x0000ea 0x4 LONG 0x16c4 DEFINED (__Interrupt107)?<code 336> (__Interrupt107):<code 336> (__DefaultInterrupt)
0x0000ec 0x4 LONG 0x16c4 DEFINED (__Interrupt108)?<code 336> (__Interrupt108):<code 336> (__DefaultInterrupt)
0x0000ee 0x4 LONG 0x16c4 DEFINED (__Interrupt109)?<code 336> (__Interrupt109):<code 336> (__DefaultInterrupt)
0x0000f0 0x4 LONG 0x16c4 DEFINED (__Interrupt110)?<code 336> (__Interrupt110):<code 336> (__DefaultInterrupt)
0x0000f2 0x4 LONG 0x16c4 DEFINED (__Interrupt111)?<code 336> (__Interrupt111):<code 336> (__DefaultInterrupt)
0x0000f4 0x4 LONG 0x16c4 DEFINED (__Interrupt112)?<code 336> (__Interrupt112):<code 336> (__DefaultInterrupt)
0x0000f6 0x4 LONG 0x16c4 DEFINED (__Interrupt113)?<code 336> (__Interrupt113):<code 336> (__DefaultInterrupt)
0x0000f8 0x4 LONG 0x16c4 DEFINED (__Interrupt114)?<code 336> (__Interrupt114):<code 336> (__DefaultInterrupt)
0x0000fa 0x4 LONG 0x16c4 DEFINED (__Interrupt115)?<code 336> (__Interrupt115):<code 336> (__DefaultInterrupt)
0x0000fc 0x4 LONG 0x16c4 DEFINED (__Interrupt116)?<code 336> (__Interrupt116):<code 336> (__DefaultInterrupt)
0x0000fe 0x4 LONG 0x16c4 DEFINED (__Interrupt117)?<code 336> (__Interrupt117):<code 336> (__DefaultInterrupt)
.aivt 0x000104 0xfc
0x000104 0x4 LONG 0x16c4 DEFINED (__AltReservedTrap0)?<code 336> (__AltReservedTrap0):DEFINED (__ReservedTrap0)?<code 336> (__ReservedTrap0):<code 336> (__DefaultInterrupt)
0x000106 0x4 LONG 0x16c4 DEFINED (__AltOscillatorFail)?<code 336> (__AltOscillatorFail):DEFINED (__OscillatorFail)?<code 336> (__OscillatorFail):<code 336> (__DefaultInterrupt)
0x000108 0x4 LONG 0x16c4 DEFINED (__AltAddressError)?<code 336> (__AltAddressError):DEFINED (__AddressError)?<code 336> (__AddressError):<code 336> (__DefaultInterrupt)
0x00010a 0x4 LONG 0x16c4 DEFINED (__AltStackError)?<code 336> (__AltStackError):DEFINED (__StackError)?<code 336> (__StackError):<code 336> (__DefaultInterrupt)
0x00010c 0x4 LONG 0x16c4 DEFINED (__AltMathError)?<code 336> (__AltMathError):DEFINED (__MathError)?<code 336> (__MathError):<code 336> (__DefaultInterrupt)
0x00010e 0x4 LONG 0x16c4 DEFINED (__AltDMACError)?<code 336> (__AltDMACError):DEFINED (__DMACError)?<code 336> (__DMACError):<code 336> (__DefaultInterrupt)
0x000110 0x4 LONG 0x16c4 DEFINED (__AltReservedTrap6)?<code 336> (__AltReservedTrap6):DEFINED (__ReservedTrap6)?<code 336> (__ReservedTrap6):<code 336> (__DefaultInterrupt)
0x000112 0x4 LONG 0x16c4 DEFINED (__AltReservedTrap7)?<code 336> (__AltReservedTrap7):DEFINED (__ReservedTrap7)?<code 336> (__ReservedTrap7):<code 336> (__DefaultInterrupt)
0x000114 0x4 LONG 0x16c4 DEFINED (__AltINT0Interrupt)?<code 336> (__AltINT0Interrupt):DEFINED (__INT0Interrupt)?<code 336> (__INT0Interrupt):<code 336> (__DefaultInterrupt)
0x000116 0x4 LONG 0x16c4 DEFINED (__AltIC1Interrupt)?<code 336> (__AltIC1Interrupt):DEFINED (__IC1Interrupt)?<code 336> (__IC1Interrupt):<code 336> (__DefaultInterrupt)
0x000118 0x4 LONG 0x16c4 DEFINED (__AltOC1Interrupt)?<code 336> (__AltOC1Interrupt):DEFINED (__OC1Interrupt)?<code 336> (__OC1Interrupt):<code 336> (__DefaultInterrupt)
0x00011a 0x4 LONG 0x16c4 DEFINED (__AltT1Interrupt)?<code 336> (__AltT1Interrupt):DEFINED (__T1Interrupt)?<code 336> (__T1Interrupt):<code 336> (__DefaultInterrupt)
0x00011c 0x4 LONG 0x16c4 DEFINED (__AltDMA0Interrupt)?<code 336> (__AltDMA0Interrupt):DEFINED (__DMA0Interrupt)?<code 336> (__DMA0Interrupt):<code 336> (__DefaultInterrupt)
0x00011e 0x4 LONG 0x16c4 DEFINED (__AltIC2Interrupt)?<code 336> (__AltIC2Interrupt):DEFINED (__IC2Interrupt)?<code 336> (__IC2Interrupt):<code 336> (__DefaultInterrupt)
0x000120 0x4 LONG 0x16c4 DEFINED (__AltOC2Interrupt)?<code 336> (__AltOC2Interrupt):DEFINED (__OC2Interrupt)?<code 336> (__OC2Interrupt):<code 336> (__DefaultInterrupt)
0x000122 0x4 LONG 0x16c4 DEFINED (__AltT2Interrupt)?<code 336> (__AltT2Interrupt):DEFINED (__T2Interrupt)?<code 336> (__T2Interrupt):<code 336> (__DefaultInterrupt)
0x000124 0x4 LONG 0x16c4 DEFINED (__AltT3Interrupt)?<code 336> (__AltT3Interrupt):DEFINED (__T3Interrupt)?<code 336> (__T3Interrupt):<code 336> (__DefaultInterrupt)
0x000126 0x4 LONG 0x16c4 DEFINED (__AltSPI1ErrInterrupt)?<code 336> (__AltSPI1ErrInterrupt):DEFINED (__SPI1ErrInterrupt)?<code 336> (__SPI1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000128 0x4 LONG 0x16c4 DEFINED (__AltSPI1Interrupt)?<code 336> (__AltSPI1Interrupt):DEFINED (__SPI1Interrupt)?<code 336> (__SPI1Interrupt):<code 336> (__DefaultInterrupt)
0x00012a 0x4 LONG 0x16c4 DEFINED (__AltU1RXInterrupt)?<code 336> (__AltU1RXInterrupt):DEFINED (__U1RXInterrupt)?<code 336> (__U1RXInterrupt):<code 336> (__DefaultInterrupt)
0x00012c 0x4 LONG 0x16c4 DEFINED (__AltU1TXInterrupt)?<code 336> (__AltU1TXInterrupt):DEFINED (__U1TXInterrupt)?<code 336> (__U1TXInterrupt):<code 336> (__DefaultInterrupt)
0x00012e 0x4 LONG 0x16c4 DEFINED (__AltADC1Interrupt)?<code 336> (__AltADC1Interrupt):DEFINED (__ADC1Interrupt)?<code 336> (__ADC1Interrupt):<code 336> (__DefaultInterrupt)
0x000130 0x4 LONG 0x16c4 DEFINED (__AltDMA1Interrupt)?<code 336> (__AltDMA1Interrupt):DEFINED (__DMA1Interrupt)?<code 336> (__DMA1Interrupt):<code 336> (__DefaultInterrupt)
0x000132 0x4 LONG 0x16c4 DEFINED (__AltInterrupt15)?<code 336> (__AltInterrupt15):DEFINED (__Interrupt15)?<code 336> (__Interrupt15):<code 336> (__DefaultInterrupt)
0x000134 0x4 LONG 0x16c4 DEFINED (__AltSI2C1Interrupt)?<code 336> (__AltSI2C1Interrupt):DEFINED (__SI2C1Interrupt)?<code 336> (__SI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000136 0x4 LONG 0x16c4 DEFINED (__AltMI2C1Interrupt)?<code 336> (__AltMI2C1Interrupt):DEFINED (__MI2C1Interrupt)?<code 336> (__MI2C1Interrupt):<code 336> (__DefaultInterrupt)
0x000138 0x4 LONG 0x16c4 DEFINED (__AltInterrupt18)?<code 336> (__AltInterrupt18):DEFINED (__Interrupt18)?<code 336> (__Interrupt18):<code 336> (__DefaultInterrupt)
0x00013a 0x4 LONG 0x16c4 DEFINED (__AltCNInterrupt)?<code 336> (__AltCNInterrupt):DEFINED (__CNInterrupt)?<code 336> (__CNInterrupt):<code 336> (__DefaultInterrupt)
0x00013c 0x4 LONG 0x16c4 DEFINED (__AltINT1Interrupt)?<code 336> (__AltINT1Interrupt):DEFINED (__INT1Interrupt)?<code 336> (__INT1Interrupt):<code 336> (__DefaultInterrupt)
0x00013e 0x4 LONG 0x16c4 DEFINED (__AltADC2Interrupt)?<code 336> (__AltADC2Interrupt):DEFINED (__ADC2Interrupt)?<code 336> (__ADC2Interrupt):<code 336> (__DefaultInterrupt)
0x000140 0x4 LONG 0x16c4 DEFINED (__AltIC7Interrupt)?<code 336> (__AltIC7Interrupt):DEFINED (__IC7Interrupt)?<code 336> (__IC7Interrupt):<code 336> (__DefaultInterrupt)
0x000142 0x4 LONG 0x16c4 DEFINED (__AltIC8Interrupt)?<code 336> (__AltIC8Interrupt):DEFINED (__IC8Interrupt)?<code 336> (__IC8Interrupt):<code 336> (__DefaultInterrupt)
0x000144 0x4 LONG 0x16c4 DEFINED (__AltDMA2Interrupt)?<code 336> (__AltDMA2Interrupt):DEFINED (__DMA2Interrupt)?<code 336> (__DMA2Interrupt):<code 336> (__DefaultInterrupt)
0x000146 0x4 LONG 0x16c4 DEFINED (__AltOC3Interrupt)?<code 336> (__AltOC3Interrupt):DEFINED (__OC3Interrupt)?<code 336> (__OC3Interrupt):<code 336> (__DefaultInterrupt)
0x000148 0x4 LONG 0x16c4 DEFINED (__AltOC4Interrupt)?<code 336> (__AltOC4Interrupt):DEFINED (__OC4Interrupt)?<code 336> (__OC4Interrupt):<code 336> (__DefaultInterrupt)
0x00014a 0x4 LONG 0x16c4 DEFINED (__AltT4Interrupt)?<code 336> (__AltT4Interrupt):DEFINED (__T4Interrupt)?<code 336> (__T4Interrupt):<code 336> (__DefaultInterrupt)
0x00014c 0x4 LONG 0x16c4 DEFINED (__AltT5Interrupt)?<code 336> (__AltT5Interrupt):DEFINED (__T5Interrupt)?<code 336> (__T5Interrupt):<code 336> (__DefaultInterrupt)
0x00014e 0x4 LONG 0x16c4 DEFINED (__AltINT2Interrupt)?<code 336> (__AltINT2Interrupt):DEFINED (__INT2Interrupt)?<code 336> (__INT2Interrupt):<code 336> (__DefaultInterrupt)
0x000150 0x4 LONG 0x2d4 DEFINED (__AltU2RXInterrupt)?<code 336> (__AltU2RXInterrupt):DEFINED (__U2RXInterrupt)?<code 336> (__U2RXInterrupt):<code 336> (__DefaultInterrupt)
0x000152 0x4 LONG 0x16c4 DEFINED (__AltU2TXInterrupt)?<code 336> (__AltU2TXInterrupt):DEFINED (__U2TXInterrupt)?<code 336> (__U2TXInterrupt):<code 336> (__DefaultInterrupt)
0x000154 0x4 LONG 0x16c4 DEFINED (__AltSPI2ErrInterrupt)?<code 336> (__AltSPI2ErrInterrupt):DEFINED (__SPI2ErrInterrupt)?<code 336> (__SPI2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000156 0x4 LONG 0x16c4 DEFINED (__AltSPI2Interrupt)?<code 336> (__AltSPI2Interrupt):DEFINED (__SPI2Interrupt)?<code 336> (__SPI2Interrupt):<code 336> (__DefaultInterrupt)
0x000158 0x4 LONG 0x16c4 DEFINED (__AltC1RxRdyInterrupt)?<code 336> (__AltC1RxRdyInterrupt):DEFINED (__C1RxRdyInterrupt)?<code 336> (__C1RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x00015a 0x4 LONG 0x2dc DEFINED (__AltC1Interrupt)?<code 336> (__AltC1Interrupt):DEFINED (__C1Interrupt)?<code 336> (__C1Interrupt):<code 336> (__DefaultInterrupt)
0x00015c 0x4 LONG 0x16c4 DEFINED (__AltDMA3Interrupt)?<code 336> (__AltDMA3Interrupt):DEFINED (__DMA3Interrupt)?<code 336> (__DMA3Interrupt):<code 336> (__DefaultInterrupt)
0x00015e 0x4 LONG 0x16c4 DEFINED (__AltIC3Interrupt)?<code 336> (__AltIC3Interrupt):DEFINED (__IC3Interrupt)?<code 336> (__IC3Interrupt):<code 336> (__DefaultInterrupt)
0x000160 0x4 LONG 0x16c4 DEFINED (__AltIC4Interrupt)?<code 336> (__AltIC4Interrupt):DEFINED (__IC4Interrupt)?<code 336> (__IC4Interrupt):<code 336> (__DefaultInterrupt)
0x000162 0x4 LONG 0x16c4 DEFINED (__AltIC5Interrupt)?<code 336> (__AltIC5Interrupt):DEFINED (__IC5Interrupt)?<code 336> (__IC5Interrupt):<code 336> (__DefaultInterrupt)
0x000164 0x4 LONG 0x16c4 DEFINED (__AltIC6Interrupt)?<code 336> (__AltIC6Interrupt):DEFINED (__IC6Interrupt)?<code 336> (__IC6Interrupt):<code 336> (__DefaultInterrupt)
0x000166 0x4 LONG 0x16c4 DEFINED (__AltOC5Interrupt)?<code 336> (__AltOC5Interrupt):DEFINED (__OC5Interrupt)?<code 336> (__OC5Interrupt):<code 336> (__DefaultInterrupt)
0x000168 0x4 LONG 0x16c4 DEFINED (__AltOC6Interrupt)?<code 336> (__AltOC6Interrupt):DEFINED (__OC6Interrupt)?<code 336> (__OC6Interrupt):<code 336> (__DefaultInterrupt)
0x00016a 0x4 LONG 0x16c4 DEFINED (__AltOC7Interrupt)?<code 336> (__AltOC7Interrupt):DEFINED (__OC7Interrupt)?<code 336> (__OC7Interrupt):<code 336> (__DefaultInterrupt)
0x00016c 0x4 LONG 0x16c4 DEFINED (__AltOC8Interrupt)?<code 336> (__AltOC8Interrupt):DEFINED (__OC8Interrupt)?<code 336> (__OC8Interrupt):<code 336> (__DefaultInterrupt)
0x00016e 0x4 LONG 0x16c4 DEFINED (__AltInterrupt45)?<code 336> (__AltInterrupt45):DEFINED (__Interrupt45)?<code 336> (__Interrupt45):<code 336> (__DefaultInterrupt)
0x000170 0x4 LONG 0x16c4 DEFINED (__AltDMA4Interrupt)?<code 336> (__AltDMA4Interrupt):DEFINED (__DMA4Interrupt)?<code 336> (__DMA4Interrupt):<code 336> (__DefaultInterrupt)
0x000172 0x4 LONG 0x2b0 DEFINED (__AltT6Interrupt)?<code 336> (__AltT6Interrupt):DEFINED (__T6Interrupt)?<code 336> (__T6Interrupt):<code 336> (__DefaultInterrupt)
0x000174 0x4 LONG 0x16c4 DEFINED (__AltT7Interrupt)?<code 336> (__AltT7Interrupt):DEFINED (__T7Interrupt)?<code 336> (__T7Interrupt):<code 336> (__DefaultInterrupt)
0x000176 0x4 LONG 0x16c4 DEFINED (__AltSI2C2Interrupt)?<code 336> (__AltSI2C2Interrupt):DEFINED (__SI2C2Interrupt)?<code 336> (__SI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x000178 0x4 LONG 0x16c4 DEFINED (__AltMI2C2Interrupt)?<code 336> (__AltMI2C2Interrupt):DEFINED (__MI2C2Interrupt)?<code 336> (__MI2C2Interrupt):<code 336> (__DefaultInterrupt)
0x00017a 0x4 LONG 0x16c4 DEFINED (__AltT8Interrupt)?<code 336> (__AltT8Interrupt):DEFINED (__T8Interrupt)?<code 336> (__T8Interrupt):<code 336> (__DefaultInterrupt)
0x00017c 0x4 LONG 0x16c4 DEFINED (__AltT9Interrupt)?<code 336> (__AltT9Interrupt):DEFINED (__T9Interrupt)?<code 336> (__T9Interrupt):<code 336> (__DefaultInterrupt)
0x00017e 0x4 LONG 0x16c4 DEFINED (__AltINT3Interrupt)?<code 336> (__AltINT3Interrupt):DEFINED (__INT3Interrupt)?<code 336> (__INT3Interrupt):<code 336> (__DefaultInterrupt)
0x000180 0x4 LONG 0x16c4 DEFINED (__AltINT4Interrupt)?<code 336> (__AltINT4Interrupt):DEFINED (__INT4Interrupt)?<code 336> (__INT4Interrupt):<code 336> (__DefaultInterrupt)
0x000182 0x4 LONG 0x16c4 DEFINED (__AltC2RxRdyInterrupt)?<code 336> (__AltC2RxRdyInterrupt):DEFINED (__C2RxRdyInterrupt)?<code 336> (__C2RxRdyInterrupt):<code 336> (__DefaultInterrupt)
0x000184 0x4 LONG 0x16c4 DEFINED (__AltC2Interrupt)?<code 336> (__AltC2Interrupt):DEFINED (__C2Interrupt)?<code 336> (__C2Interrupt):<code 336> (__DefaultInterrupt)
0x000186 0x4 LONG 0x16c4 DEFINED (__AltInterrupt57)?<code 336> (__AltInterrupt57):DEFINED (__Interrupt57)?<code 336> (__Interrupt57):<code 336> (__DefaultInterrupt)
0x000188 0x4 LONG 0x16c4 DEFINED (__AltInterrupt58)?<code 336> (__AltInterrupt58):DEFINED (__Interrupt58)?<code 336> (__Interrupt58):<code 336> (__DefaultInterrupt)
0x00018a 0x4 LONG 0x16c4 DEFINED (__AltDCIErrInterrupt)?<code 336> (__AltDCIErrInterrupt):DEFINED (__DCIErrInterrupt)?<code 336> (__DCIErrInterrupt):<code 336> (__DefaultInterrupt)
0x00018c 0x4 LONG 0x16c4 DEFINED (__AltDCIInterrupt)?<code 336> (__AltDCIInterrupt):DEFINED (__DCIInterrupt)?<code 336> (__DCIInterrupt):<code 336> (__DefaultInterrupt)
0x00018e 0x4 LONG 0x16c4 DEFINED (__AltDMA5Interrupt)?<code 336> (__AltDMA5Interrupt):DEFINED (__DMA5Interrupt)?<code 336> (__DMA5Interrupt):<code 336> (__DefaultInterrupt)
0x000190 0x4 LONG 0x16c4 DEFINED (__AltInterrupt62)?<code 336> (__AltInterrupt62):DEFINED (__Interrupt62)?<code 336> (__Interrupt62):<code 336> (__DefaultInterrupt)
0x000192 0x4 LONG 0x16c4 DEFINED (__AltInterrupt63)?<code 336> (__AltInterrupt63):DEFINED (__Interrupt63)?<code 336> (__Interrupt63):<code 336> (__DefaultInterrupt)
0x000194 0x4 LONG 0x16c4 DEFINED (__AltInterrupt64)?<code 336> (__AltInterrupt64):DEFINED (__Interrupt64)?<code 336> (__Interrupt64):<code 336> (__DefaultInterrupt)
0x000196 0x4 LONG 0x16c4 DEFINED (__AltU1ErrInterrupt)?<code 336> (__AltU1ErrInterrupt):DEFINED (__U1ErrInterrupt)?<code 336> (__U1ErrInterrupt):<code 336> (__DefaultInterrupt)
0x000198 0x4 LONG 0x16c4 DEFINED (__AltU2ErrInterrupt)?<code 336> (__AltU2ErrInterrupt):DEFINED (__U2ErrInterrupt)?<code 336> (__U2ErrInterrupt):<code 336> (__DefaultInterrupt)
0x00019a 0x4 LONG 0x16c4 DEFINED (__AltInterrupt68)?<code 336> (__AltInterrupt68):DEFINED (__Interrupt68)?<code 336> (__Interrupt68):<code 336> (__DefaultInterrupt)
0x00019c 0x4 LONG 0x16c4 DEFINED (__AltDMA6Interrupt)?<code 336> (__AltDMA6Interrupt):DEFINED (__DMA6Interrupt)?<code 336> (__DMA6Interrupt):<code 336> (__DefaultInterrupt)
0x00019e 0x4 LONG 0x16c4 DEFINED (__AltDMA7Interrupt)?<code 336> (__AltDMA7Interrupt):DEFINED (__DMA7Interrupt)?<code 336> (__DMA7Interrupt):<code 336> (__DefaultInterrupt)
0x0001a0 0x4 LONG 0x16c4 DEFINED (__AltC1TxReqInterrupt)?<code 336> (__AltC1TxReqInterrupt):DEFINED (__C1TxReqInterrupt)?<code 336> (__C1TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0001a2 0x4 LONG 0x16c4 DEFINED (__AltC2TxReqInterrupt)?<code 336> (__AltC2TxReqInterrupt):DEFINED (__C2TxReqInterrupt)?<code 336> (__C2TxReqInterrupt):<code 336> (__DefaultInterrupt)
0x0001a4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt72)?<code 336> (__AltInterrupt72):DEFINED (__Interrupt72)?<code 336> (__Interrupt72):<code 336> (__DefaultInterrupt)
0x0001a6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt73)?<code 336> (__AltInterrupt73):DEFINED (__Interrupt73)?<code 336> (__Interrupt73):<code 336> (__DefaultInterrupt)
0x0001a8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt74)?<code 336> (__AltInterrupt74):DEFINED (__Interrupt74)?<code 336> (__Interrupt74):<code 336> (__DefaultInterrupt)
0x0001aa 0x4 LONG 0x16c4 DEFINED (__AltInterrupt75)?<code 336> (__AltInterrupt75):DEFINED (__Interrupt75)?<code 336> (__Interrupt75):<code 336> (__DefaultInterrupt)
0x0001ac 0x4 LONG 0x16c4 DEFINED (__AltInterrupt76)?<code 336> (__AltInterrupt76):DEFINED (__Interrupt76)?<code 336> (__Interrupt76):<code 336> (__DefaultInterrupt)
0x0001ae 0x4 LONG 0x16c4 DEFINED (__AltInterrupt77)?<code 336> (__AltInterrupt77):DEFINED (__Interrupt77)?<code 336> (__Interrupt77):<code 336> (__DefaultInterrupt)
0x0001b0 0x4 LONG 0x16c4 DEFINED (__AltInterrupt78)?<code 336> (__AltInterrupt78):DEFINED (__Interrupt78)?<code 336> (__Interrupt78):<code 336> (__DefaultInterrupt)
0x0001b2 0x4 LONG 0x16c4 DEFINED (__AltInterrupt79)?<code 336> (__AltInterrupt79):DEFINED (__Interrupt79)?<code 336> (__Interrupt79):<code 336> (__DefaultInterrupt)
0x0001b4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt80)?<code 336> (__AltInterrupt80):DEFINED (__Interrupt80)?<code 336> (__Interrupt80):<code 336> (__DefaultInterrupt)
0x0001b6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt81)?<code 336> (__AltInterrupt81):DEFINED (__Interrupt81)?<code 336> (__Interrupt81):<code 336> (__DefaultInterrupt)
0x0001b8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt82)?<code 336> (__AltInterrupt82):DEFINED (__Interrupt82)?<code 336> (__Interrupt82):<code 336> (__DefaultInterrupt)
0x0001ba 0x4 LONG 0x16c4 DEFINED (__AltInterrupt83)?<code 336> (__AltInterrupt83):DEFINED (__Interrupt83)?<code 336> (__Interrupt83):<code 336> (__DefaultInterrupt)
0x0001bc 0x4 LONG 0x16c4 DEFINED (__AltInterrupt84)?<code 336> (__AltInterrupt84):DEFINED (__Interrupt84)?<code 336> (__Interrupt84):<code 336> (__DefaultInterrupt)
0x0001be 0x4 LONG 0x16c4 DEFINED (__AltInterrupt85)?<code 336> (__AltInterrupt85):DEFINED (__Interrupt85)?<code 336> (__Interrupt85):<code 336> (__DefaultInterrupt)
0x0001c0 0x4 LONG 0x16c4 DEFINED (__AltInterrupt86)?<code 336> (__AltInterrupt86):DEFINED (__Interrupt86)?<code 336> (__Interrupt86):<code 336> (__DefaultInterrupt)
0x0001c2 0x4 LONG 0x16c4 DEFINED (__AltInterrupt87)?<code 336> (__AltInterrupt87):DEFINED (__Interrupt87)?<code 336> (__Interrupt87):<code 336> (__DefaultInterrupt)
0x0001c4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt88)?<code 336> (__AltInterrupt88):DEFINED (__Interrupt88)?<code 336> (__Interrupt88):<code 336> (__DefaultInterrupt)
0x0001c6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt89)?<code 336> (__AltInterrupt89):DEFINED (__Interrupt89)?<code 336> (__Interrupt89):<code 336> (__DefaultInterrupt)
0x0001c8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt90)?<code 336> (__AltInterrupt90):DEFINED (__Interrupt90)?<code 336> (__Interrupt90):<code 336> (__DefaultInterrupt)
0x0001ca 0x4 LONG 0x16c4 DEFINED (__AltInterrupt91)?<code 336> (__AltInterrupt91):DEFINED (__Interrupt91)?<code 336> (__Interrupt91):<code 336> (__DefaultInterrupt)
0x0001cc 0x4 LONG 0x16c4 DEFINED (__AltInterrupt92)?<code 336> (__AltInterrupt92):DEFINED (__Interrupt92)?<code 336> (__Interrupt92):<code 336> (__DefaultInterrupt)
0x0001ce 0x4 LONG 0x16c4 DEFINED (__AltInterrupt93)?<code 336> (__AltInterrupt93):DEFINED (__Interrupt93)?<code 336> (__Interrupt93):<code 336> (__DefaultInterrupt)
0x0001d0 0x4 LONG 0x16c4 DEFINED (__AltInterrupt94)?<code 336> (__AltInterrupt94):DEFINED (__Interrupt94)?<code 336> (__Interrupt94):<code 336> (__DefaultInterrupt)
0x0001d2 0x4 LONG 0x16c4 DEFINED (__AltInterrupt95)?<code 336> (__AltInterrupt95):DEFINED (__Interrupt95)?<code 336> (__Interrupt95):<code 336> (__DefaultInterrupt)
0x0001d4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt96)?<code 336> (__AltInterrupt96):DEFINED (__Interrupt96)?<code 336> (__Interrupt96):<code 336> (__DefaultInterrupt)
0x0001d6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt97)?<code 336> (__AltInterrupt97):DEFINED (__Interrupt97)?<code 336> (__Interrupt97):<code 336> (__DefaultInterrupt)
0x0001d8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt98)?<code 336> (__AltInterrupt98):DEFINED (__Interrupt98)?<code 336> (__Interrupt98):<code 336> (__DefaultInterrupt)
0x0001da 0x4 LONG 0x16c4 DEFINED (__AltInterrupt99)?<code 336> (__AltInterrupt99):DEFINED (__Interrupt99)?<code 336> (__Interrupt99):<code 336> (__DefaultInterrupt)
0x0001dc 0x4 LONG 0x16c4 DEFINED (__AltInterrupt100)?<code 336> (__AltInterrupt100):DEFINED (__Interrupt100)?<code 336> (__Interrupt100):<code 336> (__DefaultInterrupt)
0x0001de 0x4 LONG 0x16c4 DEFINED (__AltInterrupt101)?<code 336> (__AltInterrupt101):DEFINED (__Interrupt101)?<code 336> (__Interrupt101):<code 336> (__DefaultInterrupt)
0x0001e0 0x4 LONG 0x16c4 DEFINED (__AltInterrupt102)?<code 336> (__AltInterrupt102):DEFINED (__Interrupt102)?<code 336> (__Interrupt102):<code 336> (__DefaultInterrupt)
0x0001e2 0x4 LONG 0x16c4 DEFINED (__AltInterrupt103)?<code 336> (__AltInterrupt103):DEFINED (__Interrupt103)?<code 336> (__Interrupt103):<code 336> (__DefaultInterrupt)
0x0001e4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt104)?<code 336> (__AltInterrupt104):DEFINED (__Interrupt104)?<code 336> (__Interrupt104):<code 336> (__DefaultInterrupt)
0x0001e6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt105)?<code 336> (__AltInterrupt105):DEFINED (__Interrupt105)?<code 336> (__Interrupt105):<code 336> (__DefaultInterrupt)
0x0001e8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt106)?<code 336> (__AltInterrupt106):DEFINED (__Interrupt106)?<code 336> (__Interrupt106):<code 336> (__DefaultInterrupt)
0x0001ea 0x4 LONG 0x16c4 DEFINED (__AltInterrupt107)?<code 336> (__AltInterrupt107):DEFINED (__Interrupt107)?<code 336> (__Interrupt107):<code 336> (__DefaultInterrupt)
0x0001ec 0x4 LONG 0x16c4 DEFINED (__AltInterrupt108)?<code 336> (__AltInterrupt108):DEFINED (__Interrupt108)?<code 336> (__Interrupt108):<code 336> (__DefaultInterrupt)
0x0001ee 0x4 LONG 0x16c4 DEFINED (__AltInterrupt109)?<code 336> (__AltInterrupt109):DEFINED (__Interrupt109)?<code 336> (__Interrupt109):<code 336> (__DefaultInterrupt)
0x0001f0 0x4 LONG 0x16c4 DEFINED (__AltInterrupt110)?<code 336> (__AltInterrupt110):DEFINED (__Interrupt110)?<code 336> (__Interrupt110):<code 336> (__DefaultInterrupt)
0x0001f2 0x4 LONG 0x16c4 DEFINED (__AltInterrupt111)?<code 336> (__AltInterrupt111):DEFINED (__Interrupt111)?<code 336> (__Interrupt111):<code 336> (__DefaultInterrupt)
0x0001f4 0x4 LONG 0x16c4 DEFINED (__AltInterrupt112)?<code 336> (__AltInterrupt112):DEFINED (__Interrupt112)?<code 336> (__Interrupt112):<code 336> (__DefaultInterrupt)
0x0001f6 0x4 LONG 0x16c4 DEFINED (__AltInterrupt113)?<code 336> (__AltInterrupt113):DEFINED (__Interrupt113)?<code 336> (__Interrupt113):<code 336> (__DefaultInterrupt)
0x0001f8 0x4 LONG 0x16c4 DEFINED (__AltInterrupt114)?<code 336> (__AltInterrupt114):DEFINED (__Interrupt114)?<code 336> (__Interrupt114):<code 336> (__DefaultInterrupt)
0x0001fa 0x4 LONG 0x16c4 DEFINED (__AltInterrupt115)?<code 336> (__AltInterrupt115):DEFINED (__Interrupt115)?<code 336> (__Interrupt115):<code 336> (__DefaultInterrupt)
0x0001fc 0x4 LONG 0x16c4 DEFINED (__AltInterrupt116)?<code 336> (__AltInterrupt116):DEFINED (__Interrupt116)?<code 336> (__Interrupt116):<code 336> (__DefaultInterrupt)
0x0001fe 0x4 LONG 0x16c4 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
0x0120 T5CON = 0x120
0x0120 _T5CON = 0x120
0x0120 _T5CONbits = 0x120
0x0122 TMR6 = 0x122
0x0122 _TMR6 = 0x122
0x0124 TMR7HLD = 0x124
0x0124 _TMR7HLD = 0x124
0x0126 TMR7 = 0x126
0x0126 _TMR7 = 0x126
0x0128 PR6 = 0x128
0x0128 _PR6 = 0x128
0x012a PR7 = 0x12a
0x012a _PR7 = 0x12a
0x012c T6CON = 0x12c
0x012c _T6CON = 0x12c
0x012c _T6CONbits = 0x12c
0x012e T7CON = 0x12e
0x012e _T7CON = 0x12e
0x012e _T7CONbits = 0x12e
0x0130 TMR8 = 0x130
0x0130 _TMR8 = 0x130
0x0132 TMR9HLD = 0x132
0x0132 _TMR9HLD = 0x132
0x0134 TMR9 = 0x134
0x0134 _TMR9 = 0x134
0x0136 PR8 = 0x136
0x0136 _PR8 = 0x136
0x0138 PR9 = 0x138
0x0138 _PR9 = 0x138
0x013a T8CON = 0x13a
0x013a _T8CON = 0x13a
0x013a _T8CONbits = 0x13a
0x013c T9CON = 0x13c
0x013c _T9CON = 0x13c
0x013c _T9CONbits = 0x13c
0x0140 IC1BUF = 0x140
0x0140 _IC1BUF = 0x140
0x0142 IC1CON = 0x142
0x0142 _IC1CON = 0x142
0x0142 _IC1CONbits = 0x142
0x0144 IC2BUF = 0x144
0x0144 _IC2BUF = 0x144
0x0146 IC2CON = 0x146
0x0146 _IC2CON = 0x146
0x0146 _IC2CONbits = 0x146
0x0148 IC3BUF = 0x148
0x0148 _IC3BUF = 0x148
0x014a IC3CON = 0x14a
0x014a _IC3CON = 0x14a
0x014a _IC3CONbits = 0x14a
0x014c IC4BUF = 0x14c
0x014c _IC4BUF = 0x14c
0x014e IC4CON = 0x14e
0x014e _IC4CON = 0x14e
0x014e _IC4CONbits = 0x14e
0x0150 IC5BUF = 0x150
0x0150 _IC5BUF = 0x150
0x0152 IC5CON = 0x152
0x0152 _IC5CON = 0x152
0x0152 _IC5CONbits = 0x152
0x0154 IC6BUF = 0x154
0x0154 _IC6BUF = 0x154
0x0156 IC6CON = 0x156
0x0156 _IC6CON = 0x156
0x0156 _IC6CONbits = 0x156
0x0158 IC7BUF = 0x158
0x0158 _IC7BUF = 0x158
0x015a IC7CON = 0x15a
0x015a _IC7CON = 0x15a
0x015a _IC7CONbits = 0x15a
0x015c IC8BUF = 0x15c
0x015c _IC8BUF = 0x15c
0x015e IC8CON = 0x15e
0x015e _IC8CON = 0x15e
0x015e _IC8CONbits = 0x15e
0x0180 OC1RS = 0x180
0x0180 _OC1RS = 0x180
0x0182 OC1R = 0x182
0x0182 _OC1R = 0x182
0x0184 OC1CON = 0x184
0x0184 _OC1CON = 0x184
0x0184 _OC1CONbits = 0x184
0x0186 OC2RS = 0x186
0x0186 _OC2RS = 0x186
0x0188 OC2R = 0x188
0x0188 _OC2R = 0x188
0x018a OC2CON = 0x18a
0x018a _OC2CON = 0x18a
0x018a _OC2CONbits = 0x18a
0x018c OC3RS = 0x18c
0x018c _OC3RS = 0x18c
0x018e OC3R = 0x18e
0x018e _OC3R = 0x18e
0x0190 OC3CON = 0x190
0x0190 _OC3CON = 0x190
0x0190 _OC3CONbits = 0x190
0x0192 OC4RS = 0x192
0x0192 _OC4RS = 0x192
0x0194 OC4R = 0x194
0x0194 _OC4R = 0x194
0x0196 OC4CON = 0x196
0x0196 _OC4CON = 0x196
0x0196 _OC4CONbits = 0x196
0x0198 OC5RS = 0x198
0x0198 _OC5RS = 0x198
0x019a OC5R = 0x19a
0x019a _OC5R = 0x19a
0x019c OC5CON = 0x19c
0x019c _OC5CON = 0x19c
0x019c _OC5CONbits = 0x19c
0x019e OC6RS = 0x19e
0x019e _OC6RS = 0x19e
0x01a0 OC6R = 0x1a0
0x01a0 _OC6R = 0x1a0