Blame view

src/question5/PolytechLille/Manette/Manette.map 82.6 KB
194cd0c4   gperson   ajout de la quest...
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
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
  Archive member included to satisfy reference by file (symbol)
  
  /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
                                /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o (exit)
  /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
                                obj/Manette.o (__do_copy_data)
  /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
                                obj/Manette.o (__do_clear_bss)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
                                obj/RNDISClassDevice.o (memcpy_P)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
                                obj/CDCClassDevice.o (__strlen_P)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
                                obj/HIDClassDevice.o (memcmp)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
                                obj/HIDClassDevice.o (memcpy)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
                                obj/HIDClassDevice.o (memset)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
                                obj/EndpointStream_AVR8.o (eeprom_read_byte)
  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
                                obj/EndpointStream_AVR8.o (eeprom_update_byte)
  
  Allocating common symbols
  Common symbol       size              file
  
  USB_IsInitialized   0x1               obj/USBTask.o
  USB_DeviceState     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
  
  Discarded input sections
  
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .text          0x0000000000000000        0x0 obj/Manette.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      0x6c6 obj/HIDParser.o
   .text.USB_GetHIDReportItemInfo
                  0x0000000000000000       0xbc obj/HIDParser.o
   .text.USB_SetHIDReportItemInfo
                  0x0000000000000000       0xc0 obj/HIDParser.o
   .text.USB_GetHIDReportSize
                  0x0000000000000000       0x56 obj/HIDParser.o
   .debug_info    0x0000000000000000      0x735 obj/HIDParser.o
   .debug_abbrev  0x0000000000000000      0x218 obj/HIDParser.o
   .debug_loc     0x0000000000000000      0xabf obj/HIDParser.o
   .debug_aranges
                  0x0000000000000000       0x38 obj/HIDParser.o
   .debug_ranges  0x0000000000000000       0xd0 obj/HIDParser.o
   .debug_line    0x0000000000000000      0x581 obj/HIDParser.o
   .debug_str     0x0000000000000000      0x6c9 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       0x2c obj/Device_AVR8.o
   .debug_info    0x0000000000000000       0xce obj/Device_AVR8.o
   .debug_abbrev  0x0000000000000000       0x7e obj/Device_AVR8.o
   .debug_aranges
                  0x0000000000000000       0x20 obj/Device_AVR8.o
   .debug_ranges  0x0000000000000000       0x10 obj/Device_AVR8.o
   .debug_line    0x0000000000000000      0x146 obj/Device_AVR8.o
   .debug_str     0x0000000000000000      0x205 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       0x82 obj/EndpointStream_AVR8.o
   .text.Endpoint_Null_Stream
                  0x0000000000000000       0x82 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_Stream_BE
                  0x0000000000000000       0xa4 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_Stream_LE
                  0x0000000000000000       0x9a obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_Stream_BE
                  0x0000000000000000       0xa4 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_PStream_LE
                  0x0000000000000000       0x9e obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_PStream_BE
                  0x0000000000000000       0xa6 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_EStream_LE
                  0x0000000000000000       0xa0 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_EStream_BE
                  0x0000000000000000       0xa8 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_EStream_LE
                  0x0000000000000000       0xa0 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_EStream_BE
                  0x0000000000000000       0xa8 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_Control_Stream_BE
                  0x0000000000000000       0xd0 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_Control_Stream_BE
                  0x0000000000000000       0x82 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_Control_PStream_BE
                  0x0000000000000000       0xce obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_Control_EStream_LE
                  0x0000000000000000       0xf4 obj/EndpointStream_AVR8.o
   .text.Endpoint_Write_Control_EStream_BE
                  0x0000000000000000      0x100 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_Control_EStream_LE
                  0x0000000000000000       0x94 obj/EndpointStream_AVR8.o
   .text.Endpoint_Read_Control_EStream_BE
                  0x0000000000000000       0x92 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       0x52 obj/Host_AVR8.o
   .debug_abbrev  0x0000000000000000       0x24 obj/Host_AVR8.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/Host_AVR8.o
   .debug_line    0x0000000000000000       0x1a obj/Host_AVR8.o
   .debug_str     0x0000000000000000      0x1a4 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       0x52 obj/PipeStream_AVR8.o
   .debug_abbrev  0x0000000000000000       0x24 obj/PipeStream_AVR8.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/PipeStream_AVR8.o
   .debug_line    0x0000000000000000       0x1a obj/PipeStream_AVR8.o
   .debug_str     0x0000000000000000      0x1aa 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       0x52 obj/Pipe_AVR8.o
   .debug_abbrev  0x0000000000000000       0x24 obj/Pipe_AVR8.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/Pipe_AVR8.o
   .debug_line    0x0000000000000000       0x1a obj/Pipe_AVR8.o
   .debug_str     0x0000000000000000      0x1a4 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       0x34 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       0x38 obj/ConfigDescriptors.o
   .text.USB_GetNextDescriptorOfTypeBefore
                  0x0000000000000000       0x46 obj/ConfigDescriptors.o
   .text.USB_GetNextDescriptorOfTypeAfter
                  0x0000000000000000       0x3e obj/ConfigDescriptors.o
   .text.USB_GetNextDescriptorComp
                  0x0000000000000000       0x66 obj/ConfigDescriptors.o
   .debug_info    0x0000000000000000      0x3d1 obj/ConfigDescriptors.o
   .debug_abbrev  0x0000000000000000      0x183 obj/ConfigDescriptors.o
   .debug_loc     0x0000000000000000      0x59f obj/ConfigDescriptors.o
   .debug_aranges
                  0x0000000000000000       0x40 obj/ConfigDescriptors.o
   .debug_ranges  0x0000000000000000       0x30 obj/ConfigDescriptors.o
   .debug_line    0x0000000000000000      0x210 obj/ConfigDescriptors.o
   .debug_str     0x0000000000000000      0x3ed obj/ConfigDescriptors.o
   .comment       0x0000000000000000       0x12 obj/ConfigDescriptors.o
   .debug_frame   0x0000000000000000       0xfc 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       0x52 obj/HostStandardReq.o
   .debug_abbrev  0x0000000000000000       0x24 obj/HostStandardReq.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/HostStandardReq.o
   .debug_line    0x0000000000000000       0x1a obj/HostStandardReq.o
   .debug_str     0x0000000000000000      0x1a5 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      0x847 obj/AudioClassDevice.o
   .debug_abbrev  0x0000000000000000      0x1e4 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      0x4b3 obj/AudioClassDevice.o
   .debug_str     0x0000000000000000      0x6c1 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_ConfigureEndpoints
                  0x0000000000000000       0x50 obj/CDCClassDevice.o
   .text.CDC_Device_SendString
                  0x0000000000000000       0x42 obj/CDCClassDevice.o
   .text.CDC_Device_SendString_P
                  0x0000000000000000       0x52 obj/CDCClassDevice.o
   .text.CDC_Device_SendData
                  0x0000000000000000       0x34 obj/CDCClassDevice.o
   .text.CDC_Device_SendData_P
                  0x0000000000000000       0x34 obj/CDCClassDevice.o
   .text.CDC_Device_SendByte
                  0x0000000000000000       0x58 obj/CDCClassDevice.o
   .text.CDC_Device_putchar
                  0x0000000000000000       0x22 obj/CDCClassDevice.o
   .text.CDC_Device_Flush
                  0x0000000000000000       0x5e obj/CDCClassDevice.o
   .text.CDC_Device_USBTask
                  0x0000000000000000       0x2e obj/CDCClassDevice.o
   .text.CDC_Device_BytesReceived
                  0x0000000000000000       0x5a obj/CDCClassDevice.o
   .text.CDC_Device_ReceiveByte
                  0x0000000000000000       0x6a obj/CDCClassDevice.o
   .text.CDC_Device_getchar
                  0x0000000000000000       0x14 obj/CDCClassDevice.o
   .text.CDC_Device_getchar_Blocking
                  0x0000000000000000       0x32 obj/CDCClassDevice.o
   .rodata        0x0000000000000000        0x8 obj/CDCClassDevice.o
   .text.CDC_Device_SendControlLineStateChange
                  0x0000000000000000       0x8e obj/CDCClassDevice.o
   .text.CDC_Device_CreateStream
                  0x0000000000000000       0x26 obj/CDCClassDevice.o
   .text.CDC_Device_CreateBlockingStream
                  0x0000000000000000       0x26 obj/CDCClassDevice.o
   .text.CDC_Device_Event_Stub
                  0x0000000000000000        0x2 obj/CDCClassDevice.o
   .text.CDC_Device_ProcessControlRequest
                  0x0000000000000000      0x16e obj/CDCClassDevice.o
   .debug_info    0x0000000000000000      0xff7 obj/CDCClassDevice.o
   .debug_abbrev  0x0000000000000000      0x40b obj/CDCClassDevice.o
   .debug_loc     0x0000000000000000      0xa76 obj/CDCClassDevice.o
   .debug_aranges
                  0x0000000000000000       0xa8 obj/CDCClassDevice.o
   .debug_ranges  0x0000000000000000       0x98 obj/CDCClassDevice.o
   .debug_line    0x0000000000000000      0x947 obj/CDCClassDevice.o
   .debug_str     0x0000000000000000      0xa7e obj/CDCClassDevice.o
   .comment       0x0000000000000000       0x12 obj/CDCClassDevice.o
   .debug_frame   0x0000000000000000      0x198 obj/CDCClassDevice.o
   .text          0x0000000000000000        0x0 obj/HIDClassDevice.o
   .data          0x0000000000000000        0x0 obj/HIDClassDevice.o
   .bss           0x0000000000000000        0x0 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      0x23e obj/MassStorageClassDevice.o
   .debug_info    0x0000000000000000      0x918 obj/MassStorageClassDevice.o
   .debug_abbrev  0x0000000000000000      0x26b obj/MassStorageClassDevice.o
   .debug_loc     0x0000000000000000      0x2ac obj/MassStorageClassDevice.o
   .debug_aranges
                  0x0000000000000000       0x30 obj/MassStorageClassDevice.o
   .debug_ranges  0x0000000000000000       0x20 obj/MassStorageClassDevice.o
   .debug_line    0x0000000000000000      0x52d obj/MassStorageClassDevice.o
   .debug_str     0x0000000000000000      0x819 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       0x46 obj/MIDIClassDevice.o
   .text.MIDI_Device_Flush
                  0x0000000000000000       0x38 obj/MIDIClassDevice.o
   .text.MIDI_Device_USBTask
                  0x0000000000000000       0x22 obj/MIDIClassDevice.o
   .text.MIDI_Device_ReceiveEventPacket
                  0x0000000000000000       0x4a obj/MIDIClassDevice.o
   .debug_info    0x0000000000000000      0x5da obj/MIDIClassDevice.o
   .debug_abbrev  0x0000000000000000      0x217 obj/MIDIClassDevice.o
   .debug_loc     0x0000000000000000      0x314 obj/MIDIClassDevice.o
   .debug_aranges
                  0x0000000000000000       0x40 obj/MIDIClassDevice.o
   .debug_ranges  0x0000000000000000       0x30 obj/MIDIClassDevice.o
   .debug_line    0x0000000000000000      0x413 obj/MIDIClassDevice.o
   .debug_str     0x0000000000000000      0x682 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       0x32 obj/PrinterClassDevice.o
   .text.PRNT_Device_SendData
                  0x0000000000000000       0x24 obj/PrinterClassDevice.o
   .text.PRNT_Device_SendByte
                  0x0000000000000000       0x40 obj/PrinterClassDevice.o
   .text.PRNT_Device_putchar
                  0x0000000000000000       0x22 obj/PrinterClassDevice.o
   .text.PRNT_Device_Flush
                  0x0000000000000000       0x4e obj/PrinterClassDevice.o
   .text.PRNT_Device_USBTask
                  0x0000000000000000       0x9c obj/PrinterClassDevice.o
   .text.PRNT_Device_BytesReceived
                  0x0000000000000000       0x4a obj/PrinterClassDevice.o
   .text.PRNT_Device_ReceiveByte
                  0x0000000000000000       0x5a obj/PrinterClassDevice.o
   .text.PRNT_Device_getchar
                  0x0000000000000000       0x14 obj/PrinterClassDevice.o
   .text.PRNT_Device_getchar_Blocking
                  0x0000000000000000       0x32 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       0xdc obj/PrinterClassDevice.o
   .debug_info    0x0000000000000000      0xcb8 obj/PrinterClassDevice.o
   .debug_abbrev  0x0000000000000000      0x315 obj/PrinterClassDevice.o
   .debug_loc     0x0000000000000000      0x84e obj/PrinterClassDevice.o
   .debug_aranges
                  0x0000000000000000       0x90 obj/PrinterClassDevice.o
   .debug_ranges  0x0000000000000000       0x80 obj/PrinterClassDevice.o
   .debug_line    0x0000000000000000      0x739 obj/PrinterClassDevice.o
   .debug_str     0x0000000000000000      0x950 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      0x506 obj/RNDISClassDevice.o
   .text.RNDIS_Device_ConfigureEndpoints
                  0x0000000000000000       0x64 obj/RNDISClassDevice.o
   .rodata        0x0000000000000000        0x8 obj/RNDISClassDevice.o
   .text.RNDIS_Device_USBTask
                  0x0000000000000000       0x80 obj/RNDISClassDevice.o
   .text.RNDIS_Device_IsPacketReceived
                  0x0000000000000000       0x28 obj/RNDISClassDevice.o
   .text.RNDIS_Device_ReadPacket
                  0x0000000000000000       0xb6 obj/RNDISClassDevice.o
   .text.RNDIS_Device_SendPacket
                  0x0000000000000000       0xd4 obj/RNDISClassDevice.o
   .progmem.data  0x0000000000000000       0x6c obj/RNDISClassDevice.o
   .debug_info    0x0000000000000000     0x10d8 obj/RNDISClassDevice.o
   .debug_abbrev  0x0000000000000000      0x351 obj/RNDISClassDevice.o
   .debug_loc     0x0000000000000000      0xdde obj/RNDISClassDevice.o
   .debug_aranges
                  0x0000000000000000       0x48 obj/RNDISClassDevice.o
   .debug_ranges  0x0000000000000000       0x88 obj/RNDISClassDevice.o
   .debug_line    0x0000000000000000      0x71f obj/RNDISClassDevice.o
   .debug_str     0x0000000000000000      0xd7c 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       0x52 obj/AndroidAccessoryClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/AndroidAccessoryClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/AndroidAccessoryClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/AndroidAccessoryClassHost.o
   .debug_str     0x0000000000000000      0x1b5 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       0x52 obj/AudioClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/AudioClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/AudioClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/AudioClassHost.o
   .debug_str     0x0000000000000000      0x1aa 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       0x52 obj/CDCClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/CDCClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/CDCClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/CDCClassHost.o
   .debug_str     0x0000000000000000      0x1a8 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       0x52 obj/HIDClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/HIDClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/HIDClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/HIDClassHost.o
   .debug_str     0x0000000000000000      0x1a8 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       0x52 obj/MassStorageClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/MassStorageClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/MassStorageClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/MassStorageClassHost.o
   .debug_str     0x0000000000000000      0x1b0 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       0x52 obj/MIDIClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/MIDIClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/MIDIClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/MIDIClassHost.o
   .debug_str     0x0000000000000000      0x1a9 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       0x52 obj/PrinterClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/PrinterClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/PrinterClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/PrinterClassHost.o
   .debug_str     0x0000000000000000      0x1ac 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       0x52 obj/RNDISClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/RNDISClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/RNDISClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/RNDISClassHost.o
   .debug_str     0x0000000000000000      0x1aa 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       0x52 obj/StillImageClassHost.o
   .debug_abbrev  0x0000000000000000       0x24 obj/StillImageClassHost.o
   .debug_aranges
                  0x0000000000000000       0x18 obj/StillImageClassHost.o
   .debug_line    0x0000000000000000       0x1a obj/StillImageClassHost.o
   .debug_str     0x0000000000000000      0x1af obj/StillImageClassHost.o
   .comment       0x0000000000000000       0x12 obj/StillImageClassHost.o
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.mul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.div
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc   0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.prologue
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.builtins
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.fmul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text.libgcc.fixed
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.mul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.div
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc   0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.prologue
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.builtins
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.fmul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text.libgcc.fixed
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.mul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.div
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc   0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.prologue
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.builtins
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.fmul
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text.libgcc.fixed
                  0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
   .text.avr-libc
                  0x0000000000000000       0x12 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
   .text.avr-libc
                  0x0000000000000000       0x12 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
   .text.avr-libc
                  0x0000000000000000       0x10 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
   .text          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
   .data          0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
   .bss           0x0000000000000000        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
   .text.avr-libc
                  0x0000000000000000       0x24 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
  
  Memory Configuration
  
  Name             Origin             Length             Attributes
  text             0x0000000000000000 0x0000000000020000 xr
  data             0x0000000000800060 0x000000000000ffa0 rw !x
  eeprom           0x0000000000810000 0x0000000000010000 rw !x
  fuse             0x0000000000820000 0x0000000000000003 rw !x
  lock             0x0000000000830000 0x0000000000000400 rw !x
  signature        0x0000000000840000 0x0000000000000400 rw !x
  user_signatures  0x0000000000850000 0x0000000000000400 rw !x
  *default*        0x0000000000000000 0xffffffffffffffff
  
  Linker script and memory map
  
  Address of section .data set to 0x800100
  LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  LOAD obj/Manette.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/5.4.0/../../../avr/lib/avr5/libm.a
  START GROUP
  LOAD /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a
  LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libm.a
  LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a
  LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a
  END GROUP
                  0x0000000000020000                __TEXT_REGION_LENGTH__ = DEFINED (__TEXT_REGION_LENGTH__)?__TEXT_REGION_LENGTH__:0x20000
                  0x000000000000ffa0                __DATA_REGION_LENGTH__ = DEFINED (__DATA_REGION_LENGTH__)?__DATA_REGION_LENGTH__:0xffa0
                  0x0000000000010000                __EEPROM_REGION_LENGTH__ = DEFINED (__EEPROM_REGION_LENGTH__)?__EEPROM_REGION_LENGTH__:0x10000
                  [0x0000000000000003]                __FUSE_REGION_LENGTH__ = DEFINED (__FUSE_REGION_LENGTH__)?__FUSE_REGION_LENGTH__:0x400
                  0x0000000000000400                __LOCK_REGION_LENGTH__ = DEFINED (__LOCK_REGION_LENGTH__)?__LOCK_REGION_LENGTH__:0x400
                  0x0000000000000400                __SIGNATURE_REGION_LENGTH__ = DEFINED (__SIGNATURE_REGION_LENGTH__)?__SIGNATURE_REGION_LENGTH__:0x400
                  0x0000000000000400                __USER_SIGNATURE_REGION_LENGTH__ = DEFINED (__USER_SIGNATURE_REGION_LENGTH__)?__USER_SIGNATURE_REGION_LENGTH__:0x400
  
  .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     0x103e
   *(.vectors)
   .vectors       0x0000000000000000       0xac /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
                  0x0000000000000000                __vectors
                  0x0000000000000000                __vector_default
   *(.vectors)
   *(.progmem.gcc*)
                  0x00000000000000ac                . = ALIGN (0x2)
                  0x00000000000000ac                __trampolines_start = .
   *(.trampolines)
   .trampolines   0x00000000000000ac        0x0 linker stubs
   *(.trampolines*)
                  0x00000000000000ac                __trampolines_end = .
   *libprintf_flt.a:*(.progmem.data)
   *libc.a:*(.progmem.data)
   *(.progmem*)
   .progmem.data  0x00000000000000ac       0xba obj/Descriptors.o
                  0x00000000000000ac                ProductString
                  0x00000000000000c8                ManufacturerString
                  0x00000000000000f4                LanguageString
                  0x00000000000000f8                ConfigurationDescriptor
                  0x000000000000011a                DeviceDescriptor
                  0x000000000000012c                JoystickReport
                  0x0000000000000166                . = ALIGN (0x2)
   *(.jumptables)
   *(.jumptables*)
   *(.lowtext)
   *(.lowtext*)
                  0x0000000000000166                __ctors_start = .
   *(.ctors)
                  0x0000000000000166                __ctors_end = .
                  0x0000000000000166                __dtors_start = .
   *(.dtors)
                  0x0000000000000166                __dtors_end = .
   SORT(*)(.ctors)
   SORT(*)(.dtors)
   *(.init0)
   .init0         0x0000000000000166        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
                  0x0000000000000166                __init
   *(.init0)
   *(.init1)
   *(.init1)
   *(.init2)
   .init2         0x0000000000000166        0xc /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   *(.init2)
   *(.init3)
   *(.init3)
   *(.init4)
   .init4         0x0000000000000172       0x16 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
                  0x0000000000000172                __do_copy_data
   .init4         0x0000000000000188       0x10 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
                  0x0000000000000188                __do_clear_bss
   *(.init4)
   *(.init5)
   *(.init5)
   *(.init6)
   *(.init6)
   *(.init7)
   *(.init7)
   *(.init8)
   *(.init8)
   *(.init9)
   .init9         0x0000000000000198        0x4 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   *(.init9)
   *(.text)
   .text          0x000000000000019c        0x2 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
                  0x000000000000019c                __vector_38
                  0x000000000000019c                __vector_22
                  0x000000000000019c                __vector_28
                  0x000000000000019c                __vector_1
                  0x000000000000019c                __vector_32
                  0x000000000000019c                __vector_34
                  0x000000000000019c                __vector_24
                  0x000000000000019c                __vector_12
                  0x000000000000019c                __bad_interrupt
                  0x000000000000019c                __vector_6
                  0x000000000000019c                __vector_31
                  0x000000000000019c                __vector_35
                  0x000000000000019c                __vector_39
                  0x000000000000019c                __vector_3
                  0x000000000000019c                __vector_23
                  0x000000000000019c                __vector_30
                  0x000000000000019c                __vector_25
                  0x000000000000019c                __vector_11
                  0x000000000000019c                __vector_13
                  0x000000000000019c                __vector_17
                  0x000000000000019c                __vector_19
                  0x000000000000019c                __vector_7
                  0x000000000000019c                __vector_41
                  0x000000000000019c                __vector_27
                  0x000000000000019c                __vector_5
                  0x000000000000019c                __vector_33
                  0x000000000000019c                __vector_37
                  0x000000000000019c                __vector_4
                  0x000000000000019c                __vector_9
                  0x000000000000019c                __vector_2
                  0x000000000000019c                __vector_21
                  0x000000000000019c                __vector_15
                  0x000000000000019c                __vector_36
                  0x000000000000019c                __vector_29
                  0x000000000000019c                __vector_40
                  0x000000000000019c                __vector_8
                  0x000000000000019c                __vector_26
                  0x000000000000019c                __vector_14
                  0x000000000000019c                __vector_16
                  0x000000000000019c                __vector_18
                  0x000000000000019c                __vector_20
                  0x000000000000019c                __vector_42
                  0x000000000000019e                . = ALIGN (0x2)
   *(.text.*)
   .text.SetupHardware
                  0x000000000000019e       0x30 obj/Manette.o
                  0x000000000000019e                SetupHardware
   .text.startup.main
                  0x00000000000001ce        0xe obj/Manette.o
                  0x00000000000001ce                main
   .text.EVENT_USB_Device_Connect
                  0x00000000000001dc        0x2 obj/Manette.o
                  0x00000000000001dc                EVENT_USB_Device_Connect
   .text.EVENT_USB_Device_Disconnect
                  0x00000000000001de        0x2 obj/Manette.o
                  0x00000000000001de                EVENT_USB_Device_Disconnect
   .text.EVENT_USB_Device_ConfigurationChanged
                  0x00000000000001e0       0x12 obj/Manette.o
                  0x00000000000001e0                EVENT_USB_Device_ConfigurationChanged
   .text.EVENT_USB_Device_ControlRequest
                  0x00000000000001f2        0x6 obj/Manette.o
                  0x00000000000001f2                EVENT_USB_Device_ControlRequest
   .text.EVENT_USB_Device_StartOfFrame
                  0x00000000000001f8       0x18 obj/Manette.o
                  0x00000000000001f8                EVENT_USB_Device_StartOfFrame
   .text.CALLBACK_HID_Device_CreateHIDReport
                  0x0000000000000210       0x16 obj/Manette.o
                  0x0000000000000210                CALLBACK_HID_Device_CreateHIDReport
   .text.CALLBACK_HID_Device_ProcessHIDReport
                  0x0000000000000226        0x2 obj/Manette.o
                  0x0000000000000226                CALLBACK_HID_Device_ProcessHIDReport
   .text.CALLBACK_USB_GetDescriptor
                  0x0000000000000228       0x82 obj/Descriptors.o
                  0x0000000000000228                CALLBACK_USB_GetDescriptor
   .text.Endpoint_Write_Stream_LE
                  0x00000000000002aa       0x94 obj/EndpointStream_AVR8.o
                  0x00000000000002aa                Endpoint_Write_Stream_LE
   .text.Endpoint_Write_Control_Stream_LE
                  0x000000000000033e       0xbc obj/EndpointStream_AVR8.o
                  0x000000000000033e                Endpoint_Write_Control_Stream_LE
   .text.Endpoint_Read_Control_Stream_LE
                  0x00000000000003fa       0x80 obj/EndpointStream_AVR8.o
                  0x00000000000003fa                Endpoint_Read_Control_Stream_LE
   .text.Endpoint_Write_Control_PStream_LE
                  0x000000000000047a       0xc2 obj/EndpointStream_AVR8.o
                  0x000000000000047a                Endpoint_Write_Control_PStream_LE
   .text.Endpoint_ConfigureEndpoint_Prv
                  0x000000000000053c       0x6a obj/Endpoint_AVR8.o
                  0x000000000000053c                Endpoint_ConfigureEndpoint_Prv
   .text.Endpoint_ConfigureEndpointTable
                  0x00000000000005a6       0x7a obj/Endpoint_AVR8.o
                  0x00000000000005a6                Endpoint_ConfigureEndpointTable
   .text.Endpoint_ClearStatusStage
                  0x0000000000000620       0x3e obj/Endpoint_AVR8.o
                  0x0000000000000620                Endpoint_ClearStatusStage
   .text.Endpoint_WaitUntilReady
                  0x000000000000065e       0x66 obj/Endpoint_AVR8.o
                  0x000000000000065e                Endpoint_WaitUntilReady
   .text.USB_ResetInterface
                  0x00000000000006c4       0x80 obj/USBController_AVR8.o
                  0x00000000000006c4                USB_ResetInterface
   .text.USB_Init
                  0x0000000000000744       0x20 obj/USBController_AVR8.o
                  0x0000000000000744                USB_Init
   .text.USB_INT_DisableAllInterrupts
                  0x0000000000000764       0x10 obj/USBInterrupt_AVR8.o
                  0x0000000000000764                USB_INT_DisableAllInterrupts
   .text.USB_INT_ClearAllInterrupts
                  0x0000000000000774        0xa obj/USBInterrupt_AVR8.o
                  0x0000000000000774                USB_INT_ClearAllInterrupts
   .text.__vector_10
                  0x000000000000077e      0x18c obj/USBInterrupt_AVR8.o
                  0x000000000000077e                __vector_10
   .text.USB_Device_ProcessControlRequest
                  0x000000000000090a      0x2c2 obj/DeviceStandardReq.o
                  0x000000000000090a                USB_Device_ProcessControlRequest
   .text.USB_Event_Stub
                  0x0000000000000bcc        0x2 obj/Events.o
                  0x0000000000000bcc                EVENT_USB_Device_WakeUp
                  0x0000000000000bcc                USB_Event_Stub
                  0x0000000000000bcc                EVENT_USB_Device_Suspend
                  0x0000000000000bcc                EVENT_USB_Device_Reset
   .text.USB_USBTask
                  0x0000000000000bce       0x34 obj/USBTask.o
                  0x0000000000000bce                USB_USBTask
   .text.HID_Device_ProcessControlRequest
                  0x0000000000000c02      0x266 obj/HIDClassDevice.o
                  0x0000000000000c02                HID_Device_ProcessControlRequest
   .text.HID_Device_ConfigureEndpoints
                  0x0000000000000e68       0x26 obj/HIDClassDevice.o
                  0x0000000000000e68                HID_Device_ConfigureEndpoints
   .text.HID_Device_USBTask
                  0x0000000000000e8e      0x172 obj/HIDClassDevice.o
                  0x0000000000000e8e                HID_Device_USBTask
   .text.avr-libc
                  0x0000000000001000       0x1a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
                  0x0000000000001000                memcmp
   .text.avr-libc
                  0x000000000000101a       0x12 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
                  0x000000000000101a                memcpy
   .text.avr-libc
                  0x000000000000102c        0xe /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
                  0x000000000000102c                memset
                  0x000000000000103a                . = ALIGN (0x2)
   *(.fini9)
   .fini9         0x000000000000103a        0x0 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
                  0x000000000000103a                exit
                  0x000000000000103a                _exit
   *(.fini9)
   *(.fini8)
   *(.fini8)
   *(.fini7)
   *(.fini7)
   *(.fini6)
   *(.fini6)
   *(.fini5)
   *(.fini5)
   *(.fini4)
   *(.fini4)
   *(.fini3)
   *(.fini3)
   *(.fini2)
   *(.fini2)
   *(.fini1)
   *(.fini1)
   *(.fini0)
   .fini0         0x000000000000103a        0x4 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
   *(.fini0)
                  0x000000000000103e                _etext = .
  
  .data           0x0000000000800100       0x10 load address 0x000000000000103e
                  0x0000000000800100                PROVIDE (__data_start, .)
   *(.data)
   .data          0x0000000000800100       0x10 obj/Manette.o
                  0x0000000000800100                Joystick_HID_Interface
   *(.data*)
   *(.gnu.linkonce.d*)
   *(.rodata)
   *(.rodata*)
   *(.gnu.linkonce.r*)
                  0x0000000000800110                . = ALIGN (0x2)
                  0x0000000000800110                _edata = .
                  0x0000000000800110                PROVIDE (__data_end, .)
  
  .bss            0x0000000000800110       0x11
                  0x0000000000800110                PROVIDE (__bss_start, .)
   *(.bss)
   .bss           0x0000000000800110        0x4 obj/Manette.o
   *(.bss*)
   *(COMMON)
   COMMON         0x0000000000800114        0x3 obj/DeviceStandardReq.o
                  0x0000000000800114                USB_Device_ConfigurationNumber
                  0x0000000000800115                USB_Device_CurrentlySelfPowered
                  0x0000000000800116                USB_Device_RemoteWakeupEnabled
   COMMON         0x0000000000800117        0xa obj/USBTask.o
                  0x0000000000800117                USB_IsInitialized
                  0x0000000000800118                USB_DeviceState
                  0x0000000000800119                USB_ControlRequest
                  0x0000000000800121                PROVIDE (__bss_end, .)
                  0x000000000000103e                __data_load_start = LOADADDR (.data)
                  0x000000000000104e                __data_load_end = (__data_load_start + SIZEOF (.data))
  
  .noinit         0x0000000000800121        0x0
                  [!provide]                        PROVIDE (__noinit_start, .)
   *(.noinit*)
                  [!provide]                        PROVIDE (__noinit_end, .)
                  0x0000000000800121                _end = .
                  [!provide]                        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/Manette.o
                                           0x12 (size before relaxing)
   .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/HIDClassDevice.o
  
  .note.gnu.avr.deviceinfo
                  0x0000000000000000       0x40
   .note.gnu.avr.deviceinfo
                  0x0000000000000000       0x40 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  
  .note.gnu.build-id
   *(.note.gnu.build-id)
  
  .debug
   *(.debug)
  
  .line
   *(.line)
  
  .debug_srcinfo
   *(.debug_srcinfo)
  
  .debug_sfnames
   *(.debug_sfnames)
  
  .debug_aranges  0x0000000000000000      0x270
   *(.debug_aranges)
   .debug_aranges
                  0x0000000000000000       0x58 obj/Manette.o
   .debug_aranges
                  0x0000000000000058       0x20 obj/Descriptors.o
   .debug_aranges
                  0x0000000000000078       0xc8 obj/EndpointStream_AVR8.o
   .debug_aranges
                  0x0000000000000140       0x40 obj/Endpoint_AVR8.o
   .debug_aranges
                  0x0000000000000180       0x30 obj/USBController_AVR8.o
   .debug_aranges
                  0x00000000000001b0       0x30 obj/USBInterrupt_AVR8.o
   .debug_aranges
                  0x00000000000001e0       0x20 obj/DeviceStandardReq.o
   .debug_aranges
                  0x0000000000000200       0x20 obj/Events.o
   .debug_aranges
                  0x0000000000000220       0x20 obj/USBTask.o
   .debug_aranges
                  0x0000000000000240       0x30 obj/HIDClassDevice.o
  
  .debug_pubnames
   *(.debug_pubnames)
  
  .debug_info     0x0000000000000000     0x57bc
   *(.debug_info .gnu.linkonce.wi.*)
   .debug_info    0x0000000000000000      0x9f4 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .debug_info    0x00000000000009f4      0x6e2 obj/Manette.o
   .debug_info    0x00000000000010d6      0x700 obj/Descriptors.o
   .debug_info    0x00000000000017d6     0x182b obj/EndpointStream_AVR8.o
   .debug_info    0x0000000000003001      0x61c obj/Endpoint_AVR8.o
   .debug_info    0x000000000000361d      0x4e3 obj/USBController_AVR8.o
   .debug_info    0x0000000000003b00      0x683 obj/USBInterrupt_AVR8.o
   .debug_info    0x0000000000004183      0xa48 obj/DeviceStandardReq.o
   .debug_info    0x0000000000004bcb       0x74 obj/Events.o
   .debug_info    0x0000000000004c3f      0x26e obj/USBTask.o
   .debug_info    0x0000000000004ead      0x90f obj/HIDClassDevice.o
  
  .debug_abbrev   0x0000000000000000     0x1b70
   *(.debug_abbrev)
   .debug_abbrev  0x0000000000000000      0x96a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .debug_abbrev  0x000000000000096a      0x2e2 obj/Manette.o
   .debug_abbrev  0x0000000000000c4c      0x173 obj/Descriptors.o
   .debug_abbrev  0x0000000000000dbf      0x1e8 obj/EndpointStream_AVR8.o
   .debug_abbrev  0x0000000000000fa7      0x224 obj/Endpoint_AVR8.o
   .debug_abbrev  0x00000000000011cb      0x18f obj/USBController_AVR8.o
   .debug_abbrev  0x000000000000135a      0x1b2 obj/USBInterrupt_AVR8.o
   .debug_abbrev  0x000000000000150c      0x29a obj/DeviceStandardReq.o
   .debug_abbrev  0x00000000000017a6       0x42 obj/Events.o
   .debug_abbrev  0x00000000000017e8      0x169 obj/USBTask.o
   .debug_abbrev  0x0000000000001951      0x21f obj/HIDClassDevice.o
  
  .debug_line     0x0000000000000000     0x3573
   *(.debug_line .debug_line.* .debug_line_end)
   .debug_line    0x0000000000000000       0x1a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .debug_line    0x000000000000001a      0x446 obj/Manette.o
   .debug_line    0x0000000000000460      0x247 obj/Descriptors.o
   .debug_line    0x00000000000006a7     0x14a9 obj/EndpointStream_AVR8.o
   .debug_line    0x0000000000001b50      0x529 obj/Endpoint_AVR8.o
   .debug_line    0x0000000000002079      0x370 obj/USBController_AVR8.o
   .debug_line    0x00000000000023e9      0x503 obj/USBInterrupt_AVR8.o
   .debug_line    0x00000000000028ec      0x4e1 obj/DeviceStandardReq.o
   .debug_line    0x0000000000002dcd       0x73 obj/Events.o
   .debug_line    0x0000000000002e40      0x1b7 obj/USBTask.o
   .debug_line    0x0000000000002ff7      0x57c obj/HIDClassDevice.o
  
  .debug_frame    0x0000000000000000      0x75c
   *(.debug_frame)
   .debug_frame   0x0000000000000000       0xb0 obj/Manette.o
   .debug_frame   0x00000000000000b0       0x24 obj/Descriptors.o
   .debug_frame   0x00000000000000d4      0x3bc obj/EndpointStream_AVR8.o
   .debug_frame   0x0000000000000490       0x78 obj/Endpoint_AVR8.o
   .debug_frame   0x0000000000000508       0x58 obj/USBController_AVR8.o
   .debug_frame   0x0000000000000560       0x8c obj/USBInterrupt_AVR8.o
   .debug_frame   0x00000000000005ec       0x3c obj/DeviceStandardReq.o
   .debug_frame   0x0000000000000628       0x24 obj/Events.o
   .debug_frame   0x000000000000064c       0x2c obj/USBTask.o
   .debug_frame   0x0000000000000678       0xe4 obj/HIDClassDevice.o
  
  .debug_str      0x0000000000000000     0x2478
   *(.debug_str)
   .debug_str     0x0000000000000000      0x371 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
   .debug_str     0x0000000000000371      0x666 obj/Manette.o
                                          0x6da (size before relaxing)
   .debug_str     0x00000000000009d7      0x6e5 obj/Descriptors.o
                                          0x955 (size before relaxing)
   .debug_str     0x00000000000010bc      0x69e obj/EndpointStream_AVR8.o
                                          0x873 (size before relaxing)
   .debug_str     0x000000000000175a      0x2f7 obj/Endpoint_AVR8.o
                                          0x627 (size before relaxing)
   .debug_str     0x0000000000001a51      0x22c obj/USBController_AVR8.o
                                          0x566 (size before relaxing)
   .debug_str     0x0000000000001c7d      0x14e obj/USBInterrupt_AVR8.o
                                          0x53b (size before relaxing)
   .debug_str     0x0000000000001dcb      0x455 obj/DeviceStandardReq.o
                                          0x9d9 (size before relaxing)
   .debug_str     0x0000000000002220       0x55 obj/Events.o
                                          0x1ab (size before relaxing)
   .debug_str     0x0000000000002275       0x7f obj/USBTask.o
                                          0x38c (size before relaxing)
   .debug_str     0x00000000000022f4      0x184 obj/HIDClassDevice.o
                                          0x70c (size before relaxing)
  
  .debug_loc      0x0000000000000000     0x3125
   *(.debug_loc)
   .debug_loc     0x0000000000000000       0xb9 obj/Manette.o
   .debug_loc     0x00000000000000b9      0x24b obj/Descriptors.o
   .debug_loc     0x0000000000000304     0x1f97 obj/EndpointStream_AVR8.o
   .debug_loc     0x000000000000229b      0x38d obj/Endpoint_AVR8.o
   .debug_loc     0x0000000000002628       0xd5 obj/USBController_AVR8.o
   .debug_loc     0x00000000000026fd      0x2ab obj/USBInterrupt_AVR8.o
   .debug_loc     0x00000000000029a8      0x2f6 obj/DeviceStandardReq.o
   .debug_loc     0x0000000000002c9e       0x49 obj/USBTask.o
   .debug_loc     0x0000000000002ce7      0x43e obj/HIDClassDevice.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      0x388
   *(.debug_ranges)
   .debug_ranges  0x0000000000000000       0x48 obj/Manette.o
   .debug_ranges  0x0000000000000048       0x28 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       0x20 obj/USBInterrupt_AVR8.o
   .debug_ranges  0x0000000000000320       0x28 obj/DeviceStandardReq.o
   .debug_ranges  0x0000000000000348       0x10 obj/Events.o
   .debug_ranges  0x0000000000000358       0x10 obj/USBTask.o
   .debug_ranges  0x0000000000000368       0x20 obj/HIDClassDevice.o
  
  .debug_macro
   *(.debug_macro)
  OUTPUT(Manette.elf elf32-avr)
  LOAD linker stubs
  
  Cross Reference Table
  
  Symbol                                            File
  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/Manette.o
                                                    obj/HIDClassDevice.o
  CALLBACK_HID_Device_ProcessHIDReport              obj/Manette.o
                                                    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
  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
  CDC_Device_ReceiveByte                            obj/CDCClassDevice.o
  CDC_Device_SendByte                               obj/CDCClassDevice.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
  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/CDCClassDevice.o
  EVENT_PRNT_Device_SoftReset                       obj/PrinterClassDevice.o
  EVENT_USB_Device_ConfigurationChanged             obj/Manette.o
                                                    obj/DeviceStandardReq.o
  EVENT_USB_Device_Connect                          obj/Manette.o
                                                    obj/USBInterrupt_AVR8.o
  EVENT_USB_Device_ControlRequest                   obj/Manette.o
                                                    obj/DeviceStandardReq.o
  EVENT_USB_Device_Disconnect                       obj/Manette.o
                                                    obj/USBInterrupt_AVR8.o
  EVENT_USB_Device_Reset                            obj/Events.o
                                                    obj/USBInterrupt_AVR8.o
  EVENT_USB_Device_StartOfFrame                     obj/Manette.o
                                                    obj/USBInterrupt_AVR8.o
  EVENT_USB_Device_Suspend                          obj/Events.o
                                                    obj/USBInterrupt_AVR8.o
  EVENT_USB_Device_WakeUp                           obj/Events.o
                                                    obj/USBInterrupt_AVR8.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
                                                    obj/Manette.o
  HID_Device_ProcessControlRequest                  obj/HIDClassDevice.o
                                                    obj/Manette.o
  HID_Device_USBTask                                obj/HIDClassDevice.o
                                                    obj/Manette.o
  JoystickReport                                    obj/Descriptors.o
  Joystick_HID_Interface                            obj/Manette.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/Manette.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_DeviceState                                   obj/USBTask.o
                                                    obj/RNDISClassDevice.o
                                                    obj/PrinterClassDevice.o
                                                    obj/MIDIClassDevice.o
                                                    obj/MassStorageClassDevice.o
                                                    obj/HIDClassDevice.o
                                                    obj/CDCClassDevice.o
                                                    obj/DeviceStandardReq.o
                                                    obj/USBInterrupt_AVR8.o
                                                    obj/USBController_AVR8.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
  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/Manette.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/MassStorageClassDevice.o
                                                    obj/CDCClassDevice.o
                                                    obj/EndpointStream_AVR8.o
                                                    obj/Manette.o
  __FUSE_REGION_LENGTH__                            /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __bad_interrupt                                   /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __bss_end                                         /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
  __bss_start                                       /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
  __data_end                                        /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
  __data_load_start                                 /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
  __data_start                                      /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
  __do_clear_bss                                    /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_clear_bss.o)
                                                    obj/USBTask.o
                                                    obj/DeviceStandardReq.o
                                                    obj/Manette.o
  __do_copy_data                                    /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_copy_data.o)
                                                    obj/RNDISClassDevice.o
                                                    obj/CDCClassDevice.o
                                                    obj/Manette.o
  __heap_end                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __init                                            /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __stack                                           /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __strlen_P                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(strlen_P.o)
                                                    obj/CDCClassDevice.o
  __vector_1                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_10                                       obj/USBInterrupt_AVR8.o
                                                    /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_11                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_12                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_13                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_14                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_15                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_16                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_17                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_18                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_19                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_2                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_20                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_21                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_22                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_23                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_24                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_25                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_26                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_27                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_28                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_29                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_3                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_30                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_31                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_32                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_33                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_34                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_35                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_36                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_37                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_38                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_39                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_4                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_40                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_41                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_42                                       /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_5                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_6                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_7                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_8                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_9                                        /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vector_default                                  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  __vectors                                         /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  _exit                                             /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
  eeprom_read_byte                                  /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eerd_byte.o)
                                                    obj/EndpointStream_AVR8.o
  eeprom_update_byte                                /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
                                                    obj/EndpointStream_AVR8.o
  eeprom_update_r18                                 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libatmega32u4.a(eeupd_byte.o)
  exit                                              /usr/lib/gcc/avr/5.4.0/avr5/libgcc.a(_exit.o)
                                                    /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  main                                              obj/Manette.o
                                                    /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/crtatmega32u4.o
  memcmp                                            /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcmp.o)
                                                    obj/HIDClassDevice.o
  memcpy                                            /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy.o)
                                                    obj/RNDISClassDevice.o
                                                    obj/HIDClassDevice.o
  memcpy_P                                          /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memcpy_P.o)
                                                    obj/RNDISClassDevice.o
  memset                                            /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr5/libc.a(memset.o)
                                                    obj/HIDClassDevice.o