-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRobotCode.map
More file actions
3918 lines (3882 loc) · 285 KB
/
RobotCode.map
File metadata and controls
3918 lines (3882 loc) · 285 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Archive member included because of file (symbol)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o)
..\main.o (sin)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o) (__ieee754_rem_pio2)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_cos.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o) (__kernel_cos)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o) (__kernel_rem_pio2)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_sin.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o) (__kernel_sin)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_floor.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o) (floor)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o) (scalbn)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_frexp.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o) (frexp)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_ldexp.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o) (ldexp)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_ldexp.o) (__fpclassifyd)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(sprintf.o)
..\main.o (sprintf)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(vsnprintf.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(sprintf.o) (vsnprintf)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(exit.o)
Startup\__arm_start.o (exit)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memcpy.o)
..\main.o (memcpy)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memset.o)
..\main.o (memset)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
Libraries\FEHLCD.o (strcmp)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
Libraries\FEHLCD.o (strcpy)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strlen.o)
..\main.o (strlen)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o) (__ewl_count_bits32)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o)
(__pformatter_)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o)
(__sformatter)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o) (isspace)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__strtoul.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o) (__strtoul)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__filll_mem.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memset.o) (__fill_mem)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memchr.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o) (memchr)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strchr.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o) (strchr)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_lshrdi3.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o) (__aeabi_llsr)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_ashldi3.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o) (__aeabi_llsl)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubdf3.o)
Libraries\FEHLCD.o (__aeabi_dsub)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivdf3.o)
..\main.o (__aeabi_dmul)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpdf2.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o) (__aeabi_dcmpeq)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixdfsi.o)
Libraries\FEHMotor.o (__aeabi_d2iz)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunsdfsi.o)
Libraries\FEHUtility.o (__aeabi_d2uiz)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_truncdfsf2.o)
..\main.o (__aeabi_d2f)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubsf3.o)
..\main.o (__aeabi_fsub)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivsf3.o)
..\main.o (__aeabi_fmul)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpsf2.o)
..\main.o (__aeabi_fcmpeq)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixsfsi.o)
..\main.o (__aeabi_f2iz)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunssfsi.o)
Drivers\mcg.o (__aeabi_f2uiz)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(gcc_ctor_dtor.o)
Startup\__arm_start.o (__init_cpp)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(ROMCopy.o)
Startup\__arm_start.o (__copy_rom_sections_to_ram)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(exit.o) (__destroy_global_chain)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
Libraries\FEHIO.o (operator new(unsigned int))
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(class_type_info.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (vtable for __cxxabiv1::__class_type_info)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_alloc.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__cxa_allocate_exception)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_arm.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__cxa_end_cleanup)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_aux_runtime.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_arm.o) (__cxa_bad_typeid)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_call.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__cxa_call_unexpected)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_catch.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__cxa_begin_catch)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_exception.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_call.o) (typeinfo for std::bad_exception)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_globals.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_call.o) (__cxa_get_globals_fast)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_personality.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__gxx_personality_v0)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_terminate.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_call.o) (__cxxabiv1::__terminate(void (*)()))
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_throw.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (__cxa_throw)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_unex_handler.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(fundamental_type_info.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_arm.o) (typeinfo for void)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(pointer_type_info.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(fundamental_type_info.o) (vtable for __cxxabiv1::__pointer_type_info)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(pure.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_exception.o) (__cxa_pure_virtual)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(si_class_type_info.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (vtable for __cxxabiv1::__si_class_type_info)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(tinfo.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(class_type_info.o) (std::type_info::~type_info())
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(bad_cast.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_aux_runtime.o) (typeinfo for std::bad_cast)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(bad_typeid.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_aux_runtime.o) (typeinfo for std::bad_typeid)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_term_handler.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(pbase_type_info.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(pointer_type_info.o) (__cxxabiv1::__pbase_type_info::~__pbase_type_info())
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(abort.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(eh_personality.o) (abort)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(alloc.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o) (malloc)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(raise.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(abort.o) (raise)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(signal.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(raise.o) (signal_funcs)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(errno.o)
C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(signal.o) (errno)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(unwind-arm.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/../../../../arm-none-eabi/lib/armv7e-m\libsupc++.a(class_type_info.o) (__aeabi_unwind_cpp_pr0)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(libunwind.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(unwind-arm.o) (restore_core_regs)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(pr-support.o)
c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(unwind-arm.o) (__gnu_unwind_execute)
Allocating common symbols
Common symbol size file
signal_funcs 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(signal.o)
errno 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(errno.o)
Discarded input sections
.group 0x00000000 0x8 ..\main.o
.group 0x00000000 0x8 ..\main.o
.group 0x00000000 0x8 ..\main.o
.text 0x00000000 0x0 ..\main.o
.data 0x00000000 0x0 ..\main.o
.bss 0x00000000 0x0 ..\main.o
.text._Z16nGetCenteredYPosii
0x00000000 0x30 ..\main.o
.text._Z21writeCenteredTextLinePciiii
0x00000000 0x44 ..\main.o
.text._Z21writeCenteredTextLineii
0x00000000 0x34 ..\main.o
.text._Z21writeCenteredTextLineiiii
0x00000000 0x3c ..\main.o
.text._Z21writeCenteredTextLineiiiii
0x00000000 0x40 ..\main.o
.text._Z21writeCenteredTextLinefi
0x00000000 0x2c ..\main.o
.text._Z21writeCenteredTextLinefiiii
0x00000000 0x38 ..\main.o
.text._Z25waitForTouchScreenReleasev
0x00000000 0x2c ..\main.o
.text._Z17driveUntilPressedf
0x00000000 0xdc ..\main.o
.text._Z22smartDriveUntilPressedf
0x00000000 0x3c0 ..\main.o
.text._Z18singleSensorFollowff
0x00000000 0x26c ..\main.o
.text._Z15readLightValuesv
0x00000000 0x1bc ..\main.o
.text._Z16readButtonValuesv
0x00000000 0x1ac ..\main.o
.text._Z17readEncoderValuesv
0x00000000 0x19c ..\main.o
.text 0x00000000 0x0 Startup\__arm_start.o
.data 0x00000000 0x0 Startup\__arm_start.o
.bss 0x00000000 0x0 Startup\__arm_start.o
.text.__iar_program_start
0x00000000 0x4 Startup\__arm_start.o
.text 0x00000000 0x0 Startup\__arm_end.o
.data 0x00000000 0x0 Startup\__arm_end.o
.bss 0x00000000 0x0 Startup\__arm_end.o
.text 0x00000000 0x0 Startup\kinetis_sysinit.o
.data 0x00000000 0x0 Startup\kinetis_sysinit.o
.bss 0x00000000 0x0 Startup\kinetis_sysinit.o
.text 0x00000000 0x0 Libraries\FEHMotor.o
.data 0x00000000 0x0 Libraries\FEHMotor.o
.bss 0x00000000 0x0 Libraries\FEHMotor.o
.text._ZN8FEHMotor4StopEv
0x00000000 0x3c Libraries\FEHMotor.o
.text 0x00000000 0x0 Drivers\mcg.o
.data 0x00000000 0x0 Drivers\mcg.o
.bss 0x00000000 0x0 Drivers\mcg.o
.data.slow_irc_freq
0x00000000 0x4 Drivers\mcg.o
.data.fast_irc_freq
0x00000000 0x4 Drivers\mcg.o
.text._Z12fll_rtc_inithh
0x00000000 0x24 Drivers\mcg.o
.text._Z8pll_inithh
0x00000000 0x1f0 Drivers\mcg.o
.text._Z16set_sys_dividersmmmm
0x00000000 0xa8 Drivers\mcg.o
.text._Z14mcg_pee_2_blpiv
0x00000000 0x1a4 Drivers\mcg.o
.text._Z14mcg_blpi_2_peev
0x00000000 0x180 Drivers\mcg.o
.text._Z13mcg_pbe_2_peev
0x00000000 0x5c Drivers\mcg.o
.text._Z13rtc_as_refclkv
0x00000000 0x1a8 Drivers\mcg.o
.text._Z7fee_feiv
0x00000000 0x134 Drivers\mcg.o
.text._Z8fll_freqi
0x00000000 0x1c8 Drivers\mcg.o
.text._Z7fei_fbehh
0x00000000 0x22c Drivers\mcg.o
.text._Z7fbe_pbehh
0x00000000 0x78 Drivers\mcg.o
.text._Z7pbe_peeh
0x00000000 0xa4 Drivers\mcg.o
.text._Z7pee_pbeh
0x00000000 0x64 Drivers\mcg.o
.text._Z7pbe_fbev
0x00000000 0x44 Drivers\mcg.o
.text._Z12fbe_fbi_fastv
0x00000000 0x94 Drivers\mcg.o
.text._Z12fbe_fbi_slowv
0x00000000 0x94 Drivers\mcg.o
.text._Z8fbi_blpiv
0x00000000 0x28 Drivers\mcg.o
.text._Z3atchi
0x00000000 0x310 Drivers\mcg.o
.debug_info 0x00000000 0xaf6 Drivers\mcg.o
.debug_abbrev 0x00000000 0x210 Drivers\mcg.o
.debug_loc 0x00000000 0x3cc Drivers\mcg.o
.debug_aranges
0x00000000 0xa8 Drivers\mcg.o
.debug_line 0x00000000 0x52a Drivers\mcg.o
.debug_macinfo
0x00000000 0x63047 Drivers\mcg.o
.debug_str 0x00000000 0x5b4 Drivers\mcg.o
.comment 0x00000000 0x7a Drivers\mcg.o
.ARM.attributes
0x00000000 0x33 Drivers\mcg.o
.debug_frame 0x00000000 0x214 Drivers\mcg.o
.text 0x00000000 0x0 Drivers\i2c.o
.data 0x00000000 0x0 Drivers\i2c.o
.bss 0x00000000 0x0 Drivers\i2c.o
.text._Z22u8MMA8451QReadRegisterh
0x00000000 0x1f8 Drivers\i2c.o
.text 0x00000000 0x0 Drivers\spi.o
.data 0x00000000 0x0 Drivers\spi.o
.bss 0x00000000 0x0 Drivers\spi.o
.text 0x00000000 0x0 Drivers\uart.o
.data 0x00000000 0x0 Drivers\uart.o
.bss 0x00000000 0x0 Drivers\uart.o
.text._Z20uart_getchar_presentPV11UART_MemMap
0x00000000 0x20 Drivers\uart.o
.text 0x00000000 0x0 Drivers\ff.o
.data 0x00000000 0x0 Drivers\ff.o
.bss 0x00000000 0x0 Drivers\ff.o
.bss._ZL5FatFs
0x00000000 0x4 Drivers\ff.o
.bss._ZL4Fsid 0x00000000 0x2 Drivers\ff.o
.bss._ZL7CurrVol
0x00000000 0x1 Drivers\ff.o
.text._ZL7mem_cpyPvPKvj
0x00000000 0x50 Drivers\ff.o
.text._ZL7mem_cmpPKvS0_j
0x00000000 0x7c Drivers\ff.o
.text._ZL7chk_chrPKci
0x00000000 0x48 Drivers\ff.o
.text._Z10clust2sectP5FATFSm
0x00000000 0x44 Drivers\ff.o
.text._Z7get_fatP5FATFSm
0x00000000 0x1d4 Drivers\ff.o
.text._Z7put_fatP5FATFSmm
0x00000000 0x268 Drivers\ff.o
.text._ZL12remove_chainP5FATFSm
0x00000000 0xbc Drivers\ff.o
.text._ZL12create_chainP5FATFSm
0x00000000 0x130 Drivers\ff.o
.text._ZL10clmt_clustP3FILm
0x00000000 0x70 Drivers\ff.o
.text._ZL7dir_sdiP3DIRt
0x00000000 0x124 Drivers\ff.o
.text._ZL8dir_nextP3DIRi
0x00000000 0x1fc Drivers\ff.o
.text._ZL8dir_findP3DIR
0x00000000 0xbc Drivers\ff.o
.text._ZL8dir_readP3DIR
0x00000000 0xa8 Drivers\ff.o
.text._ZL12dir_registerP3DIR
0x00000000 0xcc Drivers\ff.o
.text._ZL10dir_removeP3DIR
0x00000000 0x58 Drivers\ff.o
.rodata 0x00000000 0x10 Drivers\ff.o
.text._ZL11create_nameP3DIRPPKc
0x00000000 0x250 Drivers\ff.o
.text._ZL12get_fileinfoP3DIRP7FILINFO
0x00000000 0x164 Drivers\ff.o
.text._ZL11follow_pathP3DIRPKc
0x00000000 0x150 Drivers\ff.o
.text._ZL8check_fsP5FATFSm
0x00000000 0xf0 Drivers\ff.o
.text._ZL11chk_mountedPPKcPP5FATFSh
0x00000000 0x5f8 Drivers\ff.o
.text._Z7f_mounthP5FATFS
0x00000000 0x64 Drivers\ff.o
.text._Z6f_openP3FILPKch
0x00000000 0x358 Drivers\ff.o
.text._Z6f_readP3FILPvjPj
0x00000000 0x33c Drivers\ff.o
.text._Z7f_writeP3FILPKvjPj
0x00000000 0x39c Drivers\ff.o
.text._Z9f_chdriveh
0x00000000 0x34 Drivers\ff.o
.text._Z7f_chdirPKc
0x00000000 0xd4 Drivers\ff.o
.text._Z7f_lseekP3FILm
0x00000000 0x55c Drivers\ff.o
.text._Z9f_opendirP3DIRPKc
0x00000000 0xe4 Drivers\ff.o
.text._Z9f_readdirP3DIRP7FILINFO
0x00000000 0x9c Drivers\ff.o
.text._Z6f_statPKcP7FILINFO
0x00000000 0x78 Drivers\ff.o
.text._Z9f_getfreePKcPmPP5FATFS
0x00000000 0x1f0 Drivers\ff.o
.text._Z10f_truncateP3FIL
0x00000000 0x12c Drivers\ff.o
.text._Z8f_unlinkPKc
0x00000000 0x1d0 Drivers\ff.o
.text._Z7f_mkdirPKc
0x00000000 0x384 Drivers\ff.o
.text._Z7f_chmodPKchh
0x00000000 0xdc Drivers\ff.o
.text._Z7f_utimePKcPK7FILINFO
0x00000000 0xe8 Drivers\ff.o
.text._Z8f_renamePKcS0_
0x00000000 0x270 Drivers\ff.o
.text._Z6f_getsPciP3FIL
0x00000000 0x90 Drivers\ff.o
.text._Z6f_putccP3FIL
0x00000000 0x44 Drivers\ff.o
.text._Z6f_putsPKcP3FIL
0x00000000 0x64 Drivers\ff.o
.text._Z5powerii
0x00000000 0x50 Drivers\ff.o
.text._Z8f_printfP3FILPKcSt9__va_list
0x00000000 0x76c Drivers\ff.o
.rodata._ZZL11create_nameP3DIRPPKcE5excvt
0x00000000 0x80 Drivers\ff.o
.text 0x00000000 0x0 Drivers\SDHC.o
.data 0x00000000 0x0 Drivers\SDHC.o
.bss 0x00000000 0x0 Drivers\SDHC.o
.bss.SDHC_Init
0x00000000 0x4 Drivers\SDHC.o
.bss._ZL5Timer
0x00000000 0x4 Drivers\SDHC.o
.text._Z15disk_initializeh
0x00000000 0x448 Drivers\SDHC.o
.text._Z11GetCardStatv
0x00000000 0x18 Drivers\SDHC.o
.text._Z11SetCardStath
0x00000000 0x20 Drivers\SDHC.o
.text._Z14disk_timerprocv
0x00000000 0x78 Drivers\SDHC.o
.text 0x00000000 0x0 Drivers\lptmr.o
.data 0x00000000 0x0 Drivers\lptmr.o
.bss 0x00000000 0x0 Drivers\lptmr.o
.text 0x00000000 0x0 FEHProteus.o
.data 0x00000000 0x0 FEHProteus.o
.bss 0x00000000 0x0 FEHProteus.o
.text 0x00000000 0x0 Drivers\FEHPropeller.o
.data 0x00000000 0x0 Drivers\FEHPropeller.o
.bss 0x00000000 0x0 Drivers\FEHPropeller.o
.text._ZN12FEHPropeller13IsInitializedEv
0x00000000 0x18 Drivers\FEHPropeller.o
.text._ZN12FEHPropeller5ResetEv
0x00000000 0x40 Drivers\FEHPropeller.o
.text 0x00000000 0x0 Libraries\FEHUtility.o
.data 0x00000000 0x0 Libraries\FEHUtility.o
.bss 0x00000000 0x0 Libraries\FEHUtility.o
.text._Z5Sleepf
0x00000000 0x48 Libraries\FEHUtility.o
.text._Z7TimeNowv
0x00000000 0x70 Libraries\FEHUtility.o
.text._Z10TimeNowSecv
0x00000000 0x18 Libraries\FEHUtility.o
.text._Z11TimeNowMSecv
0x00000000 0x44 Libraries\FEHUtility.o
.text._Z9ResetTimev
0x00000000 0x4c Libraries\FEHUtility.o
.text 0x00000000 0x0 Libraries\FEHIO.o
.data 0x00000000 0x0 Libraries\FEHIO.o
.bss 0x00000000 0x0 Libraries\FEHIO.o
.text._ZN15DigitalInputPinC2Ev
0x00000000 0x18 Libraries\FEHIO.o
.text._ZN14DigitalEncoderC2EN5FEHIO8FEHIOPinENS0_21FEHIOInterruptTriggerE
0x00000000 0x2c Libraries\FEHIO.o
.text._ZN14DigitalEncoderC2Ev
0x00000000 0x18 Libraries\FEHIO.o
.text._ZN16DigitalOutputPinC2EN5FEHIO8FEHIOPinE
0x00000000 0x214 Libraries\FEHIO.o
.text._ZN16DigitalOutputPin5WriteEb
0x00000000 0x2cc Libraries\FEHIO.o
.text._ZN16DigitalOutputPin6StatusEv
0x00000000 0x140 Libraries\FEHIO.o
.text._ZN16DigitalOutputPin6ToggleEv
0x00000000 0x15c Libraries\FEHIO.o
.text._ZN13AnalogEncoder7SetRateEj
0x00000000 0x30 Libraries\FEHIO.o
.text._ZN13AnalogEncoderC2EN5FEHIO8FEHIOPinE
0x00000000 0x194 Libraries\FEHIO.o
.text._ZN13AnalogEncoder13SetThresholdsEff
0x00000000 0xa0 Libraries\FEHIO.o
.text._ZN13AnalogEncoderD2Ev
0x00000000 0xb8 Libraries\FEHIO.o
.text._ZN13AnalogEncoder6CountsEv
0x00000000 0x18 Libraries\FEHIO.o
.text._ZN13AnalogEncoder11ResetCountsEv
0x00000000 0x1c Libraries\FEHIO.o
.text._ZN11ButtonBoardC2EN5FEHIO9FEHIOPortE
0x00000000 0x10c Libraries\FEHIO.o
.text._ZN11ButtonBoard11LeftPressedEv
0x00000000 0x24 Libraries\FEHIO.o
.text._ZN11ButtonBoard12LeftReleasedEv
0x00000000 0x1c Libraries\FEHIO.o
.text._ZN11ButtonBoard13MiddlePressedEv
0x00000000 0x28 Libraries\FEHIO.o
.text._ZN11ButtonBoard14MiddleReleasedEv
0x00000000 0x20 Libraries\FEHIO.o
.text._ZN11ButtonBoard12RightPressedEv
0x00000000 0x28 Libraries\FEHIO.o
.text._ZN11ButtonBoard13RightReleasedEv
0x00000000 0x20 Libraries\FEHIO.o
.text 0x00000000 0x0 Drivers\adc16.o
.data 0x00000000 0x0 Drivers\adc16.o
.bss 0x00000000 0x0 Drivers\adc16.o
.text._Z12ADC_Read_CalPV10ADC_MemMapP7adc_cal
0x00000000 0xc0 Drivers\adc16.o
.text 0x00000000 0x0 Libraries\FEHBuzzer.o
.data 0x00000000 0x0 Libraries\FEHBuzzer.o
.bss 0x00000000 0x0 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4BeepEv
0x00000000 0x20 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4BuzzEv
0x00000000 0x20 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4BuzzEd
0x00000000 0x48 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4BuzzEi
0x00000000 0x20 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneEi
0x00000000 0x20 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneENS_7stdnoteE
0x00000000 0x24 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneEii
0x00000000 0xa8 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneEid
0x00000000 0x48 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneENS_7stdnoteEi
0x00000000 0x24 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer4ToneENS_7stdnoteEd
0x00000000 0x50 Libraries\FEHBuzzer.o
.text._ZN9FEHBuzzer3OffEv
0x00000000 0x20 Libraries\FEHBuzzer.o
.text 0x00000000 0x0 Libraries\FEHServo.o
.data 0x00000000 0x0 Libraries\FEHServo.o
.bss 0x00000000 0x0 Libraries\FEHServo.o
.text._ZN8FEHServo6SetMinEi
0x00000000 0x3c Libraries\FEHServo.o
.text._ZN8FEHServo6SetMaxEi
0x00000000 0x3c Libraries\FEHServo.o
.text._ZN8FEHServo9SetDegreeEf
0x00000000 0x148 Libraries\FEHServo.o
.text._ZN8FEHServo9DigitalOnEv
0x00000000 0x64 Libraries\FEHServo.o
.text._ZN8FEHServo10DigitalOffEv
0x00000000 0x64 Libraries\FEHServo.o
.rodata 0x00000000 0x188 Libraries\FEHServo.o
.text._ZN8FEHServo9CalibrateEv
0x00000000 0x384 Libraries\FEHServo.o
.text._ZN8FEHServo14TouchCalibrateEv
0x00000000 0xd98 Libraries\FEHServo.o
.text._ZN8FEHServo3OffEv
0x00000000 0x84 Libraries\FEHServo.o
.text 0x00000000 0x0 Libraries\FEHLCD.o
.data 0x00000000 0x0 Libraries\FEHLCD.o
.bss 0x00000000 0x0 Libraries\FEHLCD.o
.text._ZN6FEHLCD14SetOrientationENS_17FEHLCDOrientationE
0x00000000 0xcc Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteAtEiii
0x00000000 0x3c Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteAtEfii
0x00000000 0xf8 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteAtEdii
0x00000000 0x2c Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteAtEbii
0x00000000 0x44 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteAtEcii
0x00000000 0x2c Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEPKcii
0x00000000 0x40 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEiii
0x00000000 0x40 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEfii
0x00000000 0x40 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEdii
0x00000000 0x44 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEbii
0x00000000 0x44 Libraries\FEHLCD.o
.text._ZN6FEHLCD7WriteRCEcii
0x00000000 0x44 Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEPKc
0x00000000 0x5c Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEi
0x00000000 0x34 Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEf
0x00000000 0xdc Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEd
0x00000000 0x28 Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEb
0x00000000 0x38 Libraries\FEHLCD.o
.text._ZN6FEHLCD5WriteEc
0x00000000 0x30 Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEPKc
0x00000000 0x28 Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEi
0x00000000 0x28 Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEf
0x00000000 0x28 Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEd
0x00000000 0x2c Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEb
0x00000000 0x2c Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteLineEc
0x00000000 0x2c Libraries\FEHLCD.o
.text._ZN6FEHLCD8NextCharEv
0x00000000 0x34 Libraries\FEHLCD.o
.text._ZN6FEHLCD9DrawPixelEii
0x00000000 0x30 Libraries\FEHLCD.o
.text._Z4SwapRiS_
0x00000000 0x28 Libraries\FEHLCD.o
.text.abs 0x00000000 0x24 Libraries\FEHLCD.o
.text._ZN6FEHLCD18DrawHorizontalLineEiii
0x00000000 0x7c Libraries\FEHLCD.o
.text._ZN6FEHLCD16DrawVerticalLineEiii
0x00000000 0x7c Libraries\FEHLCD.o
.text._ZN6FEHLCD13DrawRectangleEiiii
0x00000000 0x80 Libraries\FEHLCD.o
.text._ZN6FEHLCD8DrawLineEiiii
0x00000000 0x17c Libraries\FEHLCD.o
.text._ZN6FEHLCD10DrawCircleEiii
0x00000000 0x178 Libraries\FEHLCD.o
.text._ZN6FEHLCD10FillCircleEiii
0x00000000 0x110 Libraries\FEHLCD.o
.text._ZN6FEHLCD9WriteCharEiic
0x00000000 0x40 Libraries\FEHLCD.o
.text._ZN7FEHIcon4IconC2Ev
0x00000000 0x18 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon13SetPropertiesEPciiiijj
0x00000000 0x70 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon4DrawEv
0x00000000 0xb0 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon6SelectEv
0x00000000 0xb8 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon8DeselectEv
0x00000000 0xb4 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon7PressedEffi
0x00000000 0x1dc Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon12WhilePressedEff
0x00000000 0x5c Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon17ChangeLabelStringEPKc
0x00000000 0x78 Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon16ChangeLabelFloatEf
0x00000000 0x13c Libraries\FEHLCD.o
.text._ZN7FEHIcon4Icon14ChangeLabelIntEi
0x00000000 0x90 Libraries\FEHLCD.o
.text._ZN7FEHIcon13DrawIconArrayEPNS_4IconEiiiiiiPA20_cjj
0x00000000 0x194 Libraries\FEHLCD.o
.text 0x00000000 0x0 Libraries\FEHAccel.o
.data 0x00000000 0x0 Libraries\FEHAccel.o
.bss 0x00000000 0x0 Libraries\FEHAccel.o
.text._ZN8FEHAccel1XEv
0x00000000 0x78 Libraries\FEHAccel.o
.text._ZN8FEHAccel1YEv
0x00000000 0x78 Libraries\FEHAccel.o
.text._ZN8FEHAccel1ZEv
0x00000000 0x78 Libraries\FEHAccel.o
.text 0x00000000 0x0 Libraries\FEHBattery.o
.data 0x00000000 0x0 Libraries\FEHBattery.o
.bss 0x00000000 0x0 Libraries\FEHBattery.o
.text 0x00000000 0x0 Drivers\FEHXBee.o
.data 0x00000000 0x0 Drivers\FEHXBee.o
.bss 0x00000000 0x0 Drivers\FEHXBee.o
.text._ZN7FEHXBee10InitializeEv
0x00000000 0x148 Drivers\FEHXBee.o
.text._ZN7FEHXBee13IsInitializedEv
0x00000000 0x18 Drivers\FEHXBee.o
.text._ZN7FEHXBee11ReceiveDataEPcj
0x00000000 0x88 Drivers\FEHXBee.o
.text._ZN7FEHXBee17ReceiveDataSearchEPcjh
0x00000000 0xb4 Drivers\FEHXBee.o
.text._ZN7FEHXBee8SendDataEPcj
0x00000000 0x50 Drivers\FEHXBee.o
.text 0x00000000 0x0 Libraries\FEHRPS.o
.data 0x00000000 0x0 Libraries\FEHRPS.o
.bss 0x00000000 0x0 Libraries\FEHRPS.o
.bss._region 0x00000000 0x4 Libraries\FEHRPS.o
.rodata 0x00000000 0x220 Libraries\FEHRPS.o
.text._ZN6FEHRPS10InitializeEi
0x00000000 0x8b4 Libraries\FEHRPS.o
.text._ZN6FEHRPS10InitializeEc
0x00000000 0x4c Libraries\FEHRPS.o
.text._ZN6FEHRPS14InitializeMenuEv
0x00000000 0x1cc Libraries\FEHRPS.o
.text._ZN6FEHRPS19InitializeTouchMenuEv
0x00000000 0x908 Libraries\FEHRPS.o
.text._ZN6FEHRPS13CurrentCourseEv
0x00000000 0x3c Libraries\FEHRPS.o
.text._ZN6FEHRPS19CurrentRegionLetterEv
0x00000000 0x20 Libraries\FEHRPS.o
.text._ZN6FEHRPS13CurrentRegionEv
0x00000000 0x18 Libraries\FEHRPS.o
.text._ZN6FEHRPS18RedSwitchDirectionEv
0x00000000 0x24 Libraries\FEHRPS.o
.text._ZN6FEHRPS20WhiteSwitchDirectionEv
0x00000000 0x28 Libraries\FEHRPS.o
.text._ZN6FEHRPS19BlueSwitchDirectionEv
0x00000000 0x28 Libraries\FEHRPS.o
.text._ZN6FEHRPS4TimeEv
0x00000000 0x20 Libraries\FEHRPS.o
.text._ZN6FEHRPS13WaitForPacketEv
0x00000000 0x78 Libraries\FEHRPS.o
.text._ZN6FEHRPS1XEv
0x00000000 0x20 Libraries\FEHRPS.o
.text._ZN6FEHRPS1YEv
0x00000000 0x20 Libraries\FEHRPS.o
.text._ZN6FEHRPS7HeadingEv
0x00000000 0x20 Libraries\FEHRPS.o
.text 0x00000000 0x0 Libraries\FEHSD.o
.data 0x00000000 0x0 Libraries\FEHSD.o
.bss 0x00000000 0x0 Libraries\FEHSD.o
.bss._ZL9FATFS_Obj
0x00000000 0x234 Libraries\FEHSD.o
.bss.f_res 0x00000000 0x1 Libraries\FEHSD.o
.bss.x 0x00000000 0x4 Libraries\FEHSD.o
.bss.y 0x00000000 0x4 Libraries\FEHSD.o
.bss.counter 0x00000000 0x4 Libraries\FEHSD.o
.rodata 0x00000000 0xdc Libraries\FEHSD.o
.text._ZN5FEHSD7OpenLogEv
0x00000000 0x1a4 Libraries\FEHSD.o
.text._ZN5FEHSD6PrintfEPKcz
0x00000000 0x30 Libraries\FEHSD.o
.text._ZN5FEHSD10InitializeEv
0x00000000 0x118 Libraries\FEHSD.o
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_sin.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(e_rem_pio2.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_cos.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_cos.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_cos.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_rem_pio2.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_sin.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_sin.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(k_sin.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_floor.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_floor.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_floor.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(scalbn.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_frexp.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_frexp.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_frexp.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_ldexp.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_ldexp.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(s_ldexp.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__ewl_generic_count_bits32
0x00000000 0x28 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__ewl_generic_count_leading_zero32
0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__ewl_generic_count_bits64
0x00000000 0x7e C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__ewl_generic_count_leading_zero64
0x00000000 0x4e C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__signbitf
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__fpclassifyf
0x00000000 0x2c C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__signbitd
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text.__ewl_relation
0x00000000 0x4c C:\fehqt\Proteus/EWL/lib/armv7e-m\libm.a(math_api.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(sprintf.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(sprintf.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(sprintf.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(vsnprintf.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(vsnprintf.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(vsnprintf.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(exit.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(exit.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(exit.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memcpy.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memcpy.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memcpy.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memset.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memset.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memset.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.text.strcmp 0x00000000 0x18 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_info 0x00000000 0x116 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_abbrev 0x00000000 0x7e C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_loc 0x00000000 0x26 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_aranges
0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_line 0x00000000 0x88 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_str 0x00000000 0x149 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.comment 0x00000000 0x7a C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.ARM.attributes
0x00000000 0x33 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.debug_frame 0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcmp.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.text.strcpy 0x00000000 0x18 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_info 0x00000000 0x10a C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_abbrev 0x00000000 0x7c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_loc 0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_aranges
0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_line 0x00000000 0x8e C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_str 0x00000000 0x139 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.comment 0x00000000 0x7a C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.ARM.attributes
0x00000000 0x33 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.debug_frame 0x00000000 0x28 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strcpy.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strlen.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strlen.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strlen.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_bits32
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_leading_zero32
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_trailing_zero32
0x00000000 0xa C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_leading_one32
0x00000000 0x6 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_trailing_one32
0x00000000 0x6 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_rotate_left32
0x00000000 0xe C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_rotate_right32
0x00000000 0xa C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_bits64
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_leading_zero64
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_trailing_zero64
0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_leading_one64
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_count_trailing_one64
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_rotate_left64
0x00000000 0x2e C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text.__ewl_rotate_right64
0x00000000 0x2e C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_info 0x00000000 0x31c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_abbrev 0x00000000 0x8f C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_loc 0x00000000 0x1cf C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_aranges
0x00000000 0x88 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_line 0x00000000 0x151 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_str 0x00000000 0x283 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.comment 0x00000000 0x7a C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.ARM.attributes
0x00000000 0x33 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.debug_frame 0x00000000 0x110 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(math_ARM.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(printformat_.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(scanformat_.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isalnum 0x00000000 0x18 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.iscntrl 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isdigit 0x00000000 0xc C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isgraph 0x00000000 0x18 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.islower 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isprint 0x00000000 0x18 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.ispunct 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isupper 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isxdigit
0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.isblank 0x00000000 0x24 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text.tolower 0x00000000 0xc C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(ctype_aeabi.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__strtoul.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__strtoul.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__strtoul.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__filll_mem.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__filll_mem.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(__filll_mem.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memchr.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memchr.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(memchr.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strchr.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strchr.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\libc.a(strchr.o)
.text 0x00000000 0x18 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_lshrdi3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_lshrdi3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_lshrdi3.o)
.ARM.attributes
0x00000000 0x1e c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_lshrdi3.o)
.text 0x00000000 0x18 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_ashldi3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_ashldi3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_ashldi3.o)
.ARM.attributes
0x00000000 0x1e c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_ashldi3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubdf3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubdf3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivdf3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivdf3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpdf2.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpdf2.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixdfsi.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixdfsi.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunsdfsi.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunsdfsi.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_truncdfsf2.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_truncdfsf2.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubsf3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_addsubsf3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivsf3.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_muldivsf3.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpsf2.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_cmpsf2.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixsfsi.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixsfsi.o)
.text 0x00000000 0x40 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunssfsi.o)
.data 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunssfsi.o)
.bss 0x00000000 0x0 c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunssfsi.o)
.ARM.attributes
0x00000000 0x1e c:/fehqt/proteus/gcc/bin/../lib/gcc/arm-none-eabi/4.6.2/armv7e-m\libgcc.a(_arm_fixunssfsi.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(gcc_ctor_dtor.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(gcc_ctor_dtor.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(gcc_ctor_dtor.o)
.bss.__dso_handle
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(gcc_ctor_dtor.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(ROMCopy.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(ROMCopy.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(ROMCopy.o)
.text.__flush_cache
0x00000000 0x2 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(ROMCopy.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.text.__register_global_object
0x00000000 0x14 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.text.__cxa_atexit
0x00000000 0x38 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.text.__aeabi_atexit
0x00000000 0xa C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.text.__register_atexit
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.text.__init_hardware
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.bss.atexit_curr_func
0x00000000 0x4 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.bss.atexit_funcs
0x00000000 0x300 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(__arm_eabi_init.o)
.group 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x10 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x1c C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x10 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.group 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.data 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.bss 0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNSt9exceptionD2Ev
0x00000000 0xc C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNSt9exceptionD2Ev
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNSt9exceptionD2Ev
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNKSt9exception4whatEv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNKSt9exception4whatEv
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNKSt9exception4whatEv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNSt9bad_allocD2Ev
0x00000000 0xc C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNSt9bad_allocD2Ev
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNSt9bad_allocD2Ev
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNKSt9bad_alloc4whatEv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNKSt9bad_alloc4whatEv
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNKSt9bad_alloc4whatEv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZSt17__throw_bad_allocv
0x00000000 0x2c C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZSt17__throw_bad_allocv
0x00000000 0xc C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZSt17__throw_bad_allocv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZSt15set_new_handlerPFvvE
0x00000000 0x10 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZSt15set_new_handlerPFvvE
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZSt15set_new_handlerPFvvE
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._Znwj 0x00000000 0x4c C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._Znwj
0x00000000 0x20 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._Znwj
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZnwjRKSt9nothrow_t
0x00000000 0x22 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZnwjRKSt9nothrow_t
0x00000000 0x2c C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZnwjRKSt9nothrow_t
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZdlPv 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZdlPv
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZdlPv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNSt9bad_allocD0Ev
0x00000000 0x14 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNSt9bad_allocD0Ev
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNSt9bad_allocD0Ev
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZNSt9exceptionD0Ev
0x00000000 0x14 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZNSt9exceptionD0Ev
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZNSt9exceptionD0Ev
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._Znaj 0x00000000 0x14 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._Znaj
0x00000000 0x24 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._Znaj
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZnajRKSt9nothrow_t
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZnajRKSt9nothrow_t
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZnajRKSt9nothrow_t
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZdaPv 0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZdaPv
0x00000000 0x0 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.exidx.text._ZdaPv
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.text._ZdlPvRKSt9nothrow_t
0x00000000 0x8 C:\fehqt\Proteus/EWL/lib/armv7e-m\librt.a(New.o)
.ARM.extab.text._ZdlPvRKSt9nothrow_t