system.log
66.5 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
Module system is in DEBUG mode
Compiling hal\system\cirq\src\ADIE_Eint.c ...
"hal\system\cirq\src\ADIE_Eint.c", line 273: Warning: #177-D: variable "count" was declared but never referenced
kal_uint16 count;
^
"hal\system\cirq\src\ADIE_Eint.c", line 822: Warning: #177-D: variable "RTC_Count1" was declared but never referenced
kal_uint32 RTC_Count1, RTC_Count2;
^
"hal\system\cirq\src\ADIE_Eint.c", line 822: Warning: #177-D: variable "RTC_Count2" was declared but never referenced
kal_uint32 RTC_Count1, RTC_Count2;
^
hal\system\cirq\src\ADIE_Eint.c: 3 warnings, 0 errors
Compiling hal\system\cirq\src\ADIE_intrCtrl.c ...
"hal\system\cirq\src\ADIE_intrCtrl.c", line 338: Warning: #177-D: variable "activated_mask" was declared but never referenced
kal_uint32 irqx, activated_mask, i;
^
"hal\system\cirq\src\ADIE_intrCtrl.c", line 338: Warning: #177-D: variable "i" was declared but never referenced
kal_uint32 irqx, activated_mask, i;
^
"hal\system\cirq\src\ADIE_intrCtrl.c", line 146: Warning: #550-D: variable "ADIE_processing_lisr" was set but never used
static void *ADIE_processing_lisr = NULL;
^
hal\system\cirq\src\ADIE_intrCtrl.c: 3 warnings, 0 errors
Compiling hal\system\cirq\src\Eint.c ...
"hal\system\cirq\src\Eint.c", line 664: Warning: #513-D: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(kal_uint8)"
EINT_FUNC[eintno].eint_func = reg_hisr;
^
"hal\system\cirq\src\Eint.c", line 747: Warning: #513-D: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(kal_uint8)"
EINT_FUNC[eintno].eint_func = reg_hisr;
^
"hal\system\cirq\src\Eint.c", line 1535: Warning: #177-D: variable "count" was declared but never referenced
kal_uint16 count;
^
"hal\system\cirq\src\Eint.c", line 2425: Warning: #177-D: variable "RTC_Count1" was declared but never referenced
kal_uint32 RTC_Count1, RTC_Count2;
^
"hal\system\cirq\src\Eint.c", line 2425: Warning: #177-D: variable "RTC_Count2" was declared but never referenced
kal_uint32 RTC_Count1, RTC_Count2;
^
hal\system\cirq\src\Eint.c: 5 warnings, 0 errors
Compiling hal\system\FTL\src\FTL.c ...
"hal\system\FTL\src\FTL.c", line 512: Warning: #177-D: variable "status" was declared but never referenced
kal_int32 status;
^
"hal\system\FTL\src\FTL.c", line 540: Warning: #177-D: variable "status" was declared but never referenced
kal_int32 status;
^
hal\system\FTL\src\FTL.c: 2 warnings, 0 errors
Compiling hal\system\funet\src\FUNET.c ...
Compiling hal\system\pmu\src\arm11_pmu_montr.c ...
Compiling hal\system\init\src\arm_unaligned.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
"hal\system\init\src\arm_unaligned.s", line 470: Warning: A1488W: PROC/FUNC at line 179 in 'hal\system\init\src\arm_unaligned.s' without matching ENDP/ENDFUNC
470 000001a0 END
0 Errors, 21 Warnings
Compiling hal\system\init\src\armlibc_rt.c ...
Compiling hal\system\init\src\armlibc_rt_heap.c ...
Compiling hal\system\init\src\armlibc_rt_io.c ...
Compiling hal\system\init\src\boot_cert_pattern.c ...
Pre-compiling hal\system\init\src\bootarm.s ...
Compiling hal\system\init\src\bootarm.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 20 Warnings
Compiling hal\system\GFH\public\br_GFH_file_info.c ...
Compiling hal\system\GFH\public\br_GFH_parser.c ...
Compiling hal\system\cache\src\cache.c ...
"hal\system\cache\src\cache.c", line 2625: Warning: #177-D: variable "size" was declared but never referenced
kal_uint32 size;
^
"hal\system\cache\src\cache.c", line 3323: Warning: #177-D: variable "j" was declared but never referenced
kal_uint32 i = 0, j=0;
^
"hal\system\cache\src\cache.c", line 3324: Warning: #177-D: variable "lock_counter" was declared but never referenced
kal_uint32 lock_counter=0;
^
"hal\system\cache\src\cache.c", line 3325: Warning: #177-D: variable "irq_mask" was declared but never referenced
kal_uint32 irq_mask;
^
hal\system\cache\src\cache.c: 4 warnings, 0 errors
Compiling hal\system\CBR\src\cbr.c ...
Compiling hal\system\CBR\src\cbr_util.c ...
"hal\system\CBR\src\cbr_util.c", line 204: Warning: #223-D: function "kal_tmp_mem_alloc" declared implicitly
stackBuffer = (kal_uint32*)kal_tmp_mem_alloc(CBR_WORKING_STACK_SIZE);
^
"hal\system\CBR\src\cbr_util.c", line 206: Warning: #167-D: argument of type "kal_int32 (*)(kal_uint32, kal_uint32)" is incompatible with parameter of type "kal_func_ptr"
status = INT_SwitchStackToRun(stackBuffer, CBR_WORKING_STACK_SIZE, CBR_Init, 2, E_CBR_IDX_CBR, cbrStartBlock);
^
"hal\system\CBR\src\cbr_util.c", line 208: Warning: #223-D: function "kal_tmp_mem_free" declared implicitly
kal_tmp_mem_free(stackBuffer);
^
"hal\system\CBR\src\cbr_util.c", line 180: Warning: #177-D: variable "mainRegionStart" was declared but never referenced
kal_uint32 mainRegionStart;
^
hal\system\CBR\src\cbr_util.c: 4 warnings, 0 errors
Compiling hal\system\compression\src\code_decompression_hal.c ...
"hal\system\compression\src\code_decompression_hal.c", line 406: Warning: #170-D: pointer points outside of underlying object
kal_uint32 workingSize = ((kal_uint32)(&Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$Length) - (CPU_CACHE_LINE_SIZE_MASK + 1));
^
"hal\system\compression\src\code_decompression_hal.c", line 407: Warning: #170-D: pointer points outside of underlying object
kal_uint32 mmimemAddr = (((kal_uint32)(&Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$Base) + CPU_CACHE_LINE_SIZE_MASK) & ~CPU_CACHE_LINE_SIZE_MASK);
^
hal\system\compression\src\code_decompression_hal.c: 2 warnings, 0 errors
Compiling hal\system\cache\src\cp15.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 20 Warnings
Compiling hal\system\dcm\src\dcm.c ...
"hal\system\dcm\src\dcm.c", line 464: Warning: #177-D: variable "_savedMask" was declared but never referenced
kal_uint32 _savedMask;
^
"hal\system\dcm\src\dcm.c", line 555: Warning: #550-D: variable "duration" was set but never used
register kal_uint32 start, end, duration;
^
hal\system\dcm\src\dcm.c: 2 warnings, 0 errors
Compiling hal\system\dcm\src\dcm_service.c ...
"hal\system\dcm\src\dcm_service.c", line 9: Warning: #177-D: variable "dropVoltageCount" was declared but never referenced
static kal_uint32 dropVoltageCount = 0;
^
hal\system\dcm\src\dcm_service.c: 1 warning, 0 errors
Compiling hal\system\dcmgr\src\dcmgr_pl.c ...
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
"hal\system\dcmgr\src\dcmgr_pl.c", line 1570: Warning: #68-D: integer conversion resulted in a change of sign
DYNAMIC_CODE_COMPRESS_ID_MAPPING_TBL_CONFIGURE
^
hal\system\dcmgr\src\dcmgr_pl.c: 47 warnings, 0 errors
Compiling hal\system\dma\src\dma.c ...
Compiling hal\system\emi\src\emi.c ...
Compiling hal\system\timer\src\event_timer.c ...
Compiling hal\system\excep_hdlr\src\excep_hdlr.c ...
Compiling hal\system\DP\src\fault.c ...
Compiling hal\system\init\src\idle_task.c ...
Compiling hal\system\init\src\info.c ...
Compiling hal\system\init\src\init.c ...
"hal\system\init\src\init.c", line 2714: Warning: #223-D: function "MPU_protect_One_Region" declared implicitly
MPU_protect_One_Region(Zimage_Section,PRIV_RO_USER_RO);
^
hal\system\init\src\init.c: 1 warning, 0 errors
Compiling hal\system\init\src\init_comm.c ...
Compiling hal\system\region\src\init_memory_stack.c ...
Compiling hal\system\init\src\init_trc.c ...
Compiling hal\system\cirq\src\intrCtrl.c ...
Compiling hal\system\cirq\src\irq.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 20 Warnings
Compiling hal\system\cirq\src\isrentry.c ...
"hal\system\cirq\src\isrentry.c", line 703: Warning: #550-D: variable "FIQErrInfo" was set but never used
static IntErrType FIQErrInfo;
^
hal\system\cirq\src\isrentry.c: 1 warning, 0 errors
Compiling hal\system\GFH\public\maui_GFH_body.c ...
Compiling hal\system\init\src\misc.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 20 Warnings
Compiling hal\system\init\src\nfb_loader.c ...
Compiling hal\system\pdn\src\pdn.c ...
Compiling hal\system\pdn\src\pdnoldarch.c ...
Compiling hal\system\pll\src\pll.c ...
Compiling hal\system\region\src\regioninit_ads.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
"hal\system\region\src\regioninit_ads.s", line 734: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000004 IMPORT |Load$$EMIINIT_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 734: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000004 IMPORT |Image$$EMIINIT_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 734: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000004 IMPORT |Image$$EMIINIT_CODE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 734: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000004 IMPORT |Image$$EMIINIT_CODE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 734: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000004 IMPORT |Image$$EMIINIT_CODE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 737: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000030 IMPORT |Load$$INTSRAM_DATA_PREINIT$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 737: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000030 IMPORT |Image$$INTSRAM_DATA_PREINIT$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 737: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000030 IMPORT |Image$$INTSRAM_DATA_PREINIT$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 737: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000030 IMPORT |Image$$INTSRAM_DATA_PREINIT$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 737: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000030 IMPORT |Image$$INTSRAM_DATA_PREINIT$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 740: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 0000005c IMPORT |Load$$SINGLE_BANK_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 740: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 0000005c IMPORT |Image$$SINGLE_BANK_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 740: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 0000005c IMPORT |Image$$SINGLE_BANK_CODE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 740: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 0000005c IMPORT |Image$$SINGLE_BANK_CODE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 740: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 0000005c IMPORT |Image$$SINGLE_BANK_CODE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 837: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000000a0 IMPORT |Load$$EXTSRAM_DSP_TX$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 837: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000000a0 IMPORT |Image$$EXTSRAM_DSP_TX$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 837: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000000a0 IMPORT |Image$$EXTSRAM_DSP_TX$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 837: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000000a0 IMPORT |Image$$EXTSRAM_DSP_TX$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 837: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000000a0 IMPORT |Image$$EXTSRAM_DSP_TX$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 838: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000000cc IMPORT |Load$$EXTSRAM_DSP_RX$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 838: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000000cc IMPORT |Image$$EXTSRAM_DSP_RX$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 838: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000000cc IMPORT |Image$$EXTSRAM_DSP_RX$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 838: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000000cc IMPORT |Image$$EXTSRAM_DSP_RX$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 838: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000000cc IMPORT |Image$$EXTSRAM_DSP_RX$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 866: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 574 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
574 00000100 IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 866: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 575 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
575 00000100 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 866: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 576 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
576 00000100 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 866: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 577 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
577 00000100 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 866: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 578 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
578 00000100 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_MMIPOOL$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 958: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 0000011c IMPORT |Load$$PAGE_TABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 958: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 0000011c IMPORT |Image$$PAGE_TABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 958: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 0000011c IMPORT |Image$$PAGE_TABLE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 958: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 0000011c IMPORT |Image$$PAGE_TABLE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 958: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 0000011c IMPORT |Image$$PAGE_TABLE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 959: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000148 IMPORT |Load$$CACHED_EXTSRAM$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 959: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000148 IMPORT |Image$$CACHED_EXTSRAM$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 959: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000148 IMPORT |Image$$CACHED_EXTSRAM$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 959: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000148 IMPORT |Image$$CACHED_EXTSRAM$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 959: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000148 IMPORT |Image$$CACHED_EXTSRAM$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 960: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000174 IMPORT |Load$$CACHED_EXTSRAM_PROTECTED_RES$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 960: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000174 IMPORT |Image$$CACHED_EXTSRAM_PROTECTED_RES$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 960: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000174 IMPORT |Image$$CACHED_EXTSRAM_PROTECTED_RES$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 960: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000174 IMPORT |Image$$CACHED_EXTSRAM_PROTECTED_RES$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 960: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000174 IMPORT |Image$$CACHED_EXTSRAM_PROTECTED_RES$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 961: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000001a0 IMPORT |Load$$CACHED_EXTSRAM_NVRAM_LTABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 961: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000001a0 IMPORT |Image$$CACHED_EXTSRAM_NVRAM_LTABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 961: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000001a0 IMPORT |Image$$CACHED_EXTSRAM_NVRAM_LTABLE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 961: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000001a0 IMPORT |Image$$CACHED_EXTSRAM_NVRAM_LTABLE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 961: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000001a0 IMPORT |Image$$CACHED_EXTSRAM_NVRAM_LTABLE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 962: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 690 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
690 000001cc IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_RW$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 962: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 691 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
691 000001cc IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_RW$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 962: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 692 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
692 000001cc IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_RW$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 962: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 693 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
693 000001cc IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_RW$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 962: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 694 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
694 000001cc IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_RW$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 963: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000001ec IMPORT |Load$$CACHED_EXTSRAM_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 963: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000001ec IMPORT |Image$$CACHED_EXTSRAM_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 963: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000001ec IMPORT |Image$$CACHED_EXTSRAM_CODE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 963: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000001ec IMPORT |Image$$CACHED_EXTSRAM_CODE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 963: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000001ec IMPORT |Image$$CACHED_EXTSRAM_CODE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 964: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 690 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
690 00000218 IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_RW$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 964: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 691 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
691 00000218 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_RW$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 964: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 692 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
692 00000218 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_RW$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 964: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 693 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
693 00000218 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_RW$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 964: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 694 in macro macro_BackwardCopyRW in 'hal\system\region\src\regioninit_ads.s'
694 00000218 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_RW$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 965: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 574 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
574 00000238 IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 965: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 575 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
575 00000238 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 965: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 576 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
576 00000238 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 965: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 577 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
577 00000238 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 965: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 578 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
578 00000238 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 966: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 574 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
574 0000024c IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI_MMIPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 966: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 575 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
575 0000024c IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI_MMIPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 966: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 576 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
576 0000024c IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI_MMIPOOL$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 966: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 577 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
577 0000024c IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI_MMIPOOL$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 966: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 578 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
578 0000024c IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_NONCACHEABLE_ZI_MMIPOOL$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 967: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 574 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
574 00000260 IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 967: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 575 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
575 00000260 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 967: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 576 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
576 00000260 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 967: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 577 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
577 00000260 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 967: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 578 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
578 00000260 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 975: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 574 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
574 00000274 IMPORT |Load$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_VIDEOPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 975: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 575 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
575 00000274 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_VIDEOPOOL$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 975: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 576 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
576 00000274 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_VIDEOPOOL$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 975: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 577 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
577 00000274 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_VIDEOPOOL$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 975: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 578 in macro macro_ZeroInit in 'hal\system\region\src\regioninit_ads.s'
578 00000274 IMPORT |Image$$DYNAMIC_CACHEABLE_EXTSRAM_DEFAULT_CACHEABLE_ZI_VIDEOPOOL$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 978: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000288 IMPORT |Load$$EXTSRAM$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 978: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000288 IMPORT |Image$$EXTSRAM$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 978: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000288 IMPORT |Image$$EXTSRAM$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 978: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000288 IMPORT |Image$$EXTSRAM$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 978: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000288 IMPORT |Image$$EXTSRAM$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 979: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000002b4 IMPORT |Load$$EXTSRAM_PROTECTED_RES$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 979: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000002b4 IMPORT |Image$$EXTSRAM_PROTECTED_RES$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 979: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000002b4 IMPORT |Image$$EXTSRAM_PROTECTED_RES$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 979: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000002b4 IMPORT |Image$$EXTSRAM_PROTECTED_RES$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 979: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000002b4 IMPORT |Image$$EXTSRAM_PROTECTED_RES$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 980: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 000002e0 IMPORT |Load$$EXTSRAM_NVRAM_LTABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 980: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 000002e0 IMPORT |Image$$EXTSRAM_NVRAM_LTABLE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 980: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 000002e0 IMPORT |Image$$EXTSRAM_NVRAM_LTABLE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 980: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 000002e0 IMPORT |Image$$EXTSRAM_NVRAM_LTABLE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 980: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 000002e0 IMPORT |Image$$EXTSRAM_NVRAM_LTABLE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 989: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 0000030c IMPORT |Load$$INTSRAM_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 989: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 0000030c IMPORT |Image$$INTSRAM_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 989: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 0000030c IMPORT |Image$$INTSRAM_CODE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 989: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 0000030c IMPORT |Image$$INTSRAM_CODE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 989: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 0000030c IMPORT |Image$$INTSRAM_CODE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 993: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000338 IMPORT |Load$$INTSRAM_DATA$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 993: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000338 IMPORT |Image$$INTSRAM_DATA$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 993: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000338 IMPORT |Image$$INTSRAM_DATA$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 993: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000338 IMPORT |Image$$INTSRAM_DATA$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 993: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000338 IMPORT |Image$$INTSRAM_DATA$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1004: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 513 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
513 00000364 IMPORT |Load$$SINGLE_BANK_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1004: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 514 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
514 00000364 IMPORT |Image$$SINGLE_BANK_CODE$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1004: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 515 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
515 00000364 IMPORT |Image$$SINGLE_BANK_CODE$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1004: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 516 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
516 00000364 IMPORT |Image$$SINGLE_BANK_CODE$$ZI$$Base|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1004: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 517 in macro macro_RegionInit in 'hal\system\region\src\regioninit_ads.s'
517 00000364 IMPORT |Image$$SINGLE_BANK_CODE$$ZI$$Length|, WEAK
"hal\system\region\src\regioninit_ads.s", line 1113: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
1113 000003b8 MOV pc, lr ; return from subroutine copy
"hal\system\region\src\regioninit_ads.s", line 1123: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
1123 000003cc MOV pc, lr ; return from subroutine copy
"hal\system\region\src\regioninit_ads.s", line 1133: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
1133 000003e0 MOV pc, lr ; return from subroutine zi_init
"hal\system\region\src\regioninit_ads.s", line 1154: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
1154 00000414 MOV pc, lr ; return from subroutine zi_init
0 Errors, 139 Warnings
Compiling hal\system\dcm\src\sleep.c ...
"hal\system\dcm\src\sleep.c", line 137: Warning: #223-D: function "LockIRQ" declared implicitly
_savedMask = LockIRQ();
^
"hal\system\dcm\src\sleep.c", line 141: Warning: #223-D: function "RestoreIRQ" declared implicitly
RestoreIRQ(_savedMask);
^
"hal\system\dcm\src\sleep.c", line 143: Warning: #167-D: argument of type "volatile Sleep_Time *" is incompatible with parameter of type "Sleep_Time *"
kal_get_sleep_time(&allow_sleep_dur);
^
"hal\system\dcm\src\sleep.c", line 151: Warning: #167-D: argument of type "volatile Sleep_Time *" is incompatible with parameter of type "Sleep_Time *"
if(kal_is_valid_sleep_time(&allow_sleep_dur) != 0)
^
"hal\system\dcm\src\sleep.c", line 170: Warning: #223-D: function "RestoreIRQ" declared implicitly
RestoreIRQ(_savedMask);
^
"hal\system\dcm\src\sleep.c", line 206: Warning: #223-D: function "arm_enter_standby_mode" declared implicitly
arm_enter_standby_mode(OST_ReadyToSlept);
^
"hal\system\dcm\src\sleep.c", line 228: Warning: #223-D: function "RestoreIRQ" declared implicitly
RestoreIRQ(_savedMask);
^
hal\system\dcm\src\sleep.c: 7 warnings, 0 errors
Compiling hal\system\region\src\stack.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 20 Warnings
Compiling hal\system\init\src\third_rom_res.c ...
Compiling hal\system\counter\src\uscounter.c ...
Compiling hal\system\compression\src\viva.c ...
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --debug --no_debug_macros -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --debug --no_debug_macros --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "APCS_INTWORK SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "__BL_ENABLE__ SETL {TRUE}" -pd "__BL_ENABLE__ SETL {TRUE}" -pd "DCM_ENABLE SETL {TRUE}" -pd "SINGLE_BANK_SUPPORT SETL {TRUE}" -pd "__DCM_WITH_COMPRESSION_MAUI_INIT__ SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/system.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\system\system_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/system.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\ADIE_Eint.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\ADIE_intrCtrl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\arm11_pmu_montr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\armlibc_rt.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\armlibc_rt_heap.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\armlibc_rt_io.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\arm_unaligned.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\bootarm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\boot_cert_pattern.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\br_GFH_file_info.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\br_GFH_parser.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\cache.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\cbr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\cbr_util.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\code_decompression_hal.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\cp15.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\dcm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\dcmgr_pl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\dcm_service.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\dma.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\Eint.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\emi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\event_timer.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\excep_hdlr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\fault.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\FTL.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\FUNET.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\idle_task.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\info.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\init.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\init_comm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\init_memory_stack.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\init_trc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\intrCtrl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\irq.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\isrentry.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\maui_GFH_body.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\misc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\nfb_loader.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\pdn.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\pdnoldarch.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\pll.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\regioninit_ads.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\sleep.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\stack.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\third_rom_res.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\uscounter.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\system_dep\viva.det
Processing ADIE_Eint.det ADIE_intrCtrl.det arm11_pmu_montr.det armlibc_rt.det armlibc_rt_heap.det armlibc_rt_io.det arm_unaligned.det bootarm.det boot_cert_pattern.det br_GFH_file_info.det br_GFH_parser.det cache.det cbr.det cbr_util.det code_decompression_hal.det cp15.det dcm.det dcmgr_pl.det dcm_service.det dma.det Eint.det emi.det event_timer.det excep_hdlr.det fault.det FTL.det FUNET.det idle_task.det info.det init.det init_comm.det init_memory_stack.det init_trc.det intrCtrl.det irq.det isrentry.det maui_GFH_body.det misc.det nfb_loader.det pdn.det pdnoldarch.det pll.det regioninit_ads.det sleep.det stack.det third_rom_res.det uscounter.det viva.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'