chmemcore.lst
37.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 1
1 .syntax unified
2 .cpu cortex-m3
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 2
11 .eabi_attribute 34, 1
12 .eabi_attribute 18, 4
13 .thumb
14 .file "chmemcore.c"
15 .text
16 .Ltext0:
17 .cfi_sections .debug_frame
18 .section .text._core_init,"ax",%progbits
19 .align 2
20 .p2align 4,,15
21 .global _core_init
22 .thumb
23 .thumb_func
24 .type _core_init, %function
25 _core_init:
26 .LFB7:
27 .file 1 "../..//os/kernel/src/chmemcore.c"
28 .loc 1 66 0
29 .cfi_startproc
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 @ link register save eliminated.
33 .loc 1 71 0
34 0000 40F20001 movw r1, #:lower16:__heap_end__
35 .loc 1 70 0
36 0004 0848 ldr r0, .L2
37 0006 40F20002 movw r2, #:lower16:.LANCHOR0
38 .loc 1 71 0
39 000a 40F20003 movw r3, #:lower16:.LANCHOR1
40 000e C0F20001 movt r1, #:upper16:__heap_end__
41 .loc 1 70 0
42 0012 C0F20002 movt r2, #:upper16:.LANCHOR0
43 0016 20F00700 bic r0, r0, #7
44 .loc 1 71 0
45 001a C0F20003 movt r3, #:upper16:.LANCHOR1
46 001e 21F00701 bic r1, r1, #7
47 .loc 1 70 0
48 0022 1060 str r0, [r2, #0]
49 .loc 1 71 0
50 0024 1960 str r1, [r3, #0]
51 0026 7047 bx lr
52 .L3:
53 .align 2
54 .L2:
55 0028 07000000 .word __heap_base__+7
56 .cfi_endproc
57 .LFE7:
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 2
58 .size _core_init, .-_core_init
59 002c AFF30080 .section .text.chCoreAlloc,"ax",%progbits
60 .align 2
61 .p2align 4,,15
62 .global chCoreAlloc
63 .thumb
64 .thumb_func
65 .type chCoreAlloc, %function
66 chCoreAlloc:
67 .LFB8:
68 .loc 1 91 0
69 .cfi_startproc
70 @ args = 0, pretend = 0, frame = 0
71 @ frame_needed = 0, uses_anonymous_args = 0
72 @ link register save eliminated.
73 .LVL0:
74 .loc 1 94 0
75 @ 94 "../..//os/kernel/src/chmemcore.c" 1
76 0000 72B6 cpsid i
77 @ 0 "" 2
78 .LVL1:
79 .thumb
80 .LBB4:
81 .LBB5:
82 .loc 1 118 0
83 0002 084A ldr r2, .L7
84 0004 0849 ldr r1, .L7+4
85 0006 1368 ldr r3, [r2, #0]
86 0008 0968 ldr r1, [r1, #0]
87 .loc 1 117 0
88 000a 0730 adds r0, r0, #7
89 .LVL2:
90 000c 20F00700 bic r0, r0, #7
91 .LVL3:
92 .loc 1 118 0
93 0010 C91A subs r1, r1, r3
94 0012 8842 cmp r0, r1
95 .LVL4:
96 .loc 1 121 0
97 0014 9ABF itte ls
98 0016 1818 addls r0, r3, r0
99 .LVL5:
100 0018 1060 strls r0, [r2, #0]
101 .loc 1 119 0
102 001a 0023 movhi r3, #0
103 .LVL6:
104 .LBE5:
105 .LBE4:
106 .loc 1 96 0
107 @ 96 "../..//os/kernel/src/chmemcore.c" 1
108 001c 62B6 cpsie i
109 @ 0 "" 2
110 .loc 1 98 0
111 .thumb
112 001e 1846 mov r0, r3
113 0020 7047 bx lr
114 .L8:
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 3
115 0022 00BF .align 2
116 .L7:
117 0024 00000000 .word .LANCHOR0
118 0028 00000000 .word .LANCHOR1
119 .cfi_endproc
120 .LFE8:
121 .size chCoreAlloc, .-chCoreAlloc
122 002c AFF30080 .section .text.chCoreAllocI,"ax",%progbits
123 .align 2
124 .p2align 4,,15
125 .global chCoreAllocI
126 .thumb
127 .thumb_func
128 .type chCoreAllocI, %function
129 chCoreAllocI:
130 .LFB9:
131 .loc 1 112 0
132 .cfi_startproc
133 @ args = 0, pretend = 0, frame = 0
134 @ frame_needed = 0, uses_anonymous_args = 0
135 @ link register save eliminated.
136 .LVL7:
137 .loc 1 118 0
138 0000 074A ldr r2, .L12
139 0002 0849 ldr r1, .L12+4
140 0004 1368 ldr r3, [r2, #0]
141 0006 0968 ldr r1, [r1, #0]
142 .loc 1 117 0
143 0008 0730 adds r0, r0, #7
144 .LVL8:
145 000a 20F00700 bic r0, r0, #7
146 .LVL9:
147 .loc 1 118 0
148 000e C91A subs r1, r1, r3
149 0010 8842 cmp r0, r1
150 .LVL10:
151 .loc 1 121 0
152 0012 9ABF itte ls
153 0014 1818 addls r0, r3, r0
154 .LVL11:
155 0016 1060 strls r0, [r2, #0]
156 .loc 1 119 0
157 0018 0023 movhi r3, #0
158 .LVL12:
159 .loc 1 123 0
160 001a 1846 mov r0, r3
161 001c 7047 bx lr
162 .L13:
163 001e 00BF .align 2
164 .L12:
165 0020 00000000 .word .LANCHOR0
166 0024 00000000 .word .LANCHOR1
167 .cfi_endproc
168 .LFE9:
169 .size chCoreAllocI, .-chCoreAllocI
170 0028 AFF30080 .section .text.chCoreStatus,"ax",%progbits
170 AFF30080
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 4
171 .align 2
172 .p2align 4,,15
173 .global chCoreStatus
174 .thumb
175 .thumb_func
176 .type chCoreStatus, %function
177 chCoreStatus:
178 .LFB10:
179 .loc 1 132 0
180 .cfi_startproc
181 @ args = 0, pretend = 0, frame = 0
182 @ frame_needed = 0, uses_anonymous_args = 0
183 @ link register save eliminated.
184 .loc 1 134 0
185 0000 40F20002 movw r2, #:lower16:.LANCHOR1
186 0004 40F20003 movw r3, #:lower16:.LANCHOR0
187 0008 C0F20002 movt r2, #:upper16:.LANCHOR1
188 000c C0F20003 movt r3, #:upper16:.LANCHOR0
189 0010 1068 ldr r0, [r2, #0]
190 0012 1B68 ldr r3, [r3, #0]
191 .loc 1 135 0
192 0014 C01A subs r0, r0, r3
193 0016 7047 bx lr
194 .cfi_endproc
195 .LFE10:
196 .size chCoreStatus, .-chCoreStatus
197 0018 AFF30080 .section .bss.endmem,"aw",%nobits
197 AFF30080
198 .align 2
199 .set .LANCHOR1,. + 0
200 .type endmem, %object
201 .size endmem, 4
202 endmem:
203 0000 00000000 .space 4
204 .section .bss.nextmem,"aw",%nobits
205 .align 2
206 .set .LANCHOR0,. + 0
207 .type nextmem, %object
208 .size nextmem, 4
209 nextmem:
210 0000 00000000 .space 4
211 .text
212 .Letext0:
213 .file 2 "c:\\yagarto\\bin\\../lib/gcc/arm-none-eabi/4.7.2/include/stddef.h"
214 .file 3 "c:/yagarto/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
215 .section .debug_info,"",%progbits
216 .Ldebug_info0:
217 0000 DF010000 .4byte 0x1df
218 0004 0200 .2byte 0x2
219 0006 00000000 .4byte .Ldebug_abbrev0
220 000a 04 .byte 0x4
221 000b 01 .uleb128 0x1
222 000c B2000000 .4byte .LASF17
223 0010 01 .byte 0x1
224 0011 E7000000 .4byte .LASF18
225 0015 3D000000 .4byte .LASF19
226 0019 00000000 .4byte .Ldebug_ranges0+0
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 5
227 001d 00000000 .4byte 0
228 0021 00000000 .4byte 0
229 0025 00000000 .4byte .Ldebug_line0
230 0029 02 .uleb128 0x2
231 002a 04 .byte 0x4
232 002b 05 .byte 0x5
233 002c 696E7400 .ascii "int\000"
234 0030 03 .uleb128 0x3
235 0031 21000000 .4byte .LASF2
236 0035 02 .byte 0x2
237 0036 D5 .byte 0xd5
238 0037 3B000000 .4byte 0x3b
239 003b 04 .uleb128 0x4
240 003c 04 .byte 0x4
241 003d 07 .byte 0x7
242 003e 72010000 .4byte .LASF0
243 0042 04 .uleb128 0x4
244 0043 01 .byte 0x1
245 0044 06 .byte 0x6
246 0045 4C010000 .4byte .LASF1
247 0049 03 .uleb128 0x3
248 004a 08010000 .4byte .LASF3
249 004e 03 .byte 0x3
250 004f 2A .byte 0x2a
251 0050 54000000 .4byte 0x54
252 0054 04 .uleb128 0x4
253 0055 01 .byte 0x1
254 0056 08 .byte 0x8
255 0057 10010000 .4byte .LASF4
256 005b 04 .uleb128 0x4
257 005c 02 .byte 0x2
258 005d 05 .byte 0x5
259 005e 68010000 .4byte .LASF5
260 0062 04 .uleb128 0x4
261 0063 02 .byte 0x2
262 0064 07 .byte 0x7
263 0065 0E000000 .4byte .LASF6
264 0069 04 .uleb128 0x4
265 006a 04 .byte 0x4
266 006b 05 .byte 0x5
267 006c 2F010000 .4byte .LASF7
268 0070 04 .uleb128 0x4
269 0071 04 .byte 0x4
270 0072 07 .byte 0x7
271 0073 BE000000 .4byte .LASF8
272 0077 04 .uleb128 0x4
273 0078 08 .byte 0x8
274 0079 05 .byte 0x5
275 007a 00000000 .4byte .LASF9
276 007e 04 .uleb128 0x4
277 007f 08 .byte 0x8
278 0080 07 .byte 0x7
279 0081 D0000000 .4byte .LASF10
280 0085 05 .uleb128 0x5
281 0086 04 .byte 0x4
282 0087 04 .uleb128 0x4
283 0088 04 .byte 0x4
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 6
284 0089 07 .byte 0x7
285 008a 7F010000 .4byte .LASF11
286 008e 04 .uleb128 0x4
287 008f 01 .byte 0x1
288 0090 08 .byte 0x8
289 0091 1E010000 .4byte .LASF12
290 0095 06 .uleb128 0x6
291 0096 04 .byte 0x4
292 0097 49000000 .4byte 0x49
293 009b 07 .uleb128 0x7
294 009c 01 .byte 0x1
295 009d 3F010000 .4byte .LASF20
296 00a1 01 .byte 0x1
297 00a2 70 .byte 0x70
298 00a3 01 .byte 0x1
299 00a4 85000000 .4byte 0x85
300 00a8 01 .byte 0x1
301 00a9 C2000000 .4byte 0xc2
302 00ad 08 .uleb128 0x8
303 00ae 58010000 .4byte .LASF21
304 00b2 01 .byte 0x1
305 00b3 70 .byte 0x70
306 00b4 30000000 .4byte 0x30
307 00b8 09 .uleb128 0x9
308 00b9 7000 .ascii "p\000"
309 00bb 01 .byte 0x1
310 00bc 71 .byte 0x71
311 00bd 85000000 .4byte 0x85
312 00c1 00 .byte 0
313 00c2 0A .uleb128 0xa
314 00c3 01 .byte 0x1
315 00c4 5D010000 .4byte .LASF22
316 00c8 01 .byte 0x1
317 00c9 42 .byte 0x42
318 00ca 01 .byte 0x1
319 00cb 00000000 .4byte .LFB7
320 00cf 2C000000 .4byte .LFE7
321 00d3 02 .byte 0x2
322 00d4 7D .byte 0x7d
323 00d5 00 .sleb128 0
324 00d6 01 .byte 0x1
325 00d7 F6000000 .4byte 0xf6
326 00db 0B .uleb128 0xb
327 00dc A4000000 .4byte .LASF13
328 00e0 01 .byte 0x1
329 00e1 44 .byte 0x44
330 00e2 F6000000 .4byte 0xf6
331 00e6 01 .byte 0x1
332 00e7 01 .byte 0x1
333 00e8 0B .uleb128 0xb
334 00e9 30000000 .4byte .LASF14
335 00ed 01 .byte 0x1
336 00ee 45 .byte 0x45
337 00ef F6000000 .4byte 0xf6
338 00f3 01 .byte 0x1
339 00f4 01 .byte 0x1
340 00f5 00 .byte 0
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 7
341 00f6 0C .uleb128 0xc
342 00f7 49000000 .4byte 0x49
343 00fb 01010000 .4byte 0x101
344 00ff 0D .uleb128 0xd
345 0100 00 .byte 0
346 0101 0E .uleb128 0xe
347 0102 01 .byte 0x1
348 0103 23010000 .4byte .LASF23
349 0107 01 .byte 0x1
350 0108 5B .byte 0x5b
351 0109 01 .byte 0x1
352 010a 85000000 .4byte 0x85
353 010e 00000000 .4byte .LFB8
354 0112 2C000000 .4byte .LFE8
355 0116 02 .byte 0x2
356 0117 7D .byte 0x7d
357 0118 00 .sleb128 0
358 0119 01 .byte 0x1
359 011a 65010000 .4byte 0x165
360 011e 0F .uleb128 0xf
361 011f 58010000 .4byte .LASF21
362 0123 01 .byte 0x1
363 0124 5B .byte 0x5b
364 0125 30000000 .4byte 0x30
365 0129 00000000 .4byte .LLST0
366 012d 10 .uleb128 0x10
367 012e 7000 .ascii "p\000"
368 0130 01 .byte 0x1
369 0131 5C .byte 0x5c
370 0132 85000000 .4byte 0x85
371 0136 01 .byte 0x1
372 0137 53 .byte 0x53
373 0138 11 .uleb128 0x11
374 0139 9B000000 .4byte 0x9b
375 013d 02000000 .4byte .LBB4
376 0141 1C000000 .4byte .LBE4
377 0145 01 .byte 0x1
378 0146 5F .byte 0x5f
379 0147 12 .uleb128 0x12
380 0148 AD000000 .4byte 0xad
381 014c 2E000000 .4byte .LLST1
382 0150 13 .uleb128 0x13
383 0151 02000000 .4byte .LBB5
384 0155 1C000000 .4byte .LBE5
385 0159 14 .uleb128 0x14
386 015a B8000000 .4byte 0xb8
387 015e 6C000000 .4byte .LLST2
388 0162 00 .byte 0
389 0163 00 .byte 0
390 0164 00 .byte 0
391 0165 15 .uleb128 0x15
392 0166 9B000000 .4byte 0x9b
393 016a 00000000 .4byte .LFB9
394 016e 28000000 .4byte .LFE9
395 0172 02 .byte 0x2
396 0173 7D .byte 0x7d
397 0174 00 .sleb128 0
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 8
398 0175 01 .byte 0x1
399 0176 8D010000 .4byte 0x18d
400 017a 12 .uleb128 0x12
401 017b AD000000 .4byte 0xad
402 017f 8E000000 .4byte .LLST3
403 0183 14 .uleb128 0x14
404 0184 B8000000 .4byte 0xb8
405 0188 CC000000 .4byte .LLST4
406 018c 00 .byte 0
407 018d 16 .uleb128 0x16
408 018e 01 .byte 0x1
409 018f 88010000 .4byte .LASF24
410 0193 01 .byte 0x1
411 0194 84 .byte 0x84
412 0195 01 .byte 0x1
413 0196 30000000 .4byte 0x30
414 019a 00000000 .4byte .LFB10
415 019e 18000000 .4byte .LFE10
416 01a2 02 .byte 0x2
417 01a3 7D .byte 0x7d
418 01a4 00 .sleb128 0
419 01a5 01 .byte 0x1
420 01a6 17 .uleb128 0x17
421 01a7 28000000 .4byte .LASF15
422 01ab 01 .byte 0x1
423 01ac 3A .byte 0x3a
424 01ad 95000000 .4byte 0x95
425 01b1 05 .byte 0x5
426 01b2 03 .byte 0x3
427 01b3 00000000 .4byte nextmem
428 01b7 17 .uleb128 0x17
429 01b8 38010000 .4byte .LASF16
430 01bc 01 .byte 0x1
431 01bd 3B .byte 0x3b
432 01be 95000000 .4byte 0x95
433 01c2 05 .byte 0x5
434 01c3 03 .byte 0x3
435 01c4 00000000 .4byte endmem
436 01c8 0B .uleb128 0xb
437 01c9 A4000000 .4byte .LASF13
438 01cd 01 .byte 0x1
439 01ce 44 .byte 0x44
440 01cf F6000000 .4byte 0xf6
441 01d3 01 .byte 0x1
442 01d4 01 .byte 0x1
443 01d5 0B .uleb128 0xb
444 01d6 30000000 .4byte .LASF14
445 01da 01 .byte 0x1
446 01db 45 .byte 0x45
447 01dc F6000000 .4byte 0xf6
448 01e0 01 .byte 0x1
449 01e1 01 .byte 0x1
450 01e2 00 .byte 0
451 .section .debug_abbrev,"",%progbits
452 .Ldebug_abbrev0:
453 0000 01 .uleb128 0x1
454 0001 11 .uleb128 0x11
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 9
455 0002 01 .byte 0x1
456 0003 25 .uleb128 0x25
457 0004 0E .uleb128 0xe
458 0005 13 .uleb128 0x13
459 0006 0B .uleb128 0xb
460 0007 03 .uleb128 0x3
461 0008 0E .uleb128 0xe
462 0009 1B .uleb128 0x1b
463 000a 0E .uleb128 0xe
464 000b 55 .uleb128 0x55
465 000c 06 .uleb128 0x6
466 000d 11 .uleb128 0x11
467 000e 01 .uleb128 0x1
468 000f 52 .uleb128 0x52
469 0010 01 .uleb128 0x1
470 0011 10 .uleb128 0x10
471 0012 06 .uleb128 0x6
472 0013 00 .byte 0
473 0014 00 .byte 0
474 0015 02 .uleb128 0x2
475 0016 24 .uleb128 0x24
476 0017 00 .byte 0
477 0018 0B .uleb128 0xb
478 0019 0B .uleb128 0xb
479 001a 3E .uleb128 0x3e
480 001b 0B .uleb128 0xb
481 001c 03 .uleb128 0x3
482 001d 08 .uleb128 0x8
483 001e 00 .byte 0
484 001f 00 .byte 0
485 0020 03 .uleb128 0x3
486 0021 16 .uleb128 0x16
487 0022 00 .byte 0
488 0023 03 .uleb128 0x3
489 0024 0E .uleb128 0xe
490 0025 3A .uleb128 0x3a
491 0026 0B .uleb128 0xb
492 0027 3B .uleb128 0x3b
493 0028 0B .uleb128 0xb
494 0029 49 .uleb128 0x49
495 002a 13 .uleb128 0x13
496 002b 00 .byte 0
497 002c 00 .byte 0
498 002d 04 .uleb128 0x4
499 002e 24 .uleb128 0x24
500 002f 00 .byte 0
501 0030 0B .uleb128 0xb
502 0031 0B .uleb128 0xb
503 0032 3E .uleb128 0x3e
504 0033 0B .uleb128 0xb
505 0034 03 .uleb128 0x3
506 0035 0E .uleb128 0xe
507 0036 00 .byte 0
508 0037 00 .byte 0
509 0038 05 .uleb128 0x5
510 0039 0F .uleb128 0xf
511 003a 00 .byte 0
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 10
512 003b 0B .uleb128 0xb
513 003c 0B .uleb128 0xb
514 003d 00 .byte 0
515 003e 00 .byte 0
516 003f 06 .uleb128 0x6
517 0040 0F .uleb128 0xf
518 0041 00 .byte 0
519 0042 0B .uleb128 0xb
520 0043 0B .uleb128 0xb
521 0044 49 .uleb128 0x49
522 0045 13 .uleb128 0x13
523 0046 00 .byte 0
524 0047 00 .byte 0
525 0048 07 .uleb128 0x7
526 0049 2E .uleb128 0x2e
527 004a 01 .byte 0x1
528 004b 3F .uleb128 0x3f
529 004c 0C .uleb128 0xc
530 004d 03 .uleb128 0x3
531 004e 0E .uleb128 0xe
532 004f 3A .uleb128 0x3a
533 0050 0B .uleb128 0xb
534 0051 3B .uleb128 0x3b
535 0052 0B .uleb128 0xb
536 0053 27 .uleb128 0x27
537 0054 0C .uleb128 0xc
538 0055 49 .uleb128 0x49
539 0056 13 .uleb128 0x13
540 0057 20 .uleb128 0x20
541 0058 0B .uleb128 0xb
542 0059 01 .uleb128 0x1
543 005a 13 .uleb128 0x13
544 005b 00 .byte 0
545 005c 00 .byte 0
546 005d 08 .uleb128 0x8
547 005e 05 .uleb128 0x5
548 005f 00 .byte 0
549 0060 03 .uleb128 0x3
550 0061 0E .uleb128 0xe
551 0062 3A .uleb128 0x3a
552 0063 0B .uleb128 0xb
553 0064 3B .uleb128 0x3b
554 0065 0B .uleb128 0xb
555 0066 49 .uleb128 0x49
556 0067 13 .uleb128 0x13
557 0068 00 .byte 0
558 0069 00 .byte 0
559 006a 09 .uleb128 0x9
560 006b 34 .uleb128 0x34
561 006c 00 .byte 0
562 006d 03 .uleb128 0x3
563 006e 08 .uleb128 0x8
564 006f 3A .uleb128 0x3a
565 0070 0B .uleb128 0xb
566 0071 3B .uleb128 0x3b
567 0072 0B .uleb128 0xb
568 0073 49 .uleb128 0x49
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 11
569 0074 13 .uleb128 0x13
570 0075 00 .byte 0
571 0076 00 .byte 0
572 0077 0A .uleb128 0xa
573 0078 2E .uleb128 0x2e
574 0079 01 .byte 0x1
575 007a 3F .uleb128 0x3f
576 007b 0C .uleb128 0xc
577 007c 03 .uleb128 0x3
578 007d 0E .uleb128 0xe
579 007e 3A .uleb128 0x3a
580 007f 0B .uleb128 0xb
581 0080 3B .uleb128 0x3b
582 0081 0B .uleb128 0xb
583 0082 27 .uleb128 0x27
584 0083 0C .uleb128 0xc
585 0084 11 .uleb128 0x11
586 0085 01 .uleb128 0x1
587 0086 12 .uleb128 0x12
588 0087 01 .uleb128 0x1
589 0088 40 .uleb128 0x40
590 0089 0A .uleb128 0xa
591 008a 9742 .uleb128 0x2117
592 008c 0C .uleb128 0xc
593 008d 01 .uleb128 0x1
594 008e 13 .uleb128 0x13
595 008f 00 .byte 0
596 0090 00 .byte 0
597 0091 0B .uleb128 0xb
598 0092 34 .uleb128 0x34
599 0093 00 .byte 0
600 0094 03 .uleb128 0x3
601 0095 0E .uleb128 0xe
602 0096 3A .uleb128 0x3a
603 0097 0B .uleb128 0xb
604 0098 3B .uleb128 0x3b
605 0099 0B .uleb128 0xb
606 009a 49 .uleb128 0x49
607 009b 13 .uleb128 0x13
608 009c 3F .uleb128 0x3f
609 009d 0C .uleb128 0xc
610 009e 3C .uleb128 0x3c
611 009f 0C .uleb128 0xc
612 00a0 00 .byte 0
613 00a1 00 .byte 0
614 00a2 0C .uleb128 0xc
615 00a3 01 .uleb128 0x1
616 00a4 01 .byte 0x1
617 00a5 49 .uleb128 0x49
618 00a6 13 .uleb128 0x13
619 00a7 01 .uleb128 0x1
620 00a8 13 .uleb128 0x13
621 00a9 00 .byte 0
622 00aa 00 .byte 0
623 00ab 0D .uleb128 0xd
624 00ac 21 .uleb128 0x21
625 00ad 00 .byte 0
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 12
626 00ae 00 .byte 0
627 00af 00 .byte 0
628 00b0 0E .uleb128 0xe
629 00b1 2E .uleb128 0x2e
630 00b2 01 .byte 0x1
631 00b3 3F .uleb128 0x3f
632 00b4 0C .uleb128 0xc
633 00b5 03 .uleb128 0x3
634 00b6 0E .uleb128 0xe
635 00b7 3A .uleb128 0x3a
636 00b8 0B .uleb128 0xb
637 00b9 3B .uleb128 0x3b
638 00ba 0B .uleb128 0xb
639 00bb 27 .uleb128 0x27
640 00bc 0C .uleb128 0xc
641 00bd 49 .uleb128 0x49
642 00be 13 .uleb128 0x13
643 00bf 11 .uleb128 0x11
644 00c0 01 .uleb128 0x1
645 00c1 12 .uleb128 0x12
646 00c2 01 .uleb128 0x1
647 00c3 40 .uleb128 0x40
648 00c4 0A .uleb128 0xa
649 00c5 9742 .uleb128 0x2117
650 00c7 0C .uleb128 0xc
651 00c8 01 .uleb128 0x1
652 00c9 13 .uleb128 0x13
653 00ca 00 .byte 0
654 00cb 00 .byte 0
655 00cc 0F .uleb128 0xf
656 00cd 05 .uleb128 0x5
657 00ce 00 .byte 0
658 00cf 03 .uleb128 0x3
659 00d0 0E .uleb128 0xe
660 00d1 3A .uleb128 0x3a
661 00d2 0B .uleb128 0xb
662 00d3 3B .uleb128 0x3b
663 00d4 0B .uleb128 0xb
664 00d5 49 .uleb128 0x49
665 00d6 13 .uleb128 0x13
666 00d7 02 .uleb128 0x2
667 00d8 06 .uleb128 0x6
668 00d9 00 .byte 0
669 00da 00 .byte 0
670 00db 10 .uleb128 0x10
671 00dc 34 .uleb128 0x34
672 00dd 00 .byte 0
673 00de 03 .uleb128 0x3
674 00df 08 .uleb128 0x8
675 00e0 3A .uleb128 0x3a
676 00e1 0B .uleb128 0xb
677 00e2 3B .uleb128 0x3b
678 00e3 0B .uleb128 0xb
679 00e4 49 .uleb128 0x49
680 00e5 13 .uleb128 0x13
681 00e6 02 .uleb128 0x2
682 00e7 0A .uleb128 0xa
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 13
683 00e8 00 .byte 0
684 00e9 00 .byte 0
685 00ea 11 .uleb128 0x11
686 00eb 1D .uleb128 0x1d
687 00ec 01 .byte 0x1
688 00ed 31 .uleb128 0x31
689 00ee 13 .uleb128 0x13
690 00ef 11 .uleb128 0x11
691 00f0 01 .uleb128 0x1
692 00f1 12 .uleb128 0x12
693 00f2 01 .uleb128 0x1
694 00f3 58 .uleb128 0x58
695 00f4 0B .uleb128 0xb
696 00f5 59 .uleb128 0x59
697 00f6 0B .uleb128 0xb
698 00f7 00 .byte 0
699 00f8 00 .byte 0
700 00f9 12 .uleb128 0x12
701 00fa 05 .uleb128 0x5
702 00fb 00 .byte 0
703 00fc 31 .uleb128 0x31
704 00fd 13 .uleb128 0x13
705 00fe 02 .uleb128 0x2
706 00ff 06 .uleb128 0x6
707 0100 00 .byte 0
708 0101 00 .byte 0
709 0102 13 .uleb128 0x13
710 0103 0B .uleb128 0xb
711 0104 01 .byte 0x1
712 0105 11 .uleb128 0x11
713 0106 01 .uleb128 0x1
714 0107 12 .uleb128 0x12
715 0108 01 .uleb128 0x1
716 0109 00 .byte 0
717 010a 00 .byte 0
718 010b 14 .uleb128 0x14
719 010c 34 .uleb128 0x34
720 010d 00 .byte 0
721 010e 31 .uleb128 0x31
722 010f 13 .uleb128 0x13
723 0110 02 .uleb128 0x2
724 0111 06 .uleb128 0x6
725 0112 00 .byte 0
726 0113 00 .byte 0
727 0114 15 .uleb128 0x15
728 0115 2E .uleb128 0x2e
729 0116 01 .byte 0x1
730 0117 31 .uleb128 0x31
731 0118 13 .uleb128 0x13
732 0119 11 .uleb128 0x11
733 011a 01 .uleb128 0x1
734 011b 12 .uleb128 0x12
735 011c 01 .uleb128 0x1
736 011d 40 .uleb128 0x40
737 011e 0A .uleb128 0xa
738 011f 9742 .uleb128 0x2117
739 0121 0C .uleb128 0xc
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 14
740 0122 01 .uleb128 0x1
741 0123 13 .uleb128 0x13
742 0124 00 .byte 0
743 0125 00 .byte 0
744 0126 16 .uleb128 0x16
745 0127 2E .uleb128 0x2e
746 0128 00 .byte 0
747 0129 3F .uleb128 0x3f
748 012a 0C .uleb128 0xc
749 012b 03 .uleb128 0x3
750 012c 0E .uleb128 0xe
751 012d 3A .uleb128 0x3a
752 012e 0B .uleb128 0xb
753 012f 3B .uleb128 0x3b
754 0130 0B .uleb128 0xb
755 0131 27 .uleb128 0x27
756 0132 0C .uleb128 0xc
757 0133 49 .uleb128 0x49
758 0134 13 .uleb128 0x13
759 0135 11 .uleb128 0x11
760 0136 01 .uleb128 0x1
761 0137 12 .uleb128 0x12
762 0138 01 .uleb128 0x1
763 0139 40 .uleb128 0x40
764 013a 0A .uleb128 0xa
765 013b 9742 .uleb128 0x2117
766 013d 0C .uleb128 0xc
767 013e 00 .byte 0
768 013f 00 .byte 0
769 0140 17 .uleb128 0x17
770 0141 34 .uleb128 0x34
771 0142 00 .byte 0
772 0143 03 .uleb128 0x3
773 0144 0E .uleb128 0xe
774 0145 3A .uleb128 0x3a
775 0146 0B .uleb128 0xb
776 0147 3B .uleb128 0x3b
777 0148 0B .uleb128 0xb
778 0149 49 .uleb128 0x49
779 014a 13 .uleb128 0x13
780 014b 02 .uleb128 0x2
781 014c 0A .uleb128 0xa
782 014d 00 .byte 0
783 014e 00 .byte 0
784 014f 00 .byte 0
785 .section .debug_loc,"",%progbits
786 .Ldebug_loc0:
787 .LLST0:
788 0000 00000000 .4byte .LVL0
789 0004 0C000000 .4byte .LVL2
790 0008 0100 .2byte 0x1
791 000a 50 .byte 0x50
792 000b 0C000000 .4byte .LVL2
793 000f 10000000 .4byte .LVL3
794 0013 0300 .2byte 0x3
795 0015 70 .byte 0x70
796 0016 79 .sleb128 -7
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 15
797 0017 9F .byte 0x9f
798 0018 10000000 .4byte .LVL3
799 001c 2C000000 .4byte .LFE8
800 0020 0400 .2byte 0x4
801 0022 F3 .byte 0xf3
802 0023 01 .uleb128 0x1
803 0024 50 .byte 0x50
804 0025 9F .byte 0x9f
805 0026 00000000 .4byte 0
806 002a 00000000 .4byte 0
807 .LLST1:
808 002e 02000000 .4byte .LVL1
809 0032 0C000000 .4byte .LVL2
810 0036 0100 .2byte 0x1
811 0038 50 .byte 0x50
812 0039 0C000000 .4byte .LVL2
813 003d 10000000 .4byte .LVL3
814 0041 0300 .2byte 0x3
815 0043 70 .byte 0x70
816 0044 79 .sleb128 -7
817 0045 9F .byte 0x9f
818 0046 10000000 .4byte .LVL3
819 004a 18000000 .4byte .LVL5
820 004e 0100 .2byte 0x1
821 0050 50 .byte 0x50
822 0051 18000000 .4byte .LVL5
823 0055 2C000000 .4byte .LFE8
824 0059 0900 .2byte 0x9
825 005b F3 .byte 0xf3
826 005c 01 .uleb128 0x1
827 005d 50 .byte 0x50
828 005e 23 .byte 0x23
829 005f 07 .uleb128 0x7
830 0060 09 .byte 0x9
831 0061 F8 .byte 0xf8
832 0062 1A .byte 0x1a
833 0063 9F .byte 0x9f
834 0064 00000000 .4byte 0
835 0068 00000000 .4byte 0
836 .LLST2:
837 006c 14000000 .4byte .LVL4
838 0070 1C000000 .4byte .LVL6
839 0074 0100 .2byte 0x1
840 0076 53 .byte 0x53
841 0077 1C000000 .4byte .LVL6
842 007b 2C000000 .4byte .LFE8
843 007f 0500 .2byte 0x5
844 0081 03 .byte 0x3
845 0082 00000000 .4byte nextmem
846 0086 00000000 .4byte 0
847 008a 00000000 .4byte 0
848 .LLST3:
849 008e 00000000 .4byte .LVL7
850 0092 0A000000 .4byte .LVL8
851 0096 0100 .2byte 0x1
852 0098 50 .byte 0x50
853 0099 0A000000 .4byte .LVL8
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 16
854 009d 0E000000 .4byte .LVL9
855 00a1 0300 .2byte 0x3
856 00a3 70 .byte 0x70
857 00a4 79 .sleb128 -7
858 00a5 9F .byte 0x9f
859 00a6 0E000000 .4byte .LVL9
860 00aa 16000000 .4byte .LVL11
861 00ae 0100 .2byte 0x1
862 00b0 50 .byte 0x50
863 00b1 16000000 .4byte .LVL11
864 00b5 28000000 .4byte .LFE9
865 00b9 0900 .2byte 0x9
866 00bb F3 .byte 0xf3
867 00bc 01 .uleb128 0x1
868 00bd 50 .byte 0x50
869 00be 23 .byte 0x23
870 00bf 07 .uleb128 0x7
871 00c0 09 .byte 0x9
872 00c1 F8 .byte 0xf8
873 00c2 1A .byte 0x1a
874 00c3 9F .byte 0x9f
875 00c4 00000000 .4byte 0
876 00c8 00000000 .4byte 0
877 .LLST4:
878 00cc 12000000 .4byte .LVL10
879 00d0 1A000000 .4byte .LVL12
880 00d4 0100 .2byte 0x1
881 00d6 53 .byte 0x53
882 00d7 1A000000 .4byte .LVL12
883 00db 28000000 .4byte .LFE9
884 00df 0500 .2byte 0x5
885 00e1 03 .byte 0x3
886 00e2 00000000 .4byte nextmem
887 00e6 00000000 .4byte 0
888 00ea 00000000 .4byte 0
889 .section .debug_aranges,"",%progbits
890 0000 34000000 .4byte 0x34
891 0004 0200 .2byte 0x2
892 0006 00000000 .4byte .Ldebug_info0
893 000a 04 .byte 0x4
894 000b 00 .byte 0
895 000c 0000 .2byte 0
896 000e 0000 .2byte 0
897 0010 00000000 .4byte .LFB7
898 0014 2C000000 .4byte .LFE7-.LFB7
899 0018 00000000 .4byte .LFB8
900 001c 2C000000 .4byte .LFE8-.LFB8
901 0020 00000000 .4byte .LFB9
902 0024 28000000 .4byte .LFE9-.LFB9
903 0028 00000000 .4byte .LFB10
904 002c 18000000 .4byte .LFE10-.LFB10
905 0030 00000000 .4byte 0
906 0034 00000000 .4byte 0
907 .section .debug_ranges,"",%progbits
908 .Ldebug_ranges0:
909 0000 00000000 .4byte .LFB7
910 0004 2C000000 .4byte .LFE7
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 17
911 0008 00000000 .4byte .LFB8
912 000c 2C000000 .4byte .LFE8
913 0010 00000000 .4byte .LFB9
914 0014 28000000 .4byte .LFE9
915 0018 00000000 .4byte .LFB10
916 001c 18000000 .4byte .LFE10
917 0020 00000000 .4byte 0
918 0024 00000000 .4byte 0
919 .section .debug_line,"",%progbits
920 .Ldebug_line0:
921 0000 19010000 .section .debug_str,"MS",%progbits,1
921 0200B800
921 00000201
921 FB0E0D00
921 01010101
922 .LASF9:
923 0000 6C6F6E67 .ascii "long long int\000"
923 206C6F6E
923 6720696E
923 7400
924 .LASF6:
925 000e 73686F72 .ascii "short unsigned int\000"
925 7420756E
925 7369676E
925 65642069
925 6E7400
926 .LASF2:
927 0021 73697A65 .ascii "size_t\000"
927 5F7400
928 .LASF15:
929 0028 6E657874 .ascii "nextmem\000"
929 6D656D00
930 .LASF14:
931 0030 5F5F6865 .ascii "__heap_end__\000"
931 61705F65
931 6E645F5F
931 00
932 .LASF19:
933 003d 433A5C44 .ascii "C:\\Documents and Settings\\Imanol.DEVEL\\My Docume"
933 6F63756D
933 656E7473
933 20616E64
933 20536574
934 006d 6E74735C .ascii "nts\\devel\\smartcities\\Project\\applications\\sma"
934 64657665
934 6C5C736D
934 61727463
934 69746965
935 009b 72746369 .ascii "rtcities\000"
935 74696573
935 00
936 .LASF13:
937 00a4 5F5F6865 .ascii "__heap_base__\000"
937 61705F62
937 6173655F
937 5F00
938 .LASF17:
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 18
939 00b2 474E5520 .ascii "GNU C 4.7.2\000"
939 4320342E
939 372E3200
940 .LASF8:
941 00be 6C6F6E67 .ascii "long unsigned int\000"
941 20756E73
941 69676E65
941 6420696E
941 7400
942 .LASF10:
943 00d0 6C6F6E67 .ascii "long long unsigned int\000"
943 206C6F6E
943 6720756E
943 7369676E
943 65642069
944 .LASF18:
945 00e7 2E2E2F2E .ascii "../..//os/kernel/src/chmemcore.c\000"
945 2E2F2F6F
945 732F6B65
945 726E656C
945 2F737263
946 .LASF3:
947 0108 75696E74 .ascii "uint8_t\000"
947 385F7400
948 .LASF4:
949 0110 756E7369 .ascii "unsigned char\000"
949 676E6564
949 20636861
949 7200
950 .LASF12:
951 011e 63686172 .ascii "char\000"
951 00
952 .LASF23:
953 0123 6368436F .ascii "chCoreAlloc\000"
953 7265416C
953 6C6F6300
954 .LASF7:
955 012f 6C6F6E67 .ascii "long int\000"
955 20696E74
955 00
956 .LASF16:
957 0138 656E646D .ascii "endmem\000"
957 656D00
958 .LASF20:
959 013f 6368436F .ascii "chCoreAllocI\000"
959 7265416C
959 6C6F6349
959 00
960 .LASF1:
961 014c 7369676E .ascii "signed char\000"
961 65642063
961 68617200
962 .LASF21:
963 0158 73697A65 .ascii "size\000"
963 00
964 .LASF22:
965 015d 5F636F72 .ascii "_core_init\000"
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 19
965 655F696E
965 697400
966 .LASF5:
967 0168 73686F72 .ascii "short int\000"
967 7420696E
967 7400
968 .LASF0:
969 0172 756E7369 .ascii "unsigned int\000"
969 676E6564
969 20696E74
969 00
970 .LASF11:
971 017f 73697A65 .ascii "sizetype\000"
971 74797065
971 00
972 .LASF24:
973 0188 6368436F .ascii "chCoreStatus\000"
973 72655374
973 61747573
973 00
974 .ident "GCC: (GNU) 4.7.2"
ARM GAS C:\cygwin\tmp\cc8FprZH.s page 20
DEFINED SYMBOLS
*ABS*:00000000 chmemcore.c
C:\cygwin\tmp\cc8FprZH.s:19 .text._core_init:00000000 $t
C:\cygwin\tmp\cc8FprZH.s:25 .text._core_init:00000000 _core_init
C:\cygwin\tmp\cc8FprZH.s:206 .bss.nextmem:00000000 .LANCHOR0
C:\cygwin\tmp\cc8FprZH.s:199 .bss.endmem:00000000 .LANCHOR1
C:\cygwin\tmp\cc8FprZH.s:55 .text._core_init:00000028 $d
C:\cygwin\tmp\cc8FprZH.s:60 .text.chCoreAlloc:00000000 $t
C:\cygwin\tmp\cc8FprZH.s:66 .text.chCoreAlloc:00000000 chCoreAlloc
C:\cygwin\tmp\cc8FprZH.s:117 .text.chCoreAlloc:00000024 $d
C:\cygwin\tmp\cc8FprZH.s:123 .text.chCoreAllocI:00000000 $t
C:\cygwin\tmp\cc8FprZH.s:129 .text.chCoreAllocI:00000000 chCoreAllocI
C:\cygwin\tmp\cc8FprZH.s:165 .text.chCoreAllocI:00000020 $d
C:\cygwin\tmp\cc8FprZH.s:171 .text.chCoreStatus:00000000 $t
C:\cygwin\tmp\cc8FprZH.s:177 .text.chCoreStatus:00000000 chCoreStatus
C:\cygwin\tmp\cc8FprZH.s:198 .bss.endmem:00000000 $d
C:\cygwin\tmp\cc8FprZH.s:202 .bss.endmem:00000000 endmem
C:\cygwin\tmp\cc8FprZH.s:205 .bss.nextmem:00000000 $d
C:\cygwin\tmp\cc8FprZH.s:209 .bss.nextmem:00000000 nextmem
.debug_frame:00000010 $d
C:\cygwin\tmp\cc8FprZH.s:59 .text._core_init:0000002c $t
C:\cygwin\tmp\cc8FprZH.s:122 .text.chCoreAlloc:0000002c $t
C:\cygwin\tmp\cc8FprZH.s:170 .text.chCoreAllocI:00000028 $t
UNDEFINED SYMBOLS
__heap_end__
__heap_base__