forked from jameswalmsley/RaspberryPi-FreeRTOS
-
Notifications
You must be signed in to change notification settings - Fork 46
/
kernel.map
1569 lines (1538 loc) · 151 KB
/
kernel.map
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Archive member included to satisfy reference by file (symbol)
/usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o)
/home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o (__aeabi_uidiv)
/usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_dvmd_tls.o)
/usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o) (__aeabi_idiv0)
/usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
/home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o (memcpy)
Allocating common symbols
Common symbol size file
SCREEN_WIDTH 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
s_bWereEnabled 0x1 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
xBoundUdpSocketsList
0x14 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
SCREEN_HEIGHT 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
framebuffer 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
mailbuffer 0x58 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
xBoundTcpSocketsList
0x14 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
Memory Configuration
Name Origin Length Attributes
RESERVED 0x0000000000000000 0x0000000000008000 r
INIT_RAM 0x0000000000008000 0x0000000000008000 xrw
RAM 0x0000000000010000 0x0000000008000000 xrw
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/event_groups.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/startup.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mailbox.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/trace.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mem.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/util.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DHCP.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Stream_Buffer.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_WIN.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_UDP_IP.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
LOAD /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
.init 0x0000000000008000 0xe0
*(.init)
.init 0x0000000000008000 0xe0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/startup.o
0x0000000000008000 _start
.module_entries
0x00000000000080e0 0x0
0x00000000000080e0 __module_entries_start = .
*(.module_entries)
*(.module_entries.*)
0x00000000000080e0 __module_entries_end = .
0x0000000000000000 __module_entries_size = SIZEOF (.module_entries)
.text 0x0000000000010000 0x28dd8
*(.text)
.text 0x0000000000010000 0x348 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
0x0000000000010000 pxPortInitialiseStack
0x0000000000010240 xPortStartScheduler
0x000000000001025c vPortEndScheduler
0x0000000000010270 vTickISR
.text 0x0000000000010348 0x324 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
0x0000000000010348 vPortISRStartFirstTask
0x00000000000103e0 vPortYieldProcessor
0x0000000000010498 vFreeRTOS_ISR
0x0000000000010550 vPortEnterCritical
0x00000000000105e0 vPortExitCritical
.text 0x000000000001066c 0x7a4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
0x000000000001066c xCoRoutineCreate
0x00000000000107d4 vCoRoutineAddToDelayedList
0x0000000000010ba8 vCoRoutineSchedule
0x0000000000010d84 xCoRoutineRemoveFromEventList
.text 0x0000000000010e10 0x294 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
0x0000000000010e10 vListInitialise
0x0000000000010e74 vListInitialiseItem
0x0000000000010e9c vListInsertEnd
0x0000000000010f30 vListInsert
0x0000000000011004 vListRemove
.text 0x00000000000110a4 0xd64 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
0x00000000000110a4 xQueueGenericReset
0x00000000000111b8 xQueueGenericCreate
0x0000000000011280 xQueueCreateMutex
0x000000000001135c xQueueCreateCountingSemaphore
0x00000000000113ac xQueueGenericSend
0x0000000000011558 xQueueGenericSendFromISR
0x0000000000011634 xQueueGenericReceive
0x0000000000011888 xQueueReceiveFromISR
0x0000000000011968 uxQueueMessagesWaiting
0x000000000001199c uxQueueMessagesWaitingFromISR
0x00000000000119cc vQueueDelete
0x0000000000011d34 xQueueIsQueueEmptyFromISR
0x0000000000011dc0 xQueueIsQueueFullFromISR
.text 0x0000000000011e08 0x1e04 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
0x0000000000011e08 xTaskGenericCreate
0x0000000000012070 vTaskDelete
0x0000000000012178 vTaskDelayUntil
0x000000000001228c vTaskDelay
0x000000000001230c uxTaskPriorityGet
0x0000000000012364 vTaskPrioritySet
0x0000000000012528 vTaskSuspend
0x0000000000012634 xTaskIsTaskSuspended
0x00000000000126b0 vTaskResume
0x00000000000127a4 xTaskResumeFromISR
0x00000000000128bc vTaskStartScheduler
0x0000000000012954 vTaskEndScheduler
0x0000000000012988 vTaskSuspendAll
0x00000000000129b8 xTaskResumeAll
0x0000000000012b74 xTaskGetTickCount
0x0000000000012ba8 xTaskGetTickCountFromISR
0x0000000000012be0 uxTaskGetNumberOfTasks
0x0000000000012c04 vTaskIncrementTick
0x0000000000012e58 vTaskSetApplicationTaskTag
0x0000000000012eb0 xTaskGetApplicationTaskTag
0x0000000000012f0c xTaskCallApplicationTaskHook
0x0000000000012f88 vTaskSwitchContext
0x0000000000013090 vTaskPlaceOnEventList
0x0000000000013130 vTaskPlaceOnUnorderedEventList
0x00000000000131ec xTaskRemoveFromEventList
0x0000000000013300 xTaskRemoveFromUnorderedEventList
0x00000000000133fc vTaskSetTimeOutState
0x0000000000013440 xTaskCheckForTimeOut
0x000000000001353c vTaskMissedYield
0x0000000000013980 xTaskGetCurrentTaskHandle
0x00000000000139b0 vTaskPriorityInherit
0x0000000000013adc vTaskPriorityDisinherit
0x0000000000013bb4 uxTaskResetEventItemValue
.text 0x0000000000013c0c 0x710 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/event_groups.o
0x0000000000013c0c xEventGroupCreate
0x0000000000013c5c xEventGroupSync
0x0000000000013dec xEventGroupWaitBits
0x0000000000013fbc xEventGroupClearBits
0x0000000000014018 xEventGroupGetBitsFromISR
0x0000000000014058 xEventGroupSetBits
0x00000000000141e8 vEventGroupDelete
0x000000000001424c vEventGroupSetBitsCallback
0x0000000000014274 vEventGroupClearBitsCallback
.text 0x000000000001431c 0x424 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
0x000000000001434c irqHandler
0x0000000000014468 InitInterruptController
0x00000000000144e0 RegisterInterrupt
0x0000000000014560 EnableInterrupt
0x0000000000014638 DisableInterrupt
0x0000000000014710 EnableInterrupts
0x0000000000014728 DisableInterrupts
.text 0x0000000000014740 0x614 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
0x0000000000014740 SetGpioFunction
0x0000000000014810 SetGpioDirection
0x0000000000014840 SetGpio
0x0000000000014900 ReadGpio
0x0000000000014950 EnableGpioDetect
0x0000000000014b24 DisableGpioDetect
0x0000000000014d00 ClearGpioInterrupt
.text 0x0000000000014d54 0x4d0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
0x0000000000014d54 pvPortMalloc
0x0000000000014f2c vPortFree
0x0000000000014fa8 xPortGetFreeHeapSize
0x0000000000014fcc vPortInitialiseBlocks
.text 0x0000000000015224 0x28 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/startup.o
0x000000000001523c PUT32
0x0000000000015244 GET32
.text 0x000000000001524c 0x934 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
0x000000000001524c task1
0x0000000000015284 task2
0x00000000000152c4 serverTask
0x00000000000153f0 serverListenTask
0x00000000000159c4 main
.text 0x0000000000015b80 0xf4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mailbox.o
0x0000000000015b80 mailboxWrite
0x0000000000015bf0 mailboxRead
.text 0x0000000000015c74 0x34c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/trace.o
0x0000000000015c74 __cyg_profile_func_enter
0x0000000000015e0c __cyg_profile_func_exit
.text 0x0000000000015fc0 0x3d8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mem.o
0x0000000000015fc0 memset
0x0000000000016024 memmove
0x00000000000160d4 memcpy2
0x0000000000016148 memcmp
0x00000000000161e8 strcpy
0x0000000000016248 strncpy
0x00000000000162f0 strlen
0x0000000000016344 rand
.text 0x0000000000016398 0xa18 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
0x0000000000016398 enablelogging
0x00000000000163bc initFB
0x00000000000165ec drawPixel
0x000000000001664c drawRect
0x00000000000166d8 drawChar
0x0000000000016800 drawString
0x000000000001686c println
0x0000000000016aa8 printHex
0x0000000000016cc8 videotest
.text 0x0000000000016db0 0x45c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
0x0000000000016db0 MsDelay
0x0000000000016e14 usDelay
0x0000000000016e70 StartKernelTimer
0x0000000000016eac CancelKernelTimer
0x0000000000016ed4 ConnectInterrupt
0x0000000000016f14 SetPowerStateOn
0x0000000000016fdc GetMACAddress
0x0000000000017100 LogWrite
0x0000000000017134 uspi_assertion_failed
0x0000000000017180 DebugHexdump
0x00000000000171b0 malloc
0x00000000000171e4 free
.text 0x000000000001720c 0x105c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
0x000000000001720c USPiInitialize
0x0000000000017560 USPiKeyboardAvailable
0x00000000000175bc USPiKeyboardRegisterKeyPressedHandler
0x000000000001764c USPiKeyboardRegisterShutdownHandler
0x00000000000176dc USPiKeyboardRegisterKeyStatusHandlerRaw
0x000000000001776c USPiMouseAvailable
0x00000000000177c8 USPiMouseRegisterStatusHandler
0x0000000000017858 USPiMassStorageDeviceAvailable
0x00000000000178e8 USPiMassStorageDeviceRead
0x00000000000179d4 USPiMassStorageDeviceWrite
0x0000000000017ac0 USPiMassStorageDeviceGetCapacity
0x0000000000017b60 USPiEthernetAvailable
0x0000000000017bbc USPiGetMACAddress
0x0000000000017c7c USPiSendFrame
0x0000000000017d2c USPiReceiveFrame
0x0000000000017ddc USPiGamePadAvailable
0x0000000000017e74 USPiGamePadRegisterStatusHandler
0x0000000000017f30 USPiGamePadGetStatus
0x0000000000018000 USPiDeviceGetInformation
.text 0x0000000000018268 0x3594 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
0x0000000000018268 DWHCIDevice
0x0000000000018314 _DWHCIDevice
0x000000000001833c DWHCIDeviceInitialize
0x00000000000185e0 DWHCIDeviceGetDescriptor
0x0000000000018698 DWHCIDeviceSetAddress
0x000000000001873c DWHCIDeviceSetConfiguration
0x00000000000187e0 DWHCIDeviceControlMessage
0x0000000000018968 DWHCIDeviceTransfer
0x0000000000018a1c DWHCIDeviceSubmitBlockingRequest
0x0000000000018d24 DWHCIDeviceSubmitAsyncRequest
0x0000000000018e58 DWHCIDeviceInitCore
0x000000000001918c DWHCIDeviceInitHost
0x0000000000019468 DWHCIDeviceEnableRootPort
0x0000000000019594 DWHCIDeviceReset
0x00000000000196a0 DWHCIDeviceEnableGlobalInterrupts
0x0000000000019724 DWHCIDeviceEnableCommonInterrupts
0x0000000000019798 DWHCIDeviceEnableHostInterrupts
0x0000000000019834 DWHCIDeviceEnableChannelInterrupt
0x00000000000198d4 DWHCIDeviceDisableChannelInterrupt
0x0000000000019978 DWHCIDeviceFlushTxFIFO
0x0000000000019a54 DWHCIDeviceFlushRxFIFO
0x0000000000019b04 DWHCIDeviceTransferStage
0x0000000000019c18 DWHCIDeviceCompletionRoutine
0x0000000000019c70 DWHCIDeviceTransferStageAsync
0x0000000000019e8c DWHCIDeviceStartTransaction
0x000000000001a014 DWHCIDeviceStartChannel
0x000000000001a5a4 DWHCIDeviceChannelInterruptHandler
0x000000000001ad0c DWHCIDeviceInterruptHandler
0x000000000001aedc DWHCIDeviceTimerHandler
0x000000000001b034 DWHCIDeviceAllocateChannel
0x000000000001b0fc DWHCIDeviceFreeChannel
0x000000000001b1cc DWHCIDeviceWaitForBit
0x000000000001b304 DWHCIDeviceGetPortSpeed
0x000000000001b3c8 DWHCIDeviceOvercurrentDetected
0x000000000001b45c DWHCIDeviceDisableRootPort
0x000000000001b4e0 DWHCIDeviceDumpRegister
0x000000000001b564 DWHCIDeviceDumpStatus
.text 0x000000000001b7fc 0x6ec /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
0x000000000001b7fc DWHCIRegister
0x000000000001b854 DWHCIRegister2
0x000000000001b8bc _DWHCIRegister
0x000000000001b904 DWHCIRegisterRead
0x000000000001b96c DWHCIRegisterWrite
0x000000000001b9e8 DWHCIRegisterGet
0x000000000001ba58 DWHCIRegisterSet
0x000000000001bab0 DWHCIRegisterIsSet
0x000000000001bb3c DWHCIRegisterAnd
0x000000000001bbbc DWHCIRegisterOr
0x000000000001bc3c DWHCIRegisterClearBit
0x000000000001bcec DWHCIRegisterSetBit
0x000000000001bd98 DWHCIRegisterClearAll
0x000000000001bdec DWHCIRegisterSetAll
0x000000000001be40 DWHCIRegisterDump
.text 0x000000000001bee8 0x14a0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
0x000000000001bee8 DWHCITransferStageData
0x000000000001c438 _DWHCITransferStageData
0x000000000001c518 DWHCITransferStageDataTransactionComplete
0x000000000001c720 DWHCITransferStageDataSetSplitComplete
0x000000000001c794 DWHCITransferStageDataSetState
0x000000000001c7e0 DWHCITransferStageDataGetState
0x000000000001c828 DWHCITransferStageDataSetSubState
0x000000000001c874 DWHCITransferStageDataGetSubState
0x000000000001c8bc DWHCITransferStageDataBeginSplitCycle
0x000000000001c8e0 DWHCITransferStageDataGetChannelNumber
0x000000000001c928 DWHCITransferStageDataIsPeriodic
0x000000000001c9cc DWHCITransferStageDataGetDeviceAddress
0x000000000001ca48 DWHCITransferStageDataGetEndpointType
0x000000000001cb2c DWHCITransferStageDataGetEndpointNumber
0x000000000001cba8 DWHCITransferStageDataGetMaxPacketSize
0x000000000001cbf0 DWHCITransferStageDataGetSpeed
0x000000000001cc38 DWHCITransferStageDataGetPID
0x000000000001cd24 DWHCITransferStageDataIsDirectionIn
0x000000000001cd6c DWHCITransferStageDataIsStatusStage
0x000000000001cdb4 DWHCITransferStageDataGetDMAAddress
0x000000000001ce24 DWHCITransferStageDataGetBytesToTransfer
0x000000000001ce6c DWHCITransferStageDataGetPacketsToTransfer
0x000000000001ceb4 DWHCITransferStageDataIsSplit
0x000000000001cefc DWHCITransferStageDataIsSplitComplete
0x000000000001cf6c DWHCITransferStageDataGetHubAddress
0x000000000001d010 DWHCITransferStageDataGetHubPortAddress
0x000000000001d0b4 DWHCITransferStageDataGetSplitPosition
0x000000000001d120 DWHCITransferStageDataGetStatusMask
0x000000000001d19c DWHCITransferStageDataGetTransactionStatus
0x000000000001d20c DWHCITransferStageDataIsStageComplete
0x000000000001d264 DWHCITransferStageDataGetResultLen
0x000000000001d2d0 DWHCITransferStageDataGetURB
0x000000000001d340 DWHCITransferStageDataGetFrameScheduler
.text 0x000000000001d388 0x5d8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
0x000000000001d388 USBConfigurationParser
0x000000000001d6bc _USBConfigurationParser
0x000000000001d704 USBConfigurationParserIsValid
0x000000000001d74c USBConfigurationParserGetDescriptor
0x000000000001d8b0 USBConfigurationParserError
.text 0x000000000001d960 0x155c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
0x000000000001d960 USBDevice
0x000000000001db24 USBDeviceCopy
0x000000000001de44 _USBDevice
0x000000000001df88 USBDeviceInitialize
0x000000000001e6bc USBDeviceConfigure
0x000000000001e7cc USBDeviceGetName
0x000000000001ea5c USBDeviceGetAddress
0x000000000001eaa4 USBDeviceGetSpeed
0x000000000001eaec USBDeviceGetHubAddress
0x000000000001eb34 USBDeviceGetHubPortNumber
0x000000000001eb7c USBDeviceGetEndpoint0
0x000000000001ebec USBDeviceGetHost
0x000000000001ec5c USBDeviceGetDeviceDescriptor
0x000000000001eccc USBDeviceGetConfigurationDescriptor
0x000000000001ed3c USBDeviceGetDescriptor
0x000000000001edc8 USBDeviceConfigurationError
0x000000000001ee44 USBDeviceSetAddress
.text 0x000000000001eebc 0x414 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
0x000000000001eebc USBDeviceFactoryGetDevice
0x000000000001efb0 GetDevice
.text 0x000000000001f2d0 0x930 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
0x000000000001f2d0 USBEndpoint
0x000000000001f38c USBEndpoint2
0x000000000001f614 USBEndpointCopy
0x000000000001f710 _USBEndpoint
0x000000000001f758 USBEndpointGetDevice
0x000000000001f7c8 USBEndpointGetNumber
0x000000000001f810 USBEndpointGetType
0x000000000001f858 USBEndpointIsDirectionIn
0x000000000001f8a0 USBEndpointSetMaxPacketSize
0x000000000001f8ec USBEndpointGetMaxPacketSize
0x000000000001f934 USBEndpointGetInterval
0x000000000001f9a4 USBEndpointGetNextPID
0x000000000001fa2c USBEndpointSkipPID
0x000000000001fb90 USBEndpointResetPID
.text 0x000000000001fc00 0x5c4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
0x000000000001fc00 USBRequest
0x000000000001fd14 _USBRequest
0x000000000001fd80 USBRequestGetEndpoint
0x000000000001fdf0 USBRequestSetStatus
0x000000000001fe3c USBRequestSetResultLen
0x000000000001fe88 USBRequestGetStatus
0x000000000001fed0 USBRequestGetResultLength
0x000000000001ff40 USBRequestGetSetupData
0x000000000001ffe4 USBRequestGetBuffer
0x0000000000020064 USBRequestGetBufLen
0x00000000000200ac USBRequestSetCompletionRoutine
0x0000000000020140 USBRequestCallCompletionRoutine
.text 0x00000000000201c4 0x13ec /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
0x00000000000201c4 USBStandardHub
0x0000000000020288 _USBStandardHub
0x00000000000203d4 USBStandardHubInitialize
0x0000000000020424 USBStandardHubConfigure
0x00000000000208f8 USBStandardHubEnumeratePorts
0x0000000000021444 USBStandardHubGetDeviceNames
.text 0x00000000000215b0 0x43c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
0x00000000000215b0 DeviceNameService
0x0000000000021634 _DeviceNameService
0x0000000000021720 DeviceNameServiceAddDevice
0x000000000002187c DeviceNameServiceGetDevice
0x00000000000219a4 DeviceNameServiceGet
.text 0x00000000000219ec 0x548 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
0x00000000000219ec MACAddress
0x0000000000021a34 MACAddress2
0x0000000000021a80 _MACAddress
0x0000000000021ac8 MACAddressIsEqual
0x0000000000021b6c MACAddressSet
0x0000000000021bf4 MACAddressSetBroadcast
0x0000000000021c54 MACAddressGet
0x0000000000021cc4 MACAddressCopyTo
0x0000000000021d68 MACAddressIsBroadcast
0x0000000000021e18 MACAddressGetSize
0x0000000000021e3c MACAddressFormat
.text 0x0000000000021f34 0xef0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
0x0000000000021f34 SMSC951xDevice
0x0000000000021ff8 _SMSC951xDevice
0x00000000000220e4 SMSC951xDeviceConfigure
0x000000000002264c SMSC951xDeviceGetMACAddress
0x0000000000022694 SMSC951xDeviceSendFrame
0x00000000000227e4 SMSC951xDeviceReceiveFrame
0x0000000000022a50 SMSC951xDeviceWriteReg
0x0000000000022afc SMSC951xDeviceReadReg
0x0000000000022bac SMSC951xDeviceDumpReg
0x0000000000022c58 SMSC951xDeviceDumpRegs
.text 0x0000000000022e24 0xfc8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
0x0000000000022e24 String
0x0000000000022e78 String2
0x0000000000022f04 _String
0x0000000000022f6c StringGet
0x0000000000022fd0 StringSet
0x0000000000023088 StringGetLength
0x00000000000230f4 StringAppend
0x000000000002320c StringCompare
0x0000000000023268 StringFind
0x0000000000023314 StringFormat
0x0000000000023374 StringFormatV
0x0000000000023a84 StringPutChar
0x0000000000023b0c StringPutString
0x0000000000023b90 StringReserveSpace
0x0000000000023ca8 ntoa
.text 0x0000000000023dec 0x564 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/util.o
0x0000000000023dec uspi_memset
0x0000000000023e50 uspi_memcpy2
0x0000000000023ec4 uspi_memcmp
0x0000000000023f70 uspi_strlen
0x0000000000023fc4 uspi_strcmp
0x00000000000240c8 uspi_strcpy
0x0000000000024138 uspi_strncpy
0x00000000000241d4 uspi_strcat
0x0000000000024264 uspi_char2int
0x00000000000242b0 uspi_le2be16
0x00000000000242fc uspi_le2be32
.text 0x0000000000024350 0x1368 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
0x0000000000024350 USBBulkOnlyMassStorageDevice
0x00000000000243f0 _USBBulkOnlyMassStorageDevice
0x00000000000244b0 USBBulkOnlyMassStorageDeviceConfigure
0x0000000000024bb4 USBBulkOnlyMassStorageDeviceRead
0x0000000000024c74 USBBulkOnlyMassStorageDeviceWrite
0x0000000000024d34 USBBulkOnlyMassStorageDeviceSeek
0x0000000000024d90 USBBulkOnlyMassStorageDeviceGetCapacity
0x0000000000024dd8 USBBulkOnlyMassStorageDeviceTryRead
0x0000000000024fa4 USBBulkOnlyMassStorageDeviceTryWrite
0x000000000002516c USBBulkOnlyMassStorageDeviceCommand
0x00000000000254d0 USBBulkOnlyMassStorageDeviceReset
.text 0x00000000000256b8 0x420 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
0x00000000000256b8 DWHCIFrameSchedulerNonPeriodic
0x0000000000025768 _DWHCIFrameSchedulerNonPeriodic
0x00000000000257b8 DWHCIFrameSchedulerNonPeriodicStartSplit
0x0000000000025808 DWHCIFrameSchedulerNonPeriodicCompleteSplit
0x00000000000258e0 DWHCIFrameSchedulerNonPeriodicTransactionComplete
0x0000000000025a98 DWHCIFrameSchedulerNonPeriodicWaitForFrame
0x0000000000025ab4 DWHCIFrameSchedulerNonPeriodicIsOddFrame
.text 0x0000000000025ad8 0x558 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
0x0000000000025ad8 DWHCIFrameSchedulerPeriodic
0x0000000000025b94 _DWHCIFrameSchedulerPeriodic
0x0000000000025be4 DWHCIFrameSchedulerPeriodicStartSplit
0x0000000000025c40 DWHCIFrameSchedulerPeriodicCompleteSplit
0x0000000000025d58 DWHCIFrameSchedulerPeriodicTransactionComplete
0x0000000000025eec DWHCIFrameSchedulerPeriodicWaitForFrame
0x0000000000025fcc DWHCIFrameSchedulerPeriodicIsOddFrame
.text 0x0000000000026030 0x698 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
0x0000000000026030 KeyMap
0x00000000000260a8 _KeyMap
0x00000000000260c4 KeyMapClearTable
0x000000000002616c KeyMapSetEntry
0x0000000000026234 KeyMapTranslate
0x0000000000026484 KeyMapGetString
0x0000000000026628 KeyMapGetLEDStatus
.text 0x00000000000266c8 0xd40 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
0x00000000000266c8 USBKeyboardDevice
0x00000000000267e4 _CUSBKeyboardDevice
0x00000000000268a4 USBKeyboardDeviceConfigure
0x0000000000026c9c USBKeyboardDeviceRegisterKeyPressedHandler
0x0000000000026d0c USBKeyboardDeviceRegisterSelectConsoleHandler
0x0000000000026d7c USBKeyboardDeviceRegisterShutdownHandler
0x0000000000026dec USBKeyboardDeviceRegisterKeyStatusHandlerRaw
.text 0x0000000000027408 0x49c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
0x0000000000027408 DWHCIRootPort
0x0000000000027488 _DWHCIRootPort
0x000000000002750c DWHCIRootPortInitialize
.text 0x00000000000278a4 0x8f0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
0x00000000000278a4 USBMouseDevice
0x0000000000027974 _CUSBMouseDevice
0x0000000000027a24 USBMouseDeviceConfigure
0x0000000000027e1c USBMouseDeviceRegisterStatusHandler
.text 0x0000000000028194 0x298 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
0x0000000000028194 DWHCIFrameSchedulerNoSplit
0x0000000000028254 _DWHCIFrameSchedulerNoSplit
0x0000000000028270 DWHCIFrameSchedulerNoSplitStartSplit
0x00000000000282a0 DWHCIFrameSchedulerNoSplitCompleteSplit
0x00000000000282d8 DWHCIFrameSchedulerNoSplitTransactionComplete
0x000000000002830c DWHCIFrameSchedulerNoSplitWaitForFrame
0x00000000000283c8 DWHCIFrameSchedulerNoSplitIsOddFrame
.text 0x000000000002842c 0x1788 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
0x000000000002842c USBGamePadDevice
0x000000000002860c _CUSBGamePadDevice
0x0000000000029084 USBGamePadDeviceConfigure
0x000000000002969c USBGamePadDeviceRegisterStatusHandler
0x00000000000299c8 USBGamePadDeviceGetReport
.text 0x0000000000029bb4 0x124 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
0x0000000000029bb4 uspi_EnterCritical
0x0000000000029c28 uspi_LeaveCritical
0x0000000000029ca8 uspi_CleanAndInvalidateDataCacheRange
.text 0x0000000000029cd8 0xc14 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
0x0000000000029cd8 USBString
0x0000000000029da8 USBStringCopy
0x0000000000029f40 _USBString
0x000000000002a008 USBStringGetFromDescriptor
0x000000000002a544 USBStringGet
0x000000000002a598 USBStringGetLanguageID
.text 0x000000000002a8ec 0xd54 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
0x000000000002a8ec eARPProcessPacket
0x000000000002ac94 vARPRefreshCacheEntry
0x000000000002b01c eARPGetCacheEntry
0x000000000002b274 vARPAgeCache
0x000000000002b464 vARPSendGratuitous
0x000000000002b488 FreeRTOS_OutputARPRequest
0x000000000002b4dc vARPGenerateRequestPacket
0x000000000002b620 FreeRTOS_ClearARP
.text 0x000000000002b640 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DHCP.o
.text 0x000000000002b640 0x8b8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
0x000000000002b68c FreeRTOS_gethostbyname
0x000000000002bafc ulDNSHandlePacket
.text 0x000000000002bef8 0x1f00 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
0x000000000002c108 xIsCallingFromIPTask
0x000000000002c4f0 FreeRTOS_NetworkDown
0x000000000002c54c FreeRTOS_NetworkDownFromISR
0x000000000002c5c8 FreeRTOS_GetUDPPayloadBuffer
0x000000000002c640 pxDuplicateNetworkBufferWithDescriptor
0x000000000002c6dc pxPacketBuffer_to_NetworkBuffer
0x000000000002c754 pxUDPPayloadBuffer_to_NetworkBuffer
0x000000000002c7cc FreeRTOS_ReleaseUDPPayloadBuffer
0x000000000002c7f8 FreeRTOS_IPInit
0x000000000002cac4 FreeRTOS_GetAddressConfiguration
0x000000000002cb6c FreeRTOS_SetAddressConfiguration
0x000000000002cc14 xSendEventToIPTask
0x000000000002cc60 xSendEventStructToIPTask
0x000000000002cdec eConsiderFrameForProcessing
0x000000000002cf20 vIPNetworkUpCalls
0x000000000002d61c usGenerateProtocolChecksum
0x000000000002d888 usGenerateChecksum
0x000000000002dbd0 vReturnEthernetFrame
0x000000000002dc7c FreeRTOS_GetIPAddress
0x000000000002dca0 FreeRTOS_SetIPAddress
0x000000000002dccc FreeRTOS_GetGatewayAddress
0x000000000002dcf0 FreeRTOS_GetDNSServerAddress
0x000000000002dd14 FreeRTOS_GetNetmask
0x000000000002dd38 FreeRTOS_GetMACAddress
0x000000000002dd58 FreeRTOS_SetNetmask
0x000000000002dd84 FreeRTOS_SetGatewayAddress
0x000000000002ddb0 xIPIsNetworkTaskReady
0x000000000002ddd4 FreeRTOS_IsNetworkUp
.text 0x000000000002ddf8 0x3554 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
0x000000000002e214 vNetworkSocketsInit
0x000000000002e398 FreeRTOS_socket
0x000000000002e584 FreeRTOS_recvfrom
0x000000000002e7ac FreeRTOS_sendto
0x000000000002e99c FreeRTOS_bind
0x000000000002eb00 vSocketBind
0x000000000002ecc0 FreeRTOS_closesocket
0x000000000002ed54 vSocketClose
0x000000000002ef74 FreeRTOS_setsockopt
0x000000000002f664 pxUDPSocketLookup
0x000000000002f6bc FreeRTOS_inet_addr
0x000000000002f888 FreeRTOS_GetLocalAddress
0x000000000002f904 vWakeUpSocketUser
0x000000000002fb84 FreeRTOS_connect
0x000000000002fca4 FreeRTOS_accept
0x000000000002ff64 FreeRTOS_recv
0x000000000003032c FreeRTOS_get_tx_head
0x00000000000303e4 FreeRTOS_send
0x000000000003068c FreeRTOS_listen
0x00000000000307ec FreeRTOS_shutdown
0x0000000000030888 xTCPTimerCheck
0x0000000000030a30 pxTCPSocketLookup
0x0000000000030b34 FreeRTOS_get_rx_buf
0x0000000000030ce4 lTCPAddRxdata
0x0000000000030e00 FreeRTOS_outstanding
0x0000000000030e78 FreeRTOS_recvcount
0x0000000000030ef0 FreeRTOS_GetRemoteAddress
0x0000000000030fc8 FreeRTOS_maywrite
0x000000000003108c FreeRTOS_tx_space
0x0000000000031108 FreeRTOS_tx_size
0x0000000000031180 FreeRTOS_issocketconnected
0x00000000000311f8 FreeRTOS_mss
0x000000000003124c FreeRTOS_connstatus
0x00000000000312a0 FreeRTOS_rx_size
0x0000000000031318 FreeRTOS_netstat
.text 0x000000000003134c 0x5ec /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Stream_Buffer.o
0x00000000000315ac uxStreamBufferAdd
0x0000000000031784 uxStreamBufferGet
.text 0x0000000000031938 0x47a4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
0x0000000000031d50 xTCPSocketCheck
0x0000000000033298 vTCPStateChange
0x000000000003554c xProcessReceivedTCPPacket
0x0000000000035fd8 xTCPCheckNewClient
.text 0x00000000000360dc 0x1dc4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_WIN.o
0x00000000000362d0 vListInsertGeneric
0x000000000003664c xTCPWindowRxEmpty
0x000000000003682c vTCPWindowDestroy
0x00000000000368cc vTCPWindowCreate
0x00000000000369a4 vTCPWindowInit
0x0000000000036c48 lTCPWindowRxCheck
0x0000000000037054 lTCPWindowTxAdd
0x000000000003735c xTCPWindowTxDone
0x00000000000374a0 xTCPWindowTxHasData
0x0000000000037604 ulTCPWindowTxGet
0x0000000000037d90 ulTCPWindowTxAck
0x0000000000037df8 ulTCPWindowTxSack
.text 0x0000000000037ea0 0x628 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_UDP_IP.o
0x0000000000037ea0 vProcessGeneratedUDPPacket
0x0000000000038318 xProcessReceivedUDPPacket
.text 0x00000000000384c8 0x458 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
0x00000000000384c8 xNetworkBuffersInitialise
0x0000000000038634 pucGetNetworkBuffer
0x00000000000386a0 vReleaseNetworkBuffer
0x00000000000386d8 pxGetNetworkBufferWithDescriptor
0x000000000003882c vReleaseNetworkBufferAndDescriptor
0x00000000000388d8 uxGetNumberOfFreeNetworkBuffers
0x00000000000388fc uxGetMinimumFreeNetworkBuffers
.text 0x0000000000038920 0x3a0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
0x0000000000038920 ethernetPollTask
0x0000000000038bc0 xNetworkInterfaceInitialise
0x0000000000038c68 xNetworkInterfaceOutput
.text 0x0000000000038cc0 0x114 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o)
0x0000000000038cc0 __udivsi3
0x0000000000038cc0 __aeabi_uidiv
0x0000000000038db4 __aeabi_uidivmod
.text 0x0000000000038dd4 0x4 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_dvmd_tls.o)
0x0000000000038dd4 __aeabi_ldiv0
0x0000000000038dd4 __aeabi_idiv0
.text 0x0000000000038dd8 0x0 /usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
.rodata 0x0000000000038dd8 0x3405
.rodata 0x0000000000038dd8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.rodata 0x0000000000038ddc 0x5 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
*fill* 0x0000000000038de1 0x3
.rodata 0x0000000000038de4 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
.rodata 0x0000000000038de8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
0x0000000000038de8 pRegs
.rodata 0x0000000000038dec 0x8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
.rodata 0x0000000000038df4 0x1c0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
.rodata 0x0000000000038fb4 0x25a /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
0x0000000000038fb4 font
*fill* 0x000000000003920e 0x2
.rodata 0x0000000000039210 0x3d /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
*fill* 0x000000000003924d 0x3
.rodata 0x0000000000039250 0x17b /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
*fill* 0x00000000000393cb 0x1
.rodata 0x00000000000393cc 0x622 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
*fill* 0x00000000000399ee 0x2
.rodata 0x00000000000399f0 0xe5 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
*fill* 0x0000000000039ad5 0x3
.rodata 0x0000000000039ad8 0x225 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
*fill* 0x0000000000039cfd 0x3
.rodata 0x0000000000039d00 0xff /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
*fill* 0x0000000000039dff 0x1
.rodata 0x0000000000039e00 0x349 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
*fill* 0x000000000003a149 0x3
.rodata 0x000000000003a14c 0x104 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
.rodata 0x000000000003a250 0x1de /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
*fill* 0x000000000003a42e 0x2
.rodata 0x000000000003a430 0x149 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
*fill* 0x000000000003a579 0x3
.rodata 0x000000000003a57c 0x3d3 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
*fill* 0x000000000003a94f 0x1
.rodata 0x000000000003a950 0xfd /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
*fill* 0x000000000003aa4d 0x3
.rodata 0x000000000003aa50 0xce /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
*fill* 0x000000000003ab1e 0x2
.rodata 0x000000000003ab20 0x2d2 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
*fill* 0x000000000003adf2 0x2
.rodata 0x000000000003adf4 0x6d /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
*fill* 0x000000000003ae61 0x3
.rodata 0x000000000003ae64 0x308 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
.rodata 0x000000000003b16c 0xbc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
.rodata 0x000000000003b228 0xbc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
.rodata 0x000000000003b2e4 0x2c9 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
*fill* 0x000000000003b5ad 0x3
.rodata 0x000000000003b5b0 0x1ee /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
*fill* 0x000000000003b79e 0x2
.rodata 0x000000000003b7a0 0x14f /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
*fill* 0x000000000003b8ef 0x1
.rodata 0x000000000003b8f0 0x18a /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
*fill* 0x000000000003ba7a 0x2
.rodata 0x000000000003ba7c 0x7a /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
*fill* 0x000000000003baf6 0x2
.rodata 0x000000000003baf8 0x1ae /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
*fill* 0x000000000003bca6 0x2
.rodata 0x000000000003bca8 0x7a /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
*fill* 0x000000000003bd22 0x2
.rodata 0x000000000003bd24 0x1a1 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
*fill* 0x000000000003bec5 0x3
.rodata 0x000000000003bec8 0x26 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
*fill* 0x000000000003beee 0x2
.rodata 0x000000000003bef0 0xc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
.rodata 0x000000000003befc 0xbc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
0x000000000003befc xBroadcastMACAddress
.rodata 0x000000000003bfb8 0xe7 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
*fill* 0x000000000003c09f 0x1
.rodata 0x000000000003c0a0 0xd8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
.rodata 0x000000000003c178 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
0x000000000003c178 xBufferAllocFixedSize
.rodata 0x000000000003c17c 0x61 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
.glue_7 0x000000000003c1e0 0x0
.glue_7 0x000000000003c1e0 0x0 linker stubs
.glue_7t 0x000000000003c1e0 0x0
.glue_7t 0x000000000003c1e0 0x0 linker stubs
.vfp11_veneer 0x000000000003c1e0 0x0
.vfp11_veneer 0x000000000003c1e0 0x0 linker stubs
.v4_bx 0x000000000003c1e0 0x0
.v4_bx 0x000000000003c1e0 0x0 linker stubs
.iplt 0x000000000003c1e0 0x0
.iplt 0x000000000003c1e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.text.memcpy 0x000000000003c1e0 0xf0
.text.memcpy 0x000000000003c1e0 0xf0 /usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
0x000000000003c1e0 memcpy
.rel.dyn 0x000000000003c2d0 0x0
.rel.iplt 0x000000000003c2d0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.data 0x000000000003c2d0 0x14c
*(.data)
.data 0x000000000003c2d0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.data 0x000000000003c2d0 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
0x000000000003c2d0 ulCriticalNesting
.data 0x000000000003c2d4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
.data 0x000000000003c2d4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
.data 0x000000000003c2d4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
.data 0x000000000003c2d4 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
.data 0x000000000003c2d8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/event_groups.o
.data 0x000000000003c2d8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
.data 0x000000000003c2d8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
.data 0x000000000003c2d8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
.data 0x000000000003c2dc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/startup.o
.data 0x000000000003c2dc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
.data 0x000000000003c2dc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mailbox.o
.data 0x000000000003c2dc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/trace.o
.data 0x000000000003c2dc 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mem.o
0x000000000003c2dc next
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
.data 0x000000000003c2e0 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
.data 0x000000000003c2e0 0x1 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
.data 0x000000000003c2e1 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/util.o
*fill* 0x000000000003c2e1 0x3
.data 0x000000000003c2e4 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
.data 0x000000000003c2e8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
.data 0x000000000003c2e8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
.data 0x000000000003c2e8 0xcc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
.data 0x000000000003c3b4 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
.data 0x000000000003c3b8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
.data 0x000000000003c3b8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
.data 0x000000000003c3bc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
.data 0x000000000003c3bc 0x39 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DHCP.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
.data 0x000000000003c3f5 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
*fill* 0x000000000003c3f5 0x3
.data 0x000000000003c3f8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
.data 0x000000000003c3fc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Stream_Buffer.o
.data 0x000000000003c3fc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
.data 0x000000000003c3fc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_WIN.o
.data 0x000000000003c3fc 0x18 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_UDP_IP.o
0x000000000003c3fc xDefaultPartUDPPacketHeader
.data 0x000000000003c414 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
.data 0x000000000003c414 0x8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
.data 0x000000000003c41c 0x0 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o)
.data 0x000000000003c41c 0x0 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_dvmd_tls.o)
.data 0x000000000003c41c 0x0 /usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
.igot.plt 0x000000000003c41c 0x0
.igot.plt 0x000000000003c41c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.bss 0x000000000003c420 0x1ec30
0x000000000003c420 __bss_start = .
*(.bss)
.bss 0x000000000003c420 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.bss 0x000000000003c420 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
0x000000000003c420 g_bStarted
.bss 0x000000000003c424 0x80 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
0x000000000003c490 pxCurrentCoRoutine
.bss 0x000000000003c4a4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
.bss 0x000000000003c4a4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
.bss 0x000000000003c4a4 0x100 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
0x000000000003c4a4 pxCurrentTCB
.bss 0x000000000003c5a4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/event_groups.o
.bss 0x000000000003c5a4 0x240 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
.bss 0x000000000003c7e4 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
*fill* 0x000000000003c7e4 0x4
.bss 0x000000000003c7e8 0x1e010 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
0x000000000005a7f4 allocated
.bss 0x000000000005a7f8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/startup.o
.bss 0x000000000005a7f8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
.bss 0x000000000005a7f8 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mailbox.o
.bss 0x000000000005a7f8 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/trace.o
0x000000000005a7f8 depth
.bss 0x000000000005a7fc 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mem.o
.bss 0x000000000005a7fc 0xc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
0x000000000005a7fc loaded
0x000000000005a800 position_x
0x000000000005a804 position_y
.bss 0x000000000005a808 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
.bss 0x000000000005a808 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
.bss 0x000000000005a80c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
.bss 0x000000000005a80c 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
.bss 0x000000000005a810 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
.bss 0x000000000005a810 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/util.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
.bss 0x000000000005a814 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
.bss 0x000000000005a814 0x8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
.bss 0x000000000005a81c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
.bss 0x000000000005a81c 0x7c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
.bss 0x000000000005a898 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DHCP.o
.bss 0x000000000005a898 0xc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
.bss 0x000000000005a8a4 0x74 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
0x000000000005a8a4 xNetworkEventQueue
0x000000000005a8a8 uxRxEventCount
0x000000000005a8ac usPacketIdentifier
0x000000000005a8b0 xNetworkAddressing
0x000000000005a8c4 xDefaultAddressing
.bss 0x000000000005a918 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
.bss 0x000000000005a91c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Stream_Buffer.o
.bss 0x000000000005a91c 0x4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
0x000000000005a91c ulNextInitialSequenceNumber
.bss 0x000000000005a920 0x1c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_WIN.o
0x000000000005a938 xTCPWindowLoggingLevel
.bss 0x000000000005a93c 0x0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_UDP_IP.o
.bss 0x000000000005a93c 0x670 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
.bss 0x000000000005afac 0x8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
0x000000000005afac xOutputQueue
.bss 0x000000000005afb4 0x0 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o)
.bss 0x000000000005afb4 0x0 /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_dvmd_tls.o)
.bss 0x000000000005afb4 0x0 /usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
*(.bss.*)
0x000000000005afb4 __bss_end = .
COMMON 0x000000000005afb4 0x1 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
0x000000000005afb4 s_bWereEnabled
*fill* 0x000000000005afb5 0xb
COMMON 0x000000000005afc0 0x68 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
0x000000000005afc0 SCREEN_WIDTH
0x000000000005afc4 SCREEN_HEIGHT
0x000000000005afc8 framebuffer
0x000000000005afd0 mailbuffer
COMMON 0x000000000005b028 0x28 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
0x000000000005b028 xBoundUdpSocketsList
0x000000000005b03c xBoundTcpSocketsList
0x0000000008010000 _estack = (ORIGIN (RAM) + LENGTH (RAM))
LOAD /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a
LOAD /usr/lib/arm-none-eabi/lib/libc.a
OUTPUT(kernel.elf elf32-littlearm)
.debug_info 0x0000000000000000 0x1ebe3
.debug_info 0x0000000000000000 0x1f5 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.debug_info 0x00000000000001f5 0x1c4 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
.debug_info 0x00000000000003b9 0x456 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
.debug_info 0x000000000000080f 0x274 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
.debug_info 0x0000000000000a83 0x7da /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
.debug_info 0x000000000000125d 0xe95 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o
.debug_info 0x00000000000020f2 0x670 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/event_groups.o
.debug_info 0x0000000000002762 0x31d /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/interrupts.o
.debug_info 0x0000000000002a7f 0x3f3 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/gpio.o
.debug_info 0x0000000000002e72 0x2cb /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/MemMang/heap_4.o
.debug_info 0x000000000000313d 0xcb6 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/main.o
.debug_info 0x0000000000003df3 0xa8 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mailbox.o
.debug_info 0x0000000000003e9b 0x15b /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Demo/trace.o
.debug_info 0x0000000000003ff6 0x2d9 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/mem.o
.debug_info 0x00000000000042cf 0x3cc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/video.o
.debug_info 0x000000000000469b 0x3f7 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/uspibind.o
.debug_info 0x0000000000004a92 0x1588 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/uspilibrary.o
.debug_info 0x000000000000601a 0x1787 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcidevice.o
.debug_info 0x00000000000077a1 0x35b /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciregister.o
.debug_info 0x0000000000007afc 0xfc7 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcixferstagedata.o
.debug_info 0x0000000000008ac3 0x44b /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbconfigparser.o
.debug_info 0x0000000000008f0e 0xe17 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevice.o
.debug_info 0x0000000000009d25 0x10d0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbdevicefactory.o
.debug_info 0x000000000000adf5 0x8de /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbendpoint.o
.debug_info 0x000000000000b6d3 0x965 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbrequest.o
.debug_info 0x000000000000c038 0xe4a /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstandardhub.o
.debug_info 0x000000000000ce82 0x231 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/devicenameservice.o
.debug_info 0x000000000000d0b3 0x332 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/macaddress.o
.debug_info 0x000000000000d3e5 0xdc7 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/smsc951x.o
.debug_info 0x000000000000e1ac 0x579 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/string.o
.debug_info 0x000000000000e725 0x377 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/util.o
.debug_info 0x000000000000ea9c 0x143f /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmassdevice.o
.debug_info 0x000000000000fedb 0x2f6 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednper.o
.debug_info 0x00000000000101d1 0x368 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschedper.o
.debug_info 0x0000000000010539 0x524 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/keymap.o
.debug_info 0x0000000000010a5d 0x109d /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbkeyboard.o
.debug_info 0x0000000000011afa 0xa4d /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhcirootport.o
.debug_info 0x0000000000012547 0xbd0 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbmouse.o
.debug_info 0x0000000000013117 0x2f1 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/dwhciframeschednsplit.o
.debug_info 0x0000000000013408 0x10ca /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbgamepad.o
.debug_info 0x00000000000144d2 0x108 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/synchronize.o
.debug_info 0x00000000000145da 0xb89 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/lan9514/lib/usbstring.o
.debug_info 0x0000000000015163 0x724 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_ARP.o
.debug_info 0x0000000000015887 0x7f /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DHCP.o
.debug_info 0x0000000000015906 0x5b3 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_DNS.o
.debug_info 0x0000000000015eb9 0x1d19 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_IP.o
.debug_info 0x0000000000017bd2 0x222e /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Sockets.o
.debug_info 0x0000000000019e00 0x3c3 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_Stream_Buffer.o
.debug_info 0x000000000001a1c3 0x2175 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_IP.o
.debug_info 0x000000000001c338 0x11b3 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_TCP_WIN.o
.debug_info 0x000000000001d4eb 0xc64 /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/FreeRTOS_UDP_IP.o
.debug_info 0x000000000001e14f 0x3cb /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/BufferManagement/BufferAllocation_2.o
.debug_info 0x000000000001e51a 0x43c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/Drivers/FreeRTOS-Plus-TCP/portable/NetworkInterface.o
.debug_info 0x000000000001e956 0xae /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_udivsi3.o)
.debug_info 0x000000000001ea04 0xae /usr/lib/gcc/arm-none-eabi/4.9.3/libgcc.a(_dvmd_tls.o)
.debug_info 0x000000000001eab2 0x131 /usr/lib/arm-none-eabi/lib/libc.a(lib_a-memcpy.o)
.debug_abbrev 0x0000000000000000 0x4dba
.debug_abbrev 0x0000000000000000 0x11f /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/port.o
.debug_abbrev 0x000000000000011f 0xce /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/portable/GCC/RaspberryPi/portisr.o
.debug_abbrev 0x00000000000001ed 0x17e /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/croutine.o
.debug_abbrev 0x000000000000036b 0xbc /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/list.o
.debug_abbrev 0x0000000000000427 0x15c /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/queue.o
.debug_abbrev 0x0000000000000583 0x1da /home/tony/src/github/RaspberryPi-FreeRTOS/RaspberryPi-FreeRTOS/build/FreeRTOS/Source/tasks.o