USB_gadget.map
80.8 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
Membre d'archive inclu pour satisfaire la référence par fichier (symbole)
/usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
obj/HIDParser.o (__mulhi3)
/usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
obj/USB_gadget.o (__udivmodsi4)
/usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o (exit)
/usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
obj/USB_gadget.o (__do_copy_data)
/usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
obj/USB_gadget.o (__do_clear_bss)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
obj/RNDISClassDevice.o (memcpy_P)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
obj/CDCClassDevice.o (__strlen_P)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
obj/HIDClassDevice.o (memcmp)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
obj/HIDClassDevice.o (memcpy)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
obj/HIDClassDevice.o (memset)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
obj/EndpointStream_AVR8.o (eeprom_read_byte)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
obj/EndpointStream_AVR8.o (eeprom_update_byte)
Allocation des symboles communs
Symbole commun taille fichier
USB_IsInitialized 0x1 obj/USBTask.o
USB_Device_ConfigurationNumber
0x1 obj/DeviceStandardReq.o
USB_Device_CurrentlySelfPowered
0x1 obj/DeviceStandardReq.o
USB_ControlRequest 0x8 obj/USBTask.o
USB_Device_RemoteWakeupEnabled
0x1 obj/DeviceStandardReq.o
Sections d'entrée éliminées
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
.text 0x0000000000000000 0x0 obj/USB_gadget.o
.text 0x0000000000000000 0x0 obj/Descriptors.o
.data 0x0000000000000000 0x0 obj/Descriptors.o
.bss 0x0000000000000000 0x0 obj/Descriptors.o
.text 0x0000000000000000 0x0 obj/HIDParser.o
.data 0x0000000000000000 0x0 obj/HIDParser.o
.bss 0x0000000000000000 0x0 obj/HIDParser.o
.text.USB_ProcessHIDReport
0x0000000000000000 0x6fa obj/HIDParser.o
.text.USB_GetHIDReportItemInfo
0x0000000000000000 0xbc obj/HIDParser.o
.text.USB_SetHIDReportItemInfo
0x0000000000000000 0xc0 obj/HIDParser.o
.text.USB_GetHIDReportSize
0x0000000000000000 0x54 obj/HIDParser.o
.debug_info 0x0000000000000000 0x738 obj/HIDParser.o
.debug_abbrev 0x0000000000000000 0x21e obj/HIDParser.o
.debug_loc 0x0000000000000000 0xa78 obj/HIDParser.o
.debug_aranges
0x0000000000000000 0x38 obj/HIDParser.o
.debug_ranges 0x0000000000000000 0xd0 obj/HIDParser.o
.debug_line 0x0000000000000000 0x56f obj/HIDParser.o
.debug_str 0x0000000000000000 0x6c4 obj/HIDParser.o
.comment 0x0000000000000000 0x12 obj/HIDParser.o
.debug_frame 0x0000000000000000 0x11c obj/HIDParser.o
.text 0x0000000000000000 0x0 obj/Device_AVR8.o
.data 0x0000000000000000 0x0 obj/Device_AVR8.o
.bss 0x0000000000000000 0x0 obj/Device_AVR8.o
.text.USB_Device_SendRemoteWakeup
0x0000000000000000 0x2a obj/Device_AVR8.o
.debug_info 0x0000000000000000 0xd2 obj/Device_AVR8.o
.debug_abbrev 0x0000000000000000 0x80 obj/Device_AVR8.o
.debug_aranges
0x0000000000000000 0x20 obj/Device_AVR8.o
.debug_ranges 0x0000000000000000 0x10 obj/Device_AVR8.o
.debug_line 0x0000000000000000 0xfe obj/Device_AVR8.o
.debug_str 0x0000000000000000 0x200 obj/Device_AVR8.o
.comment 0x0000000000000000 0x12 obj/Device_AVR8.o
.debug_frame 0x0000000000000000 0x24 obj/Device_AVR8.o
.text 0x0000000000000000 0x0 obj/EndpointStream_AVR8.o
.data 0x0000000000000000 0x0 obj/EndpointStream_AVR8.o
.bss 0x0000000000000000 0x0 obj/EndpointStream_AVR8.o
.text.Endpoint_Discard_Stream
0x0000000000000000 0x80 obj/EndpointStream_AVR8.o
.text.Endpoint_Null_Stream
0x0000000000000000 0x80 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Stream_LE
0x0000000000000000 0x96 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Stream_BE
0x0000000000000000 0xa2 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Stream_LE
0x0000000000000000 0x96 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Stream_BE
0x0000000000000000 0xa2 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_PStream_LE
0x0000000000000000 0x9a obj/EndpointStream_AVR8.o
.text.Endpoint_Write_PStream_BE
0x0000000000000000 0xa4 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_EStream_LE
0x0000000000000000 0x9e obj/EndpointStream_AVR8.o
.text.Endpoint_Write_EStream_BE
0x0000000000000000 0xa6 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_EStream_LE
0x0000000000000000 0x9e obj/EndpointStream_AVR8.o
.text.Endpoint_Read_EStream_BE
0x0000000000000000 0xa6 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Control_Stream_BE
0x0000000000000000 0xc2 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Control_Stream_LE
0x0000000000000000 0x74 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Control_Stream_BE
0x0000000000000000 0x76 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Control_PStream_BE
0x0000000000000000 0xc4 obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Control_EStream_LE
0x0000000000000000 0xea obj/EndpointStream_AVR8.o
.text.Endpoint_Write_Control_EStream_BE
0x0000000000000000 0xf6 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Control_EStream_LE
0x0000000000000000 0x88 obj/EndpointStream_AVR8.o
.text.Endpoint_Read_Control_EStream_BE
0x0000000000000000 0x86 obj/EndpointStream_AVR8.o
.text 0x0000000000000000 0x0 obj/Endpoint_AVR8.o
.data 0x0000000000000000 0x0 obj/Endpoint_AVR8.o
.bss 0x0000000000000000 0x0 obj/Endpoint_AVR8.o
.text.Endpoint_ClearEndpoints
0x0000000000000000 0x28 obj/Endpoint_AVR8.o
.text 0x0000000000000000 0x0 obj/Host_AVR8.o
.data 0x0000000000000000 0x0 obj/Host_AVR8.o
.bss 0x0000000000000000 0x0 obj/Host_AVR8.o
.debug_info 0x0000000000000000 0x56 obj/Host_AVR8.o
.debug_abbrev 0x0000000000000000 0x26 obj/Host_AVR8.o
.debug_aranges
0x0000000000000000 0x18 obj/Host_AVR8.o
.debug_line 0x0000000000000000 0x1a obj/Host_AVR8.o
.debug_str 0x0000000000000000 0x19f obj/Host_AVR8.o
.comment 0x0000000000000000 0x12 obj/Host_AVR8.o
.text 0x0000000000000000 0x0 obj/PipeStream_AVR8.o
.data 0x0000000000000000 0x0 obj/PipeStream_AVR8.o
.bss 0x0000000000000000 0x0 obj/PipeStream_AVR8.o
.debug_info 0x0000000000000000 0x56 obj/PipeStream_AVR8.o
.debug_abbrev 0x0000000000000000 0x26 obj/PipeStream_AVR8.o
.debug_aranges
0x0000000000000000 0x18 obj/PipeStream_AVR8.o
.debug_line 0x0000000000000000 0x1a obj/PipeStream_AVR8.o
.debug_str 0x0000000000000000 0x1a5 obj/PipeStream_AVR8.o
.comment 0x0000000000000000 0x12 obj/PipeStream_AVR8.o
.text 0x0000000000000000 0x0 obj/Pipe_AVR8.o
.data 0x0000000000000000 0x0 obj/Pipe_AVR8.o
.bss 0x0000000000000000 0x0 obj/Pipe_AVR8.o
.debug_info 0x0000000000000000 0x56 obj/Pipe_AVR8.o
.debug_abbrev 0x0000000000000000 0x26 obj/Pipe_AVR8.o
.debug_aranges
0x0000000000000000 0x18 obj/Pipe_AVR8.o
.debug_line 0x0000000000000000 0x1a obj/Pipe_AVR8.o
.debug_str 0x0000000000000000 0x19f obj/Pipe_AVR8.o
.comment 0x0000000000000000 0x12 obj/Pipe_AVR8.o
.text 0x0000000000000000 0x0 obj/USBController_AVR8.o
.data 0x0000000000000000 0x0 obj/USBController_AVR8.o
.bss 0x0000000000000000 0x0 obj/USBController_AVR8.o
.text.USB_Disable
0x0000000000000000 0x2e obj/USBController_AVR8.o
.text 0x0000000000000000 0x0 obj/USBInterrupt_AVR8.o
.data 0x0000000000000000 0x0 obj/USBInterrupt_AVR8.o
.bss 0x0000000000000000 0x0 obj/USBInterrupt_AVR8.o
.text 0x0000000000000000 0x0 obj/ConfigDescriptors.o
.data 0x0000000000000000 0x0 obj/ConfigDescriptors.o
.bss 0x0000000000000000 0x0 obj/ConfigDescriptors.o
.text.USB_GetNextDescriptor
0x0000000000000000 0x3c obj/ConfigDescriptors.o
.text.USB_GetNextDescriptorOfType
0x0000000000000000 0x48 obj/ConfigDescriptors.o
.text.USB_GetNextDescriptorOfTypeBefore
0x0000000000000000 0x58 obj/ConfigDescriptors.o
.text.USB_GetNextDescriptorOfTypeAfter
0x0000000000000000 0x3e obj/ConfigDescriptors.o
.text.USB_GetNextDescriptorComp
0x0000000000000000 0x66 obj/ConfigDescriptors.o
.debug_info 0x0000000000000000 0x3cd obj/ConfigDescriptors.o
.debug_abbrev 0x0000000000000000 0x183 obj/ConfigDescriptors.o
.debug_loc 0x0000000000000000 0x5bd obj/ConfigDescriptors.o
.debug_aranges
0x0000000000000000 0x40 obj/ConfigDescriptors.o
.debug_ranges 0x0000000000000000 0x30 obj/ConfigDescriptors.o
.debug_line 0x0000000000000000 0x1ce obj/ConfigDescriptors.o
.debug_str 0x0000000000000000 0x3e8 obj/ConfigDescriptors.o
.comment 0x0000000000000000 0x12 obj/ConfigDescriptors.o
.debug_frame 0x0000000000000000 0x108 obj/ConfigDescriptors.o
.text 0x0000000000000000 0x0 obj/DeviceStandardReq.o
.data 0x0000000000000000 0x0 obj/DeviceStandardReq.o
.bss 0x0000000000000000 0x0 obj/DeviceStandardReq.o
.text 0x0000000000000000 0x0 obj/Events.o
.data 0x0000000000000000 0x0 obj/Events.o
.bss 0x0000000000000000 0x0 obj/Events.o
.text 0x0000000000000000 0x0 obj/HostStandardReq.o
.data 0x0000000000000000 0x0 obj/HostStandardReq.o
.bss 0x0000000000000000 0x0 obj/HostStandardReq.o
.debug_info 0x0000000000000000 0x56 obj/HostStandardReq.o
.debug_abbrev 0x0000000000000000 0x26 obj/HostStandardReq.o
.debug_aranges
0x0000000000000000 0x18 obj/HostStandardReq.o
.debug_line 0x0000000000000000 0x1a obj/HostStandardReq.o
.debug_str 0x0000000000000000 0x1a0 obj/HostStandardReq.o
.comment 0x0000000000000000 0x12 obj/HostStandardReq.o
.text 0x0000000000000000 0x0 obj/USBTask.o
.data 0x0000000000000000 0x0 obj/USBTask.o
.bss 0x0000000000000000 0x0 obj/USBTask.o
.text 0x0000000000000000 0x0 obj/AudioClassDevice.o
.data 0x0000000000000000 0x0 obj/AudioClassDevice.o
.bss 0x0000000000000000 0x0 obj/AudioClassDevice.o
.text.Audio_Device_ConfigureEndpoints
0x0000000000000000 0x32 obj/AudioClassDevice.o
.text.Audio_Device_Event_Stub
0x0000000000000000 0x2 obj/AudioClassDevice.o
.text.Audio_Device_ProcessControlRequest
0x0000000000000000 0x2e4 obj/AudioClassDevice.o
.debug_info 0x0000000000000000 0x8ea obj/AudioClassDevice.o
.debug_abbrev 0x0000000000000000 0x205 obj/AudioClassDevice.o
.debug_loc 0x0000000000000000 0x37c obj/AudioClassDevice.o
.debug_aranges
0x0000000000000000 0x30 obj/AudioClassDevice.o
.debug_ranges 0x0000000000000000 0x20 obj/AudioClassDevice.o
.debug_line 0x0000000000000000 0x3e3 obj/AudioClassDevice.o
.debug_str 0x0000000000000000 0x6ac obj/AudioClassDevice.o
.comment 0x0000000000000000 0x12 obj/AudioClassDevice.o
.debug_frame 0x0000000000000000 0xa8 obj/AudioClassDevice.o
.text 0x0000000000000000 0x0 obj/CDCClassDevice.o
.data 0x0000000000000000 0x0 obj/CDCClassDevice.o
.bss 0x0000000000000000 0x0 obj/CDCClassDevice.o
.text.CDC_Device_SendString
0x0000000000000000 0x40 obj/CDCClassDevice.o
.text.CDC_Device_SendString_P
0x0000000000000000 0x50 obj/CDCClassDevice.o
.text.CDC_Device_SendData
0x0000000000000000 0x32 obj/CDCClassDevice.o
.text.CDC_Device_SendData_P
0x0000000000000000 0x32 obj/CDCClassDevice.o
.text.CDC_Device_putchar
0x0000000000000000 0x22 obj/CDCClassDevice.o
.text.CDC_Device_BytesReceived
0x0000000000000000 0x48 obj/CDCClassDevice.o
.text.CDC_Device_getchar
0x0000000000000000 0x14 obj/CDCClassDevice.o
.text.CDC_Device_getchar_Blocking
0x0000000000000000 0x30 obj/CDCClassDevice.o
.rodata 0x0000000000000000 0x8 obj/CDCClassDevice.o
.text.CDC_Device_SendControlLineStateChange
0x0000000000000000 0x8c obj/CDCClassDevice.o
.text.CDC_Device_CreateStream
0x0000000000000000 0x26 obj/CDCClassDevice.o
.text.CDC_Device_CreateBlockingStream
0x0000000000000000 0x26 obj/CDCClassDevice.o
.text 0x0000000000000000 0x0 obj/HIDClassDevice.o
.data 0x0000000000000000 0x0 obj/HIDClassDevice.o
.bss 0x0000000000000000 0x0 obj/HIDClassDevice.o
.text.HID_Device_ProcessControlRequest
0x0000000000000000 0x282 obj/HIDClassDevice.o
.text.HID_Device_ConfigureEndpoints
0x0000000000000000 0x28 obj/HIDClassDevice.o
.text.HID_Device_USBTask
0x0000000000000000 0x18c obj/HIDClassDevice.o
.debug_info 0x0000000000000000 0x9f5 obj/HIDClassDevice.o
.debug_abbrev 0x0000000000000000 0x264 obj/HIDClassDevice.o
.debug_loc 0x0000000000000000 0x44b obj/HIDClassDevice.o
.debug_aranges
0x0000000000000000 0x30 obj/HIDClassDevice.o
.debug_ranges 0x0000000000000000 0x20 obj/HIDClassDevice.o
.debug_line 0x0000000000000000 0x4ed obj/HIDClassDevice.o
.debug_str 0x0000000000000000 0x6fe obj/HIDClassDevice.o
.comment 0x0000000000000000 0x12 obj/HIDClassDevice.o
.debug_frame 0x0000000000000000 0xe8 obj/HIDClassDevice.o
.text 0x0000000000000000 0x0 obj/MassStorageClassDevice.o
.data 0x0000000000000000 0x0 obj/MassStorageClassDevice.o
.bss 0x0000000000000000 0x0 obj/MassStorageClassDevice.o
.text.MS_Device_ProcessControlRequest
0x0000000000000000 0x86 obj/MassStorageClassDevice.o
.text.MS_Device_ConfigureEndpoints
0x0000000000000000 0x3e obj/MassStorageClassDevice.o
.text.MS_Device_USBTask
0x0000000000000000 0x232 obj/MassStorageClassDevice.o
.debug_info 0x0000000000000000 0x949 obj/MassStorageClassDevice.o
.debug_abbrev 0x0000000000000000 0x2a8 obj/MassStorageClassDevice.o
.debug_loc 0x0000000000000000 0x2b8 obj/MassStorageClassDevice.o
.debug_aranges
0x0000000000000000 0x30 obj/MassStorageClassDevice.o
.debug_ranges 0x0000000000000000 0x20 obj/MassStorageClassDevice.o
.debug_line 0x0000000000000000 0x479 obj/MassStorageClassDevice.o
.debug_str 0x0000000000000000 0x7f8 obj/MassStorageClassDevice.o
.comment 0x0000000000000000 0x12 obj/MassStorageClassDevice.o
.debug_frame 0x0000000000000000 0x80 obj/MassStorageClassDevice.o
.text 0x0000000000000000 0x0 obj/MIDIClassDevice.o
.data 0x0000000000000000 0x0 obj/MIDIClassDevice.o
.bss 0x0000000000000000 0x0 obj/MIDIClassDevice.o
.text.MIDI_Device_ConfigureEndpoints
0x0000000000000000 0x32 obj/MIDIClassDevice.o
.text.MIDI_Device_SendEventPacket
0x0000000000000000 0x44 obj/MIDIClassDevice.o
.text.MIDI_Device_Flush
0x0000000000000000 0x2a obj/MIDIClassDevice.o
.text.MIDI_Device_USBTask
0x0000000000000000 0x20 obj/MIDIClassDevice.o
.text.MIDI_Device_ReceiveEventPacket
0x0000000000000000 0x48 obj/MIDIClassDevice.o
.debug_info 0x0000000000000000 0x629 obj/MIDIClassDevice.o
.debug_abbrev 0x0000000000000000 0x22b obj/MIDIClassDevice.o
.debug_loc 0x0000000000000000 0x304 obj/MIDIClassDevice.o
.debug_aranges
0x0000000000000000 0x40 obj/MIDIClassDevice.o
.debug_ranges 0x0000000000000000 0x30 obj/MIDIClassDevice.o
.debug_line 0x0000000000000000 0x320 obj/MIDIClassDevice.o
.debug_str 0x0000000000000000 0x66d obj/MIDIClassDevice.o
.comment 0x0000000000000000 0x12 obj/MIDIClassDevice.o
.debug_frame 0x0000000000000000 0x70 obj/MIDIClassDevice.o
.text 0x0000000000000000 0x0 obj/PrinterClassDevice.o
.data 0x0000000000000000 0x0 obj/PrinterClassDevice.o
.bss 0x0000000000000000 0x0 obj/PrinterClassDevice.o
.text.PRNT_Device_ConfigureEndpoints
0x0000000000000000 0x38 obj/PrinterClassDevice.o
.text.PRNT_Device_SendString
0x0000000000000000 0x30 obj/PrinterClassDevice.o
.text.PRNT_Device_SendData
0x0000000000000000 0x22 obj/PrinterClassDevice.o
.text.PRNT_Device_SendByte
0x0000000000000000 0x3e obj/PrinterClassDevice.o
.text.PRNT_Device_putchar
0x0000000000000000 0x22 obj/PrinterClassDevice.o
.text.PRNT_Device_Flush
0x0000000000000000 0x44 obj/PrinterClassDevice.o
.text.PRNT_Device_USBTask
0x0000000000000000 0x9a obj/PrinterClassDevice.o
.text.PRNT_Device_BytesReceived
0x0000000000000000 0x38 obj/PrinterClassDevice.o
.text.PRNT_Device_ReceiveByte
0x0000000000000000 0x48 obj/PrinterClassDevice.o
.text.PRNT_Device_getchar
0x0000000000000000 0x14 obj/PrinterClassDevice.o
.text.PRNT_Device_getchar_Blocking
0x0000000000000000 0x30 obj/PrinterClassDevice.o
.text.PRNT_Device_CreateStream
0x0000000000000000 0x26 obj/PrinterClassDevice.o
.text.PRNT_Device_CreateBlockingStream
0x0000000000000000 0x26 obj/PrinterClassDevice.o
.text.PRNT_Device_Event_Stub
0x0000000000000000 0x2 obj/PrinterClassDevice.o
.text.PRNT_Device_ProcessControlRequest
0x0000000000000000 0xd6 obj/PrinterClassDevice.o
.debug_info 0x0000000000000000 0xcd3 obj/PrinterClassDevice.o
.debug_abbrev 0x0000000000000000 0x343 obj/PrinterClassDevice.o
.debug_loc 0x0000000000000000 0x837 obj/PrinterClassDevice.o
.debug_aranges
0x0000000000000000 0x90 obj/PrinterClassDevice.o
.debug_ranges 0x0000000000000000 0x80 obj/PrinterClassDevice.o
.debug_line 0x0000000000000000 0x67f obj/PrinterClassDevice.o
.debug_str 0x0000000000000000 0x936 obj/PrinterClassDevice.o
.comment 0x0000000000000000 0x12 obj/PrinterClassDevice.o
.debug_frame 0x0000000000000000 0x13c obj/PrinterClassDevice.o
.text 0x0000000000000000 0x0 obj/RNDISClassDevice.o
.data 0x0000000000000000 0x0 obj/RNDISClassDevice.o
.bss 0x0000000000000000 0x0 obj/RNDISClassDevice.o
.text.RNDIS_Device_ProcessControlRequest
0x0000000000000000 0x4ec obj/RNDISClassDevice.o
.text.RNDIS_Device_ConfigureEndpoints
0x0000000000000000 0x64 obj/RNDISClassDevice.o
.rodata 0x0000000000000000 0x8 obj/RNDISClassDevice.o
.text.RNDIS_Device_USBTask
0x0000000000000000 0x7e obj/RNDISClassDevice.o
.text.RNDIS_Device_IsPacketReceived
0x0000000000000000 0x26 obj/RNDISClassDevice.o
.text.RNDIS_Device_ReadPacket
0x0000000000000000 0xb4 obj/RNDISClassDevice.o
.text.RNDIS_Device_SendPacket
0x0000000000000000 0xd2 obj/RNDISClassDevice.o
.progmem.data 0x0000000000000000 0x6c obj/RNDISClassDevice.o
.debug_info 0x0000000000000000 0x1154 obj/RNDISClassDevice.o
.debug_abbrev 0x0000000000000000 0x36f obj/RNDISClassDevice.o
.debug_loc 0x0000000000000000 0xdce obj/RNDISClassDevice.o
.debug_aranges
0x0000000000000000 0x48 obj/RNDISClassDevice.o
.debug_ranges 0x0000000000000000 0x88 obj/RNDISClassDevice.o
.debug_line 0x0000000000000000 0x692 obj/RNDISClassDevice.o
.debug_str 0x0000000000000000 0xd6e obj/RNDISClassDevice.o
.comment 0x0000000000000000 0x12 obj/RNDISClassDevice.o
.debug_frame 0x0000000000000000 0x10c obj/RNDISClassDevice.o
.text 0x0000000000000000 0x0 obj/AndroidAccessoryClassHost.o
.data 0x0000000000000000 0x0 obj/AndroidAccessoryClassHost.o
.bss 0x0000000000000000 0x0 obj/AndroidAccessoryClassHost.o
.debug_info 0x0000000000000000 0x56 obj/AndroidAccessoryClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/AndroidAccessoryClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/AndroidAccessoryClassHost.o
.debug_line 0x0000000000000000 0x1a obj/AndroidAccessoryClassHost.o
.debug_str 0x0000000000000000 0x1b0 obj/AndroidAccessoryClassHost.o
.comment 0x0000000000000000 0x12 obj/AndroidAccessoryClassHost.o
.text 0x0000000000000000 0x0 obj/AudioClassHost.o
.data 0x0000000000000000 0x0 obj/AudioClassHost.o
.bss 0x0000000000000000 0x0 obj/AudioClassHost.o
.debug_info 0x0000000000000000 0x56 obj/AudioClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/AudioClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/AudioClassHost.o
.debug_line 0x0000000000000000 0x1a obj/AudioClassHost.o
.debug_str 0x0000000000000000 0x1a5 obj/AudioClassHost.o
.comment 0x0000000000000000 0x12 obj/AudioClassHost.o
.text 0x0000000000000000 0x0 obj/CDCClassHost.o
.data 0x0000000000000000 0x0 obj/CDCClassHost.o
.bss 0x0000000000000000 0x0 obj/CDCClassHost.o
.debug_info 0x0000000000000000 0x56 obj/CDCClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/CDCClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/CDCClassHost.o
.debug_line 0x0000000000000000 0x1a obj/CDCClassHost.o
.debug_str 0x0000000000000000 0x1a3 obj/CDCClassHost.o
.comment 0x0000000000000000 0x12 obj/CDCClassHost.o
.text 0x0000000000000000 0x0 obj/HIDClassHost.o
.data 0x0000000000000000 0x0 obj/HIDClassHost.o
.bss 0x0000000000000000 0x0 obj/HIDClassHost.o
.debug_info 0x0000000000000000 0x56 obj/HIDClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/HIDClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/HIDClassHost.o
.debug_line 0x0000000000000000 0x1a obj/HIDClassHost.o
.debug_str 0x0000000000000000 0x1a3 obj/HIDClassHost.o
.comment 0x0000000000000000 0x12 obj/HIDClassHost.o
.text 0x0000000000000000 0x0 obj/MassStorageClassHost.o
.data 0x0000000000000000 0x0 obj/MassStorageClassHost.o
.bss 0x0000000000000000 0x0 obj/MassStorageClassHost.o
.debug_info 0x0000000000000000 0x56 obj/MassStorageClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/MassStorageClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/MassStorageClassHost.o
.debug_line 0x0000000000000000 0x1a obj/MassStorageClassHost.o
.debug_str 0x0000000000000000 0x1ab obj/MassStorageClassHost.o
.comment 0x0000000000000000 0x12 obj/MassStorageClassHost.o
.text 0x0000000000000000 0x0 obj/MIDIClassHost.o
.data 0x0000000000000000 0x0 obj/MIDIClassHost.o
.bss 0x0000000000000000 0x0 obj/MIDIClassHost.o
.debug_info 0x0000000000000000 0x56 obj/MIDIClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/MIDIClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/MIDIClassHost.o
.debug_line 0x0000000000000000 0x1a obj/MIDIClassHost.o
.debug_str 0x0000000000000000 0x1a4 obj/MIDIClassHost.o
.comment 0x0000000000000000 0x12 obj/MIDIClassHost.o
.text 0x0000000000000000 0x0 obj/PrinterClassHost.o
.data 0x0000000000000000 0x0 obj/PrinterClassHost.o
.bss 0x0000000000000000 0x0 obj/PrinterClassHost.o
.debug_info 0x0000000000000000 0x56 obj/PrinterClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/PrinterClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/PrinterClassHost.o
.debug_line 0x0000000000000000 0x1a obj/PrinterClassHost.o
.debug_str 0x0000000000000000 0x1a7 obj/PrinterClassHost.o
.comment 0x0000000000000000 0x12 obj/PrinterClassHost.o
.text 0x0000000000000000 0x0 obj/RNDISClassHost.o
.data 0x0000000000000000 0x0 obj/RNDISClassHost.o
.bss 0x0000000000000000 0x0 obj/RNDISClassHost.o
.debug_info 0x0000000000000000 0x56 obj/RNDISClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/RNDISClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/RNDISClassHost.o
.debug_line 0x0000000000000000 0x1a obj/RNDISClassHost.o
.debug_str 0x0000000000000000 0x1a5 obj/RNDISClassHost.o
.comment 0x0000000000000000 0x12 obj/RNDISClassHost.o
.text 0x0000000000000000 0x0 obj/StillImageClassHost.o
.data 0x0000000000000000 0x0 obj/StillImageClassHost.o
.bss 0x0000000000000000 0x0 obj/StillImageClassHost.o
.debug_info 0x0000000000000000 0x56 obj/StillImageClassHost.o
.debug_abbrev 0x0000000000000000 0x26 obj/StillImageClassHost.o
.debug_aranges
0x0000000000000000 0x18 obj/StillImageClassHost.o
.debug_line 0x0000000000000000 0x1a obj/StillImageClassHost.o
.debug_str 0x0000000000000000 0x1aa obj/StillImageClassHost.o
.comment 0x0000000000000000 0x12 obj/StillImageClassHost.o
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.mul
0x0000000000000000 0x22 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.div
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.prologue
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.builtins
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.fmul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text.libgcc.fixed
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc.mul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc.prologue
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc.builtins
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc.fmul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text.libgcc.fixed
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.mul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.div
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.prologue
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.builtins
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.fmul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text.libgcc.fixed
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.mul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.div
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.prologue
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.builtins
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.fmul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text.libgcc.fixed
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.mul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.div
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.prologue
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.builtins
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.fmul
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text.libgcc.fixed
0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
.text.avr-libc
0x0000000000000000 0x12 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
.text.avr-libc
0x0000000000000000 0x12 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
.text.avr-libc
0x0000000000000000 0x1a /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
.text.avr-libc
0x0000000000000000 0x12 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
.text.avr-libc
0x0000000000000000 0xe /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
.text.avr-libc
0x0000000000000000 0x10 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
.text 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
.data 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
.bss 0x0000000000000000 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
.text.avr-libc
0x0000000000000000 0x24 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
Configuration mémoire
Nom Origine Longueur Attributs
text 0x0000000000000000 0x0000000000010000 xr
data 0x0000000000800060 0x000000000000ffa0 rw !x
eeprom 0x0000000000810000 0x0000000000010000 rw !x
fuse 0x0000000000820000 0x0000000000000400 rw !x
lock 0x0000000000830000 0x0000000000000400 rw !x
signature 0x0000000000840000 0x0000000000000400 rw !x
user_signatures 0x0000000000850000 0x0000000000000400 rw !x
*default* 0x0000000000000000 0xffffffffffffffff
Script de l'éditeurs de liens and table de projection mémoire
Adresse de la section .data initialisé à 0x800100
LOAD /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
LOAD obj/USB_gadget.o
LOAD obj/Descriptors.o
LOAD obj/HIDParser.o
LOAD obj/Device_AVR8.o
LOAD obj/EndpointStream_AVR8.o
LOAD obj/Endpoint_AVR8.o
LOAD obj/Host_AVR8.o
LOAD obj/PipeStream_AVR8.o
LOAD obj/Pipe_AVR8.o
LOAD obj/USBController_AVR8.o
LOAD obj/USBInterrupt_AVR8.o
LOAD obj/ConfigDescriptors.o
LOAD obj/DeviceStandardReq.o
LOAD obj/Events.o
LOAD obj/HostStandardReq.o
LOAD obj/USBTask.o
LOAD obj/AudioClassDevice.o
LOAD obj/CDCClassDevice.o
LOAD obj/HIDClassDevice.o
LOAD obj/MassStorageClassDevice.o
LOAD obj/MIDIClassDevice.o
LOAD obj/PrinterClassDevice.o
LOAD obj/RNDISClassDevice.o
LOAD obj/AndroidAccessoryClassHost.o
LOAD obj/AudioClassHost.o
LOAD obj/CDCClassHost.o
LOAD obj/HIDClassHost.o
LOAD obj/MassStorageClassHost.o
LOAD obj/MIDIClassHost.o
LOAD obj/PrinterClassHost.o
LOAD obj/RNDISClassHost.o
LOAD obj/StillImageClassHost.o
LOAD /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libm.a
START GROUP
LOAD /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a
LOAD /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libm.a
LOAD /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a
LOAD /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a
END GROUP
.hash
*(.hash)
.dynsym
*(.dynsym)
.dynstr
*(.dynstr)
.gnu.version
*(.gnu.version)
.gnu.version_d
*(.gnu.version_d)
.gnu.version_r
*(.gnu.version_r)
.rel.init
*(.rel.init)
.rela.init
*(.rela.init)
.rel.text
*(.rel.text)
*(.rel.text.*)
*(.rel.gnu.linkonce.t*)
.rela.text
*(.rela.text)
*(.rela.text.*)
*(.rela.gnu.linkonce.t*)
.rel.fini
*(.rel.fini)
.rela.fini
*(.rela.fini)
.rel.rodata
*(.rel.rodata)
*(.rel.rodata.*)
*(.rel.gnu.linkonce.r*)
.rela.rodata
*(.rela.rodata)
*(.rela.rodata.*)
*(.rela.gnu.linkonce.r*)
.rel.data
*(.rel.data)
*(.rel.data.*)
*(.rel.gnu.linkonce.d*)
.rela.data
*(.rela.data)
*(.rela.data.*)
*(.rela.gnu.linkonce.d*)
.rel.ctors
*(.rel.ctors)
.rela.ctors
*(.rela.ctors)
.rel.dtors
*(.rel.dtors)
.rela.dtors
*(.rela.dtors)
.rel.got
*(.rel.got)
.rela.got
*(.rela.got)
.rel.bss
*(.rel.bss)
.rela.bss
*(.rela.bss)
.rel.plt
*(.rel.plt)
.rela.plt
*(.rela.plt)
.text 0x0000000000000000 0xff0
*(.vectors)
.vectors 0x0000000000000000 0x74 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
0x0000000000000000 __vectors
0x0000000000000000 __vector_default
*(.vectors)
*(.progmem.gcc*)
0x0000000000000074 . = ALIGN (0x2)
0x0000000000000074 __trampolines_start = .
*(.trampolines)
.trampolines 0x0000000000000074 0x0 linker stubs
*(.trampolines*)
0x0000000000000074 __trampolines_end = .
*(.progmem*)
.progmem.data 0x0000000000000074 0x9e obj/Descriptors.o
0x0000000000000074 ProductString
0x00000000000000a4 ManufacturerString
0x00000000000000be LanguageString
0x00000000000000c2 ConfigurationDescriptor
0x0000000000000100 DeviceDescriptor
0x0000000000000112 . = ALIGN (0x2)
*(.jumptables)
*(.jumptables*)
*(.lowtext)
*(.lowtext*)
0x0000000000000112 __ctors_start = .
*(.ctors)
0x0000000000000112 __ctors_end = .
0x0000000000000112 __dtors_start = .
*(.dtors)
0x0000000000000112 __dtors_end = .
SORT(*)(.ctors)
SORT(*)(.dtors)
*(.init0)
.init0 0x0000000000000112 0x0 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
0x0000000000000112 __init
*(.init0)
*(.init1)
*(.init1)
*(.init2)
.init2 0x0000000000000112 0xc /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
*(.init2)
*(.init3)
*(.init3)
*(.init4)
.init4 0x000000000000011e 0x16 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
0x000000000000011e __do_copy_data
.init4 0x0000000000000134 0x10 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
0x0000000000000134 __do_clear_bss
*(.init4)
*(.init5)
*(.init5)
*(.init6)
*(.init6)
*(.init7)
*(.init7)
*(.init8)
*(.init8)
*(.init9)
.init9 0x0000000000000144 0x4 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
*(.init9)
*(.text)
.text 0x0000000000000148 0x2 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
0x0000000000000148 __vector_22
0x0000000000000148 __vector_28
0x0000000000000148 __vector_1
0x0000000000000148 __vector_24
0x0000000000000148 __bad_interrupt
0x0000000000000148 __vector_6
0x0000000000000148 __vector_3
0x0000000000000148 __vector_25
0x0000000000000148 __vector_13
0x0000000000000148 __vector_17
0x0000000000000148 __vector_19
0x0000000000000148 __vector_7
0x0000000000000148 __vector_27
0x0000000000000148 __vector_5
0x0000000000000148 __vector_4
0x0000000000000148 __vector_9
0x0000000000000148 __vector_2
0x0000000000000148 __vector_21
0x0000000000000148 __vector_15
0x0000000000000148 __vector_8
0x0000000000000148 __vector_26
0x0000000000000148 __vector_14
0x0000000000000148 __vector_10
0x0000000000000148 __vector_16
0x0000000000000148 __vector_18
0x0000000000000148 __vector_20
0x000000000000014a . = ALIGN (0x2)
*(.text.*)
.text.LEDs_SetAllLEDs
0x000000000000014a 0xc obj/USB_gadget.o
.text.RingBuffer_Insert
0x0000000000000156 0x36 obj/USB_gadget.o
.text.RingBuffer_Remove
0x000000000000018c 0x32 obj/USB_gadget.o
.text.SetupHardware
0x00000000000001be 0x3c obj/USB_gadget.o
0x00000000000001be SetupHardware
.text.startup.main
0x00000000000001fa 0x118 obj/USB_gadget.o
0x00000000000001fa main
.text.EVENT_USB_Device_Connect
0x0000000000000312 0x4 obj/USB_gadget.o
0x0000000000000312 EVENT_USB_Device_Connect
.text.EVENT_USB_Device_Disconnect
0x0000000000000316 0x4 obj/USB_gadget.o
0x0000000000000316 EVENT_USB_Device_Disconnect
.text.EVENT_USB_Device_ConfigurationChanged
0x000000000000031a 0x12 obj/USB_gadget.o
0x000000000000031a EVENT_USB_Device_ConfigurationChanged
.text.EVENT_USB_Device_ControlRequest
0x000000000000032c 0x6 obj/USB_gadget.o
0x000000000000032c EVENT_USB_Device_ControlRequest
.text.__vector_23
0x0000000000000332 0x70 obj/USB_gadget.o
0x0000000000000332 __vector_23
.text.EVENT_CDC_Device_LineEncodingChanged
0x00000000000003a2 0x8a obj/USB_gadget.o
0x00000000000003a2 EVENT_CDC_Device_LineEncodingChanged
.text.CALLBACK_USB_GetDescriptor
0x000000000000042c 0x64 obj/Descriptors.o
0x000000000000042c CALLBACK_USB_GetDescriptor
.text.Endpoint_Write_Control_Stream_LE
0x0000000000000490 0xb8 obj/EndpointStream_AVR8.o
0x0000000000000490 Endpoint_Write_Control_Stream_LE
.text.Endpoint_Write_Control_PStream_LE
0x0000000000000548 0xb4 obj/EndpointStream_AVR8.o
0x0000000000000548 Endpoint_Write_Control_PStream_LE
.text.Endpoint_ConfigureEndpoint_Prv
0x00000000000005fc 0x6a obj/Endpoint_AVR8.o
0x00000000000005fc Endpoint_ConfigureEndpoint_Prv
.text.Endpoint_ConfigureEndpointTable
0x0000000000000666 0x92 obj/Endpoint_AVR8.o
0x0000000000000666 Endpoint_ConfigureEndpointTable
.text.Endpoint_ClearStatusStage
0x00000000000006f8 0x3a obj/Endpoint_AVR8.o
0x00000000000006f8 Endpoint_ClearStatusStage
.text.Endpoint_WaitUntilReady
0x0000000000000732 0x62 obj/Endpoint_AVR8.o
0x0000000000000732 Endpoint_WaitUntilReady
.text.USB_ResetInterface
0x0000000000000794 0x6e obj/USBController_AVR8.o
0x0000000000000794 USB_ResetInterface
.text.USB_Init
0x0000000000000802 0x12 obj/USBController_AVR8.o
0x0000000000000802 USB_Init
.text.USB_INT_DisableAllInterrupts
0x0000000000000814 0x6 obj/USBInterrupt_AVR8.o
0x0000000000000814 USB_INT_DisableAllInterrupts
.text.USB_INT_ClearAllInterrupts
0x000000000000081a 0x6 obj/USBInterrupt_AVR8.o
0x000000000000081a USB_INT_ClearAllInterrupts
.text.__vector_11
0x0000000000000820 0x14a obj/USBInterrupt_AVR8.o
0x0000000000000820 __vector_11
.text.__vector_12
0x000000000000096a 0x86 obj/USBInterrupt_AVR8.o
0x000000000000096a __vector_12
.text.USB_Device_ProcessControlRequest
0x00000000000009f0 0x2b2 obj/DeviceStandardReq.o
0x00000000000009f0 USB_Device_ProcessControlRequest
.text.USB_Event_Stub
0x0000000000000ca2 0x2 obj/Events.o
0x0000000000000ca2 EVENT_USB_Device_WakeUp
0x0000000000000ca2 USB_Event_Stub
0x0000000000000ca2 EVENT_USB_Device_Suspend
0x0000000000000ca2 EVENT_USB_Device_StartOfFrame
0x0000000000000ca2 EVENT_USB_Device_Reset
.text.USB_USBTask
0x0000000000000ca4 0x32 obj/USBTask.o
0x0000000000000ca4 USB_USBTask
.text.CDC_Device_ConfigureEndpoints
0x0000000000000cd6 0x4a obj/CDCClassDevice.o
0x0000000000000cd6 CDC_Device_ConfigureEndpoints
.text.CDC_Device_SendByte
0x0000000000000d20 0x54 obj/CDCClassDevice.o
0x0000000000000d20 CDC_Device_SendByte
.text.CDC_Device_Flush
0x0000000000000d74 0x52 obj/CDCClassDevice.o
0x0000000000000d74 CDC_Device_Flush
.text.CDC_Device_USBTask
0x0000000000000dc6 0x2a obj/CDCClassDevice.o
0x0000000000000dc6 CDC_Device_USBTask
.text.CDC_Device_ReceiveByte
0x0000000000000df0 0x58 obj/CDCClassDevice.o
0x0000000000000df0 CDC_Device_ReceiveByte
.text.CDC_Device_Event_Stub
0x0000000000000e48 0x2 obj/CDCClassDevice.o
0x0000000000000e48 EVENT_CDC_Device_ControLineStateChanged
0x0000000000000e48 EVENT_CDC_Device_BreakSent
0x0000000000000e48 CDC_Device_Event_Stub
.text.CDC_Device_ProcessControlRequest
0x0000000000000e4a 0x15e obj/CDCClassDevice.o
0x0000000000000e4a CDC_Device_ProcessControlRequest
.text.libgcc.div
0x0000000000000fa8 0x44 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
0x0000000000000fa8 __udivmodsi4
0x0000000000000fec . = ALIGN (0x2)
*(.fini9)
.fini9 0x0000000000000fec 0x0 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
0x0000000000000fec exit
0x0000000000000fec _exit
*(.fini9)
*(.fini8)
*(.fini8)
*(.fini7)
*(.fini7)
*(.fini6)
*(.fini6)
*(.fini5)
*(.fini5)
*(.fini4)
*(.fini4)
*(.fini3)
*(.fini3)
*(.fini2)
*(.fini2)
*(.fini1)
*(.fini1)
*(.fini0)
.fini0 0x0000000000000fec 0x4 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
*(.fini0)
0x0000000000000ff0 _etext = .
.data 0x0000000000800100 0x1c address de chargement 0x0000000000000ff0
0x0000000000800100 PROVIDE (__data_start, .)
*(.data)
.data 0x0000000000800100 0x1b obj/USB_gadget.o
0x0000000000800100 VirtualSerial_CDC_Interface
*(.data*)
*(.rodata)
*(.rodata*)
*(.gnu.linkonce.d*)
0x000000000080011c . = ALIGN (0x2)
*fill* 0x000000000080011b 0x1
0x000000000080011c _edata = .
0x000000000080011c PROVIDE (__data_end, .)
.bss 0x000000000080011c 0x124
0x000000000080011c PROVIDE (__bss_start, .)
*(.bss)
.bss 0x000000000080011c 0x118 obj/USB_gadget.o
*(.bss*)
*(COMMON)
COMMON 0x0000000000800234 0x3 obj/DeviceStandardReq.o
0x0000000000800234 USB_Device_ConfigurationNumber
0x0000000000800235 USB_Device_CurrentlySelfPowered
0x0000000000800236 USB_Device_RemoteWakeupEnabled
COMMON 0x0000000000800237 0x9 obj/USBTask.o
0x0000000000800237 USB_IsInitialized
0x0000000000800238 USB_ControlRequest
0x0000000000800240 PROVIDE (__bss_end, .)
0x0000000000000ff0 __data_load_start = LOADADDR (.data)
0x000000000000100c __data_load_end = (__data_load_start + SIZEOF (.data))
.noinit 0x0000000000800240 0x0
0x0000000000800240 PROVIDE (__noinit_start, .)
*(.noinit*)
0x0000000000800240 PROVIDE (__noinit_end, .)
0x0000000000800240 _end = .
0x0000000000800240 PROVIDE (__heap_start, .)
.eeprom 0x0000000000810000 0x0
*(.eeprom*)
0x0000000000810000 __eeprom_end = .
.fuse
*(.fuse)
*(.lfuse)
*(.hfuse)
*(.efuse)
.lock
*(.lock*)
.signature
*(.signature*)
.user_signatures
*(.user_signatures*)
.stab
*(.stab)
.stabstr
*(.stabstr)
.stab.excl
*(.stab.excl)
.stab.exclstr
*(.stab.exclstr)
.stab.index
*(.stab.index)
.stab.indexstr
*(.stab.indexstr)
.comment 0x0000000000000000 0x11
*(.comment)
.comment 0x0000000000000000 0x11 obj/USB_gadget.o
0x12 (taille avant relaxe)
.comment 0x0000000000000011 0x12 obj/Descriptors.o
.comment 0x0000000000000011 0x12 obj/EndpointStream_AVR8.o
.comment 0x0000000000000011 0x12 obj/Endpoint_AVR8.o
.comment 0x0000000000000011 0x12 obj/USBController_AVR8.o
.comment 0x0000000000000011 0x12 obj/USBInterrupt_AVR8.o
.comment 0x0000000000000011 0x12 obj/DeviceStandardReq.o
.comment 0x0000000000000011 0x12 obj/Events.o
.comment 0x0000000000000011 0x12 obj/USBTask.o
.comment 0x0000000000000011 0x12 obj/CDCClassDevice.o
.note.gnu.avr.deviceinfo
0x0000000000000000 0x40
.note.gnu.avr.deviceinfo
0x0000000000000000 0x40 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
.note.gnu.build-id
*(.note.gnu.build-id)
.debug
*(.debug)
.line
*(.line)
.debug_srcinfo
*(.debug_srcinfo)
.debug_sfnames
*(.debug_sfnames)
.debug_aranges 0x0000000000000000 0x308
*(.debug_aranges)
.debug_aranges
0x0000000000000000 0x70 obj/USB_gadget.o
.debug_aranges
0x0000000000000070 0x20 obj/Descriptors.o
.debug_aranges
0x0000000000000090 0xc8 obj/EndpointStream_AVR8.o
.debug_aranges
0x0000000000000158 0x40 obj/Endpoint_AVR8.o
.debug_aranges
0x0000000000000198 0x30 obj/USBController_AVR8.o
.debug_aranges
0x00000000000001c8 0x38 obj/USBInterrupt_AVR8.o
.debug_aranges
0x0000000000000200 0x20 obj/DeviceStandardReq.o
.debug_aranges
0x0000000000000220 0x20 obj/Events.o
.debug_aranges
0x0000000000000240 0x20 obj/USBTask.o
.debug_aranges
0x0000000000000260 0xa8 obj/CDCClassDevice.o
.debug_pubnames
*(.debug_pubnames)
.debug_info 0x0000000000000000 0x5bcc
*(.debug_info .gnu.linkonce.wi.*)
.debug_info 0x0000000000000000 0xdeb obj/USB_gadget.o
.debug_info 0x0000000000000deb 0x779 obj/Descriptors.o
.debug_info 0x0000000000001564 0x17c4 obj/EndpointStream_AVR8.o
.debug_info 0x0000000000002d28 0x602 obj/Endpoint_AVR8.o
.debug_info 0x000000000000332a 0x458 obj/USBController_AVR8.o
.debug_info 0x0000000000003782 0x6fa obj/USBInterrupt_AVR8.o
.debug_info 0x0000000000003e7c 0xa66 obj/DeviceStandardReq.o
.debug_info 0x00000000000048e2 0x78 obj/Events.o
.debug_info 0x000000000000495a 0x254 obj/USBTask.o
.debug_info 0x0000000000004bae 0x101e obj/CDCClassDevice.o
.debug_abbrev 0x0000000000000000 0x158c
*(.debug_abbrev)
.debug_abbrev 0x0000000000000000 0x3dc obj/USB_gadget.o
.debug_abbrev 0x00000000000003dc 0x136 obj/Descriptors.o
.debug_abbrev 0x0000000000000512 0x1fd obj/EndpointStream_AVR8.o
.debug_abbrev 0x000000000000070f 0x20c obj/Endpoint_AVR8.o
.debug_abbrev 0x000000000000091b 0x18d obj/USBController_AVR8.o
.debug_abbrev 0x0000000000000aa8 0x237 obj/USBInterrupt_AVR8.o
.debug_abbrev 0x0000000000000cdf 0x2c2 obj/DeviceStandardReq.o
.debug_abbrev 0x0000000000000fa1 0x44 obj/Events.o
.debug_abbrev 0x0000000000000fe5 0x168 obj/USBTask.o
.debug_abbrev 0x000000000000114d 0x43f obj/CDCClassDevice.o
.debug_line 0x0000000000000000 0x36c6
*(.debug_line .debug_line.* .debug_line_end)
.debug_line 0x0000000000000000 0x7e9 obj/USB_gadget.o
.debug_line 0x00000000000007e9 0x183 obj/Descriptors.o
.debug_line 0x000000000000096c 0x13ad obj/EndpointStream_AVR8.o
.debug_line 0x0000000000001d19 0x461 obj/Endpoint_AVR8.o
.debug_line 0x000000000000217a 0x287 obj/USBController_AVR8.o
.debug_line 0x0000000000002401 0x44f obj/USBInterrupt_AVR8.o
.debug_line 0x0000000000002850 0x44d obj/DeviceStandardReq.o
.debug_line 0x0000000000002c9d 0x4f obj/Events.o
.debug_line 0x0000000000002cec 0x14b obj/USBTask.o
.debug_line 0x0000000000002e37 0x88f obj/CDCClassDevice.o
.debug_frame 0x0000000000000000 0x8cc
*(.debug_frame)
.debug_frame 0x0000000000000000 0x114 obj/USB_gadget.o
.debug_frame 0x0000000000000114 0x24 obj/Descriptors.o
.debug_frame 0x0000000000000138 0x3bc obj/EndpointStream_AVR8.o
.debug_frame 0x00000000000004f4 0x84 obj/Endpoint_AVR8.o
.debug_frame 0x0000000000000578 0x44 obj/USBController_AVR8.o
.debug_frame 0x00000000000005bc 0xec obj/USBInterrupt_AVR8.o
.debug_frame 0x00000000000006a8 0x3c obj/DeviceStandardReq.o
.debug_frame 0x00000000000006e4 0x24 obj/Events.o
.debug_frame 0x0000000000000708 0x2c obj/USBTask.o
.debug_frame 0x0000000000000734 0x198 obj/CDCClassDevice.o
.debug_str 0x0000000000000000 0x246c
*(.debug_str)
.debug_str 0x0000000000000000 0x92e obj/USB_gadget.o
0x9bb (taille avant relaxe)
.debug_str 0x000000000000092e 0x918 obj/Descriptors.o
0xb51 (taille avant relaxe)
.debug_str 0x0000000000001246 0x5cb obj/EndpointStream_AVR8.o
0x852 (taille avant relaxe)
.debug_str 0x0000000000001811 0x1f7 obj/Endpoint_AVR8.o
0x612 (taille avant relaxe)
.debug_str 0x0000000000001a08 0x261 obj/USBController_AVR8.o
0x528 (taille avant relaxe)
.debug_str 0x0000000000001c69 0x12e obj/USBInterrupt_AVR8.o
0x57d (taille avant relaxe)
.debug_str 0x0000000000001d97 0x3ab obj/DeviceStandardReq.o
0x9c4 (taille avant relaxe)
.debug_str 0x0000000000002142 0x31 obj/Events.o
0x1a6 (taille avant relaxe)
.debug_str 0x0000000000002173 0x3f obj/USBTask.o
0x377 (taille avant relaxe)
.debug_str 0x00000000000021b2 0x2ba obj/CDCClassDevice.o
0xa64 (taille avant relaxe)
.debug_loc 0x0000000000000000 0x3926
*(.debug_loc)
.debug_loc 0x0000000000000000 0x406 obj/USB_gadget.o
.debug_loc 0x0000000000000406 0x186 obj/Descriptors.o
.debug_loc 0x000000000000058c 0x1e78 obj/EndpointStream_AVR8.o
.debug_loc 0x0000000000002404 0x3df obj/Endpoint_AVR8.o
.debug_loc 0x00000000000027e3 0x33b obj/USBInterrupt_AVR8.o
.debug_loc 0x0000000000002b1e 0x306 obj/DeviceStandardReq.o
.debug_loc 0x0000000000002e24 0x49 obj/USBTask.o
.debug_loc 0x0000000000002e6d 0xab9 obj/CDCClassDevice.o
.debug_macinfo
*(.debug_macinfo)
.debug_weaknames
*(.debug_weaknames)
.debug_funcnames
*(.debug_funcnames)
.debug_typenames
*(.debug_typenames)
.debug_varnames
*(.debug_varnames)
.debug_pubtypes
*(.debug_pubtypes)
.debug_ranges 0x0000000000000000 0x420
*(.debug_ranges)
.debug_ranges 0x0000000000000000 0x60 obj/USB_gadget.o
.debug_ranges 0x0000000000000060 0x10 obj/Descriptors.o
.debug_ranges 0x0000000000000070 0x1f8 obj/EndpointStream_AVR8.o
.debug_ranges 0x0000000000000268 0x78 obj/Endpoint_AVR8.o
.debug_ranges 0x00000000000002e0 0x20 obj/USBController_AVR8.o
.debug_ranges 0x0000000000000300 0x40 obj/USBInterrupt_AVR8.o
.debug_ranges 0x0000000000000340 0x28 obj/DeviceStandardReq.o
.debug_ranges 0x0000000000000368 0x10 obj/Events.o
.debug_ranges 0x0000000000000378 0x10 obj/USBTask.o
.debug_ranges 0x0000000000000388 0x98 obj/CDCClassDevice.o
.debug_macro
*(.debug_macro)
OUTPUT(USB_gadget.elf elf32-avr)
LOAD linker stubs
Table de référence croisé
Symbole Fichier
Audio_Device_ConfigureEndpoints obj/AudioClassDevice.o
Audio_Device_Event_Stub obj/AudioClassDevice.o
Audio_Device_ProcessControlRequest obj/AudioClassDevice.o
CALLBACK_Audio_Device_GetSetEndpointProperty obj/AudioClassDevice.o
CALLBACK_Audio_Device_GetSetInterfaceProperty obj/AudioClassDevice.o
CALLBACK_HIDParser_FilterHIDReportItem obj/HIDParser.o
CALLBACK_HID_Device_CreateHIDReport obj/HIDClassDevice.o
CALLBACK_HID_Device_ProcessHIDReport obj/HIDClassDevice.o
CALLBACK_MS_Device_SCSICommandReceived obj/MassStorageClassDevice.o
CALLBACK_USB_GetDescriptor obj/Descriptors.o
obj/DeviceStandardReq.o
CDC_Device_BytesReceived obj/CDCClassDevice.o
CDC_Device_ConfigureEndpoints obj/CDCClassDevice.o
obj/USB_gadget.o
CDC_Device_CreateBlockingStream obj/CDCClassDevice.o
CDC_Device_CreateStream obj/CDCClassDevice.o
CDC_Device_Event_Stub obj/CDCClassDevice.o
CDC_Device_Flush obj/CDCClassDevice.o
CDC_Device_ProcessControlRequest obj/CDCClassDevice.o
obj/USB_gadget.o
CDC_Device_ReceiveByte obj/CDCClassDevice.o
obj/USB_gadget.o
CDC_Device_SendByte obj/CDCClassDevice.o
obj/USB_gadget.o
CDC_Device_SendControlLineStateChange obj/CDCClassDevice.o
CDC_Device_SendData obj/CDCClassDevice.o
CDC_Device_SendData_P obj/CDCClassDevice.o
CDC_Device_SendString obj/CDCClassDevice.o
CDC_Device_SendString_P obj/CDCClassDevice.o
CDC_Device_USBTask obj/CDCClassDevice.o
obj/USB_gadget.o
ConfigurationDescriptor obj/Descriptors.o
DeviceDescriptor obj/Descriptors.o
EVENT_Audio_Device_StreamStartStop obj/AudioClassDevice.o
EVENT_CDC_Device_BreakSent obj/CDCClassDevice.o
EVENT_CDC_Device_ControLineStateChanged obj/CDCClassDevice.o
EVENT_CDC_Device_LineEncodingChanged obj/USB_gadget.o
EVENT_PRNT_Device_SoftReset obj/PrinterClassDevice.o
EVENT_USB_Device_ConfigurationChanged obj/USB_gadget.o
obj/DeviceStandardReq.o
EVENT_USB_Device_Connect obj/USB_gadget.o
obj/USBInterrupt_AVR8.o
EVENT_USB_Device_ControlRequest obj/USB_gadget.o
obj/DeviceStandardReq.o
EVENT_USB_Device_Disconnect obj/USB_gadget.o
obj/USBInterrupt_AVR8.o
EVENT_USB_Device_Reset obj/Events.o
obj/USBInterrupt_AVR8.o
EVENT_USB_Device_StartOfFrame obj/Events.o
obj/USBInterrupt_AVR8.o
EVENT_USB_Device_Suspend obj/Events.o
EVENT_USB_Device_WakeUp obj/Events.o
Endpoint_ClearEndpoints obj/Endpoint_AVR8.o
Endpoint_ClearStatusStage obj/Endpoint_AVR8.o
obj/PrinterClassDevice.o
obj/MassStorageClassDevice.o
obj/HIDClassDevice.o
obj/CDCClassDevice.o
obj/AudioClassDevice.o
obj/DeviceStandardReq.o
Endpoint_ConfigureEndpointTable obj/Endpoint_AVR8.o
obj/RNDISClassDevice.o
obj/PrinterClassDevice.o
obj/MIDIClassDevice.o
obj/MassStorageClassDevice.o
obj/HIDClassDevice.o
obj/CDCClassDevice.o
obj/AudioClassDevice.o
Endpoint_ConfigureEndpoint_Prv obj/Endpoint_AVR8.o
obj/USBInterrupt_AVR8.o
obj/USBController_AVR8.o
Endpoint_Discard_Stream obj/EndpointStream_AVR8.o
Endpoint_Null_Stream obj/EndpointStream_AVR8.o
Endpoint_Read_Control_EStream_BE obj/EndpointStream_AVR8.o
Endpoint_Read_Control_EStream_LE obj/EndpointStream_AVR8.o
Endpoint_Read_Control_Stream_BE obj/EndpointStream_AVR8.o
Endpoint_Read_Control_Stream_LE obj/EndpointStream_AVR8.o
obj/RNDISClassDevice.o
obj/HIDClassDevice.o
obj/AudioClassDevice.o
Endpoint_Read_EStream_BE obj/EndpointStream_AVR8.o
Endpoint_Read_EStream_LE obj/EndpointStream_AVR8.o
Endpoint_Read_Stream_BE obj/EndpointStream_AVR8.o
Endpoint_Read_Stream_LE obj/EndpointStream_AVR8.o
obj/RNDISClassDevice.o
obj/MIDIClassDevice.o
obj/MassStorageClassDevice.o
Endpoint_WaitUntilReady obj/Endpoint_AVR8.o
obj/RNDISClassDevice.o
obj/PrinterClassDevice.o
obj/MIDIClassDevice.o
obj/CDCClassDevice.o
obj/EndpointStream_AVR8.o
Endpoint_Write_Control_EStream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_Control_EStream_LE obj/EndpointStream_AVR8.o
Endpoint_Write_Control_PStream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_Control_PStream_LE obj/EndpointStream_AVR8.o
obj/DeviceStandardReq.o
Endpoint_Write_Control_Stream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_Control_Stream_LE obj/EndpointStream_AVR8.o
obj/RNDISClassDevice.o
obj/PrinterClassDevice.o
obj/HIDClassDevice.o
obj/AudioClassDevice.o
obj/DeviceStandardReq.o
Endpoint_Write_EStream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_EStream_LE obj/EndpointStream_AVR8.o
Endpoint_Write_PStream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_PStream_LE obj/EndpointStream_AVR8.o
obj/CDCClassDevice.o
Endpoint_Write_Stream_BE obj/EndpointStream_AVR8.o
Endpoint_Write_Stream_LE obj/EndpointStream_AVR8.o
obj/RNDISClassDevice.o
obj/PrinterClassDevice.o
obj/MIDIClassDevice.o
obj/MassStorageClassDevice.o
obj/HIDClassDevice.o
obj/CDCClassDevice.o
HID_Device_ConfigureEndpoints obj/HIDClassDevice.o
HID_Device_ProcessControlRequest obj/HIDClassDevice.o
HID_Device_USBTask obj/HIDClassDevice.o
LanguageString obj/Descriptors.o
MIDI_Device_ConfigureEndpoints obj/MIDIClassDevice.o
MIDI_Device_Flush obj/MIDIClassDevice.o
MIDI_Device_ReceiveEventPacket obj/MIDIClassDevice.o
MIDI_Device_SendEventPacket obj/MIDIClassDevice.o
MIDI_Device_USBTask obj/MIDIClassDevice.o
MS_Device_ConfigureEndpoints obj/MassStorageClassDevice.o
MS_Device_ProcessControlRequest obj/MassStorageClassDevice.o
MS_Device_USBTask obj/MassStorageClassDevice.o
ManufacturerString obj/Descriptors.o
PRNT_Device_BytesReceived obj/PrinterClassDevice.o
PRNT_Device_ConfigureEndpoints obj/PrinterClassDevice.o
PRNT_Device_CreateBlockingStream obj/PrinterClassDevice.o
PRNT_Device_CreateStream obj/PrinterClassDevice.o
PRNT_Device_Event_Stub obj/PrinterClassDevice.o
PRNT_Device_Flush obj/PrinterClassDevice.o
PRNT_Device_ProcessControlRequest obj/PrinterClassDevice.o
PRNT_Device_ReceiveByte obj/PrinterClassDevice.o
PRNT_Device_SendByte obj/PrinterClassDevice.o
PRNT_Device_SendData obj/PrinterClassDevice.o
PRNT_Device_SendString obj/PrinterClassDevice.o
PRNT_Device_USBTask obj/PrinterClassDevice.o
ProductString obj/Descriptors.o
RNDIS_Device_ConfigureEndpoints obj/RNDISClassDevice.o
RNDIS_Device_IsPacketReceived obj/RNDISClassDevice.o
RNDIS_Device_ProcessControlRequest obj/RNDISClassDevice.o
RNDIS_Device_ReadPacket obj/RNDISClassDevice.o
RNDIS_Device_SendPacket obj/RNDISClassDevice.o
RNDIS_Device_USBTask obj/RNDISClassDevice.o
SetupHardware obj/USB_gadget.o
USB_ControlRequest obj/USBTask.o
obj/RNDISClassDevice.o
obj/PrinterClassDevice.o
obj/MassStorageClassDevice.o
obj/HIDClassDevice.o
obj/CDCClassDevice.o
obj/AudioClassDevice.o
obj/DeviceStandardReq.o
obj/Endpoint_AVR8.o
obj/EndpointStream_AVR8.o
USB_Device_ConfigurationNumber obj/DeviceStandardReq.o
obj/USBInterrupt_AVR8.o
obj/USBController_AVR8.o
USB_Device_CurrentlySelfPowered obj/DeviceStandardReq.o
obj/USBController_AVR8.o
USB_Device_ProcessControlRequest obj/DeviceStandardReq.o
obj/USBTask.o
obj/USBInterrupt_AVR8.o
USB_Device_RemoteWakeupEnabled obj/DeviceStandardReq.o
obj/USBController_AVR8.o
USB_Device_SendRemoteWakeup obj/Device_AVR8.o
USB_Disable obj/USBController_AVR8.o
USB_Event_Stub obj/Events.o
USB_GetHIDReportItemInfo obj/HIDParser.o
USB_GetHIDReportSize obj/HIDParser.o
USB_GetNextDescriptorComp obj/ConfigDescriptors.o
USB_GetNextDescriptorOfType obj/ConfigDescriptors.o
USB_GetNextDescriptorOfTypeAfter obj/ConfigDescriptors.o
USB_GetNextDescriptorOfTypeBefore obj/ConfigDescriptors.o
USB_INT_ClearAllInterrupts obj/USBInterrupt_AVR8.o
obj/USBController_AVR8.o
USB_INT_DisableAllInterrupts obj/USBInterrupt_AVR8.o
obj/USBController_AVR8.o
USB_Init obj/USBController_AVR8.o
obj/USB_gadget.o
USB_IsInitialized obj/USBTask.o
obj/USBController_AVR8.o
USB_ProcessHIDReport obj/HIDParser.o
USB_ResetInterface obj/USBController_AVR8.o
USB_SetHIDReportItemInfo obj/HIDParser.o
USB_USBTask obj/USBTask.o
obj/PrinterClassDevice.o
obj/CDCClassDevice.o
obj/USB_gadget.o
VirtualSerial_CDC_Interface obj/USB_gadget.o
__bad_interrupt /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__bss_end /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
__bss_start /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
__data_end /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
__data_load_start /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
__data_start /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
__do_clear_bss /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_clear_bss.o)
obj/USBTask.o
obj/DeviceStandardReq.o
obj/USB_gadget.o
__do_copy_data /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_copy_data.o)
obj/RNDISClassDevice.o
obj/CDCClassDevice.o
obj/USB_gadget.o
__heap_end /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__init /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__mulhi3 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_mulhi3.o)
obj/HIDParser.o
__stack /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__strlen_P /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(strlen_P.o)
obj/CDCClassDevice.o
__udivmodsi4 /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_udivmodsi4.o)
obj/USB_gadget.o
__vector_1 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_10 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_11 obj/USBInterrupt_AVR8.o
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_12 obj/USBInterrupt_AVR8.o
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_13 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_14 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_15 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_16 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_17 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_18 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_19 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_2 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_20 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_21 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_22 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_23 obj/USB_gadget.o
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_24 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_25 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_26 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_27 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_28 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_3 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_4 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_5 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_6 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_7 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_8 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_9 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vector_default /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
__vectors /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
_exit /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
eeprom_read_byte /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eerd_byte.o)
obj/EndpointStream_AVR8.o
eeprom_update_byte /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
obj/EndpointStream_AVR8.o
eeprom_update_r18 /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libatmega16u2.a(eeupd_byte.o)
exit /usr/lib/gcc/avr/4.9.2/avr35/libgcc.a(_exit.o)
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
main obj/USB_gadget.o
/usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/crtatmega16u2.o
memcmp /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcmp.o)
obj/HIDClassDevice.o
memcpy /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy.o)
obj/RNDISClassDevice.o
obj/HIDClassDevice.o
memcpy_P /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memcpy_P.o)
obj/RNDISClassDevice.o
memset /usr/lib/gcc/avr/4.9.2/../../../avr/lib/avr35/libc.a(memset.o)
obj/HIDClassDevice.o