1
zhyinch
2021-12-22 9200a6930db4a33793929113daacc7da1e26e95d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
T4540 246:842 SEGGER J-Link V6.46 Log File (0001ms, 56548ms total)
T4540 246:842 DLL Compiled: May 23 2019 17:49:56 (0001ms, 56548ms total)
T4540 246:842 Logging started @ 2021-12-22 15:06 (0001ms, 56548ms total)
T4540 246:843 JLINK_SetWarnOutHandler(...) (0000ms, 56548ms total)
T4540 246:843 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0042ms, 56590ms total)
T4540 246:843 WEBSRV Webserver running on local port 19081 (0042ms, 56590ms total)
T4540 246:843   returns O.K. (0042ms, 56590ms total)
T4540 246:885 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 56590ms total)
T4540 246:886 JLINK_TIF_GetAvailable(...) (0000ms, 56590ms total)
T4540 246:886 JLINK_SetErrorOutHandler(...) (0000ms, 56590ms total)
T4540 246:886 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0003ms, 56593ms total)
T4540 246:889 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0002ms, 56595ms total)
T4540 246:891 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 56595ms total)
T4540 246:891 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 56595ms total)
T4540 246:891 JLINK_GetDLLVersion()  returns 64600 (0000ms, 56595ms total)
T4540 246:891 JLINK_GetFirmwareString(...) (0000ms, 56595ms total)
T4540 246:891 JLINK_GetDLLVersion()  returns 64600 (0000ms, 56595ms total)
T4540 246:891 JLINK_GetCompileDateTime() (0000ms, 56595ms total)
T4540 246:891 JLINK_GetFirmwareString(...) (0000ms, 56595ms total)
T4540 246:891 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 56595ms total)
T4540 246:891 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 56597ms total)
T4540 246:893 JLINK_SetSpeed(5000) (0000ms, 56597ms total)
T4540 246:893 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770031)
Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, Little endian.
 -- Max. mem block: 0x00002C18 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0184ms, 56781ms total)
T4540 247:077 JLINK_GetDLLVersion()  returns 64600 (0000ms, 56781ms total)
T4540 247:077 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 56781ms total)
T4540 247:077 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 56781ms total)
T4540 247:077 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 56781ms total)
T4540 247:077 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 56781ms total)
T4540 247:077 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 56782ms total)
T4540 247:078 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 56782ms total)
T4540 247:078 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 56782ms total)
T4540 247:078 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 56783ms total)
T4540 247:079 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 56783ms total)
T4540 247:079 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 56783ms total)
T4540 247:079 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0001ms, 56784ms total)
T4540 247:080 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 56784ms total)
T4540 247:080 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 56784ms total)
T4540 247:080 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 56784ms total)
T4540 247:080 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0001ms, 56785ms total)
T4540 247:081 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 56785ms total)
T4540 247:081 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 56785ms total)
T4540 247:081 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0070ms, 56855ms total)
T4540 247:151 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 56855ms total)
T4540 247:151 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 56855ms total)
T4540 247:151 JLINK_Halt()  returns 0x00 (0000ms, 56855ms total)
T4540 247:151 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 56856ms total)
T4540 247:152 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 56857ms total)
T4540 247:153 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 56858ms total)
T4540 247:154 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 56858ms total)
T4540 247:154 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 56858ms total)
T4540 247:154 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 56858ms total)
T4540 247:154 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 56858ms total)
T4540 247:154 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 56858ms total)
T4540 247:154 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 56859ms total)
T4540 247:155 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 56859ms total)
T4540 247:155 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 56859ms total)
T4540 247:245 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 56859ms total)
T4540 247:245 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0073ms, 56932ms total)
T4540 247:318 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 56932ms total)
T4540 247:318 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 56932ms total)
T4540 247:318 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0002ms, 56934ms total)
T4540 247:320 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 56934ms total)
T4540 247:320 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 56934ms total)
T4540 247:321 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0001ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...  returns 0x3C (0000ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...  returns 0x3C (0000ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 56935ms total)
T4540 247:322 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 56935ms total)
T4540 247:435 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: FF FF FF FF 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x14 (0001ms, 56936ms total)
T4540 247:436 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 00 00 00 00  returns 0x04 (0001ms, 56937ms total)
T4540 247:437 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 56938ms total)
T4540 247:438 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 56939ms total)
T4540 250:054 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 56939ms total)
T4540 250:054 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 56939ms total)
T4540 250:054 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 56939ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...  returns 0x3C (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...  returns 0x3C (0000ms, 56940ms total)
T4540 250:055 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0001ms, 56941ms total)
T4540 250:056 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 56941ms total)
T4540 250:567 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R13 (SP))  returns 0x20001140 (0000ms, 56942ms total)
T4540 250:568 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0001ms, 56943ms total)
T4540 250:569 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 56943ms total)
T4540 250:569 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 56943ms total)
T4540 250:569 JLINK_ReadReg(MSP)  returns 0x20001140 (0000ms, 56943ms total)
T4540 250:569 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 56943ms total)
T4540 250:569 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 56943ms total)
T4540 250:602 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0001ms, 56944ms total)
T4540 250:612 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 56944ms total)
T4540 250:612 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 56944ms total)
T4540 250:618 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 56944ms total)
T4540 250:618 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 56944ms total)
T4540 250:618 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 56944ms total)
T4540 250:647 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001240) -- Updating C cache (64 bytes @ 0x20001240) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 56946ms total)
T4540 250:664 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 56946ms total)
T4540 250:664 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 56946ms total)
T4540 250:664 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 56946ms total)
T4540 250:672 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0002ms, 56948ms total)
T4540 250:674 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0000ms, 56948ms total)
T4540 250:674 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0000ms, 56948ms total)
T4540 250:684 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 56948ms total)
T4540 250:684 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 56948ms total)
T4540 250:684 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 56948ms total)
T4540 250:693 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 56948ms total)
T4540 250:705 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0000ms, 56948ms total)
T4540 250:705 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0000ms, 56948ms total)
T4540 250:705 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 7D  returns 0x01 (0001ms, 56949ms total)
T4540 250:718 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0001ms, 56950ms total)
T4540 250:719 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 56950ms total)
T4540 250:719 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 56950ms total)
T4540 250:730 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0002ms, 56952ms total)
T4540 250:732 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 56952ms total)
T4540 250:732 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 56952ms total)
T4540 250:745 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 56952ms total)
T4540 250:745 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 56952ms total)
T4540 250:745 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 56952ms total)
T4540 250:756 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 56952ms total)
T4540 250:756 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 56952ms total)
T4540 250:756 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 56952ms total)
T4540 250:767 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 56953ms total)
T4540 250:768 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 56953ms total)
T4540 250:768 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 56953ms total)
T4540 250:782 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 56953ms total)
T4540 250:782 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 56953ms total)
T4540 250:782 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 56954ms total)
T4540 250:795 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 56954ms total)
T4540 250:795 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 56954ms total)
T4540 250:795 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 56954ms total)
T4540 250:807 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 56955ms total)
T4540 250:808 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 56955ms total)
T4540 250:808 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 56955ms total)
T4540 250:820 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 56955ms total)
T4540 250:820 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 56956ms total)
T4540 250:821 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 56956ms total)
T4540 250:846 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 56956ms total)
T4540 250:846 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 56956ms total)
T4540 250:846 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 56956ms total)
T4540 250:862 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 56956ms total)
T4540 250:862 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 56956ms total)
T4540 250:862 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 56956ms total)
T4540 250:878 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0057ms, 57013ms total)
T4540 250:935 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0000ms, 57013ms total)
T4540 250:936 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0000ms, 57013ms total)
T4540 250:968 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57013ms total)
T4540 250:968 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57013ms total)
T4540 250:969 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57013ms total)
T4540 250:984 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0000ms, 57013ms total)
T4540 250:986 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0000ms, 57013ms total)
T4540 250:986 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0000ms, 57013ms total)
T4540 250:987 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0001ms, 57014ms total)
T4540 250:988 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0000ms, 57014ms total)
T4540 250:988 JLINK_ReadMemEx(0x20000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000158) - Data: 00 00  returns 0x02 (0000ms, 57014ms total)
T5BD4 251:060 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 57014ms total)
T5BD4 251:060 JLINK_SetBPEx(Addr = 0x0800B3B0, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 57014ms total)
T5BD4 251:060 JLINK_SetBPEx(Addr = 0x080087D6, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 57014ms total)
T5BD4 251:060 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 57021ms total)
T5BD4 251:168 JLINK_IsHalted()  returns FALSE (0001ms, 57022ms total)
T5BD4 251:270 JLINK_IsHalted()  returns FALSE (0001ms, 57022ms total)
T5BD4 251:371 JLINK_IsHalted()  returns FALSE (0000ms, 57021ms total)
T5BD4 251:472 JLINK_IsHalted()  returns FALSE (0000ms, 57021ms total)
T5BD4 251:574 JLINK_IsHalted()  returns FALSE (0001ms, 57022ms total)
T4540 251:676 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0001ms, 57022ms total)
T4540 251:677 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0002ms, 57024ms total)
T4540 251:679 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 57026ms total)
T4540 251:681 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57026ms total)
T4540 251:681 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000070) - Data: 66  returns 0x01 (0001ms, 57027ms total)
T4540 251:682 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57028ms total)
T4540 251:683 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57029ms total)
T4540 251:684 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000070) - Data: 69  returns 0x01 (0001ms, 57030ms total)
T4540 251:685 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0002ms, 57032ms total)
T4540 251:687 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57033ms total)
T4540 251:688 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0001ms, 57034ms total)
T4540 251:689 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0001ms, 57035ms total)
T4540 251:690 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57036ms total)
T4540 251:691 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57037ms total)
T4540 251:692 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0001ms, 57038ms total)
T4540 251:693 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57039ms total)
T4540 251:695 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57039ms total)
T4540 251:696 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57040ms total)
T4540 251:697 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0001ms, 57041ms total)
T4540 251:698 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0001ms, 57042ms total)
T4540 251:699 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0002ms, 57044ms total)
T4540 251:701 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 3F DF F5 00 00 00 00 00 00 00 00 04 00 00 00 ...  returns 0x14 (0001ms, 57045ms total)
T4540 251:702 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 00 04 00 00  returns 0x04 (0000ms, 57045ms total)
T4540 251:702 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57046ms total)
T4540 251:703 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57047ms total)
T5BD4 251:726 JLINK_IsHalted()  returns FALSE (0001ms, 57048ms total)
T5BD4 251:828 JLINK_IsHalted()  returns FALSE (0000ms, 57047ms total)
T5BD4 251:929 JLINK_IsHalted()  returns FALSE (0000ms, 57047ms total)
T5BD4 252:030 JLINK_IsHalted()  returns FALSE (0000ms, 57047ms total)
T5BD4 252:131 JLINK_IsHalted()  returns FALSE (0000ms, 57047ms total)
T4540 252:233 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0001ms, 57048ms total)
T4540 252:234 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0057ms, 57105ms total)
T4540 252:293 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 57107ms total)
T4540 252:295 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57107ms total)
T4540 252:295 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000070) - Data: CD  returns 0x01 (0001ms, 57108ms total)
T4540 252:296 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57109ms total)
T4540 252:297 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000125C) - Data: 00 04 00 00 00 04 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 57111ms total)
T4540 252:299 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000070) - Data: D1  returns 0x01 (0000ms, 57111ms total)
T4540 252:301 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0001ms, 57112ms total)
T4540 252:302 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57113ms total)
T4540 252:303 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57113ms total)
T4540 252:303 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0001ms, 57114ms total)
T4540 252:304 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57115ms total)
T4540 252:305 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57116ms total)
T4540 252:306 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0001ms, 57117ms total)
T4540 252:307 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57117ms total)
T4540 252:307 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57118ms total)
T4540 252:309 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57119ms total)
T4540 252:310 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0001ms, 57120ms total)
T4540 252:311 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0001ms, 57121ms total)
T4540 252:312 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0001ms, 57122ms total)
T4540 252:313 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 3F DF F5 00 00 00 00 00 00 00 00 04 00 00 00 ...  returns 0x14 (0001ms, 57123ms total)
T4540 252:314 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 00 04 00 00  returns 0x04 (0001ms, 57124ms total)
T4540 252:315 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57125ms total)
T4540 252:316 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57125ms total)
T5BD4 252:317 JLINK_IsHalted()  returns FALSE (0001ms, 57126ms total)
T5BD4 252:419 JLINK_IsHalted()  returns FALSE (0000ms, 57125ms total)
T5BD4 252:520 JLINK_IsHalted()  returns TRUE (0004ms, 57129ms total)
T5BD4 252:524 JLINK_Halt()  returns 0x00 (0000ms, 57125ms total)
T5BD4 252:524 JLINK_IsHalted()  returns TRUE (0000ms, 57125ms total)
T5BD4 252:524 JLINK_IsHalted()  returns TRUE (0000ms, 57125ms total)
T5BD4 252:524 JLINK_IsHalted()  returns TRUE (0001ms, 57126ms total)
T5BD4 252:525 JLINK_ReadReg(R15 (PC))  returns 0x0800B3B0 (0000ms, 57125ms total)
T5BD4 252:525 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 57125ms total)
T5BD4 252:525 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 57125ms total)
T5BD4 252:525 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 57125ms total)
T5BD4 252:525 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 57126ms total)
T5BD4 252:526 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 57127ms total)
T5BD4 252:527 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R0)  returns 0x0800B3B1 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R1)  returns 0x20001BF8 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R3)  returns 0x0800A3B9 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R4)  returns 0x0800C210 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R6)  returns 0x0800C210 (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 57128ms total)
T5BD4 252:528 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 57128ms total)
T5BD4 252:529 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(R13 (SP))  returns 0x20001BF8 (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(R14)  returns 0x08005AB5 (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(R15 (PC))  returns 0x0800B3B0 (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(MSP)  returns 0x20001BF8 (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 57129ms total)
T5BD4 252:529 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 57129ms total)
T4540 252:532 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0002ms, 57131ms total)
T4540 252:534 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57131ms total)
T4540 252:535 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001240) -- Updating C cache (64 bytes @ 0x20001240) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57132ms total)
T4540 252:536 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57132ms total)
T4540 252:536 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0002ms, 57134ms total)
T4540 252:539 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57134ms total)
T4540 252:539 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57134ms total)
T4540 252:539 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57135ms total)
T4540 252:541 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0001ms, 57136ms total)
T4540 252:542 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0002ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57138ms total)
T4540 252:544 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57139ms total)
T4540 252:545 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57139ms total)
T4540 252:545 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57139ms total)
T4540 252:545 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57139ms total)
T4540 252:545 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0001ms, 57140ms total)
T4540 252:546 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57140ms total)
T4540 252:547 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 3F DF F5 00 00 00 00 00 00 00 00 04 00 00 00 ...  returns 0x14 (0000ms, 57140ms total)
T4540 252:548 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 00 04 00 00  returns 0x04 (0000ms, 57141ms total)
T4540 252:548 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57142ms total)
T4540 252:549 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57143ms total)
T5BD4 255:446 JLINK_ReadMemEx(0x0800B3B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B380) -- Updating C cache (64 bytes @ 0x0800B380) -- Read from C cache (2 bytes @ 0x0800B3B0) - Data: FB F7  returns 0x02 (0002ms, 57145ms total)
T5BD4 255:448 JLINK_SetBPEx(Addr = 0x080087D6, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 57145ms total)
T5BD4 255:448 JLINK_SetBPEx(Addr = 0x0800B3DE, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 57145ms total)
T5BD4 255:448 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0004ms, 57149ms total)
T5BD4 255:553 JLINK_IsHalted()  returns TRUE (0003ms, 57152ms total)
T5BD4 255:556 JLINK_Halt()  returns 0x00 (0000ms, 57149ms total)
T5BD4 255:556 JLINK_IsHalted()  returns TRUE (0000ms, 57149ms total)
T5BD4 255:556 JLINK_IsHalted()  returns TRUE (0000ms, 57149ms total)
T5BD4 255:557 JLINK_IsHalted()  returns TRUE (0000ms, 57149ms total)
T5BD4 255:557 JLINK_ReadReg(R15 (PC))  returns 0x0800B3DE (0000ms, 57149ms total)
T5BD4 255:557 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 57149ms total)
T5BD4 255:557 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 57149ms total)
T5BD4 255:557 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 57149ms total)
T5BD4 255:557 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 57150ms total)
T5BD4 255:558 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0000ms, 57150ms total)
T5BD4 255:558 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R0)  returns 0x0000000D (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R1)  returns 0x20000054 (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R3)  returns 0x01FFFFFF (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R4)  returns 0x0800C210 (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R6)  returns 0x0800C210 (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 57151ms total)
T5BD4 255:559 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0001ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R12)  returns 0x00000040 (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R13 (SP))  returns 0x20001BF8 (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R14)  returns 0x08008795 (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(R15 (PC))  returns 0x0800B3DE (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(MSP)  returns 0x20001BF8 (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 57152ms total)
T5BD4 255:560 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 57152ms total)
T4540 255:560 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0003ms, 57155ms total)
T4540 255:563 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57155ms total)
T4540 255:563 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001240) -- Updating C cache (64 bytes @ 0x20001240) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 57157ms total)
T4540 255:565 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57157ms total)
T4540 255:565 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57158ms total)
T4540 255:566 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57158ms total)
T4540 255:566 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57158ms total)
T4540 255:566 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57158ms total)
T4540 255:567 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0001ms, 57159ms total)
T4540 255:568 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0002ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57161ms total)
T4540 255:570 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57161ms total)
T4540 255:571 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57162ms total)
T4540 255:571 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57162ms total)
T4540 255:571 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57162ms total)
T4540 255:572 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57162ms total)
T4540 255:572 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57163ms total)
T4540 255:573 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57164ms total)
T4540 255:574 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57165ms total)
T4540 255:575 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57166ms total)
T4540 255:602 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B3C0) -- Updating C cache (64 bytes @ 0x0800B3C0) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0002ms, 57168ms total)
T4540 255:604 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B400) -- Updating C cache (64 bytes @ 0x0800B400) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0001ms, 57169ms total)
T4540 255:605 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57169ms total)
T4540 258:482 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57170ms total)
T4540 258:483 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57171ms total)
T4540 258:493 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57171ms total)
T4540 258:493 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57171ms total)
T4540 258:493 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0001ms, 57172ms total)
T4540 258:495 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57172ms total)
T4540 258:495 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57172ms total)
T4540 258:496 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0001ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57173ms total)
T4540 258:497 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57174ms total)
T4540 258:498 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57174ms total)
T4540 258:498 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57174ms total)
T4540 258:498 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57174ms total)
T4540 258:498 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57175ms total)
T4540 258:499 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57176ms total)
T4540 258:500 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57177ms total)
T4540 258:501 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57178ms total)
T4540 259:114 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57178ms total)
T4540 259:115 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0000ms, 57179ms total)
T4540 259:121 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57179ms total)
T4540 259:121 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57179ms total)
T4540 259:121 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57179ms total)
T4540 259:125 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57179ms total)
T4540 259:125 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57179ms total)
T4540 259:126 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57179ms total)
T4540 259:126 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57179ms total)
T4540 259:126 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57179ms total)
T4540 259:126 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57179ms total)
T4540 259:127 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57180ms total)
T4540 259:127 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:128 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57180ms total)
T4540 259:128 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57180ms total)
T4540 259:128 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57180ms total)
T4540 259:128 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0001ms, 57181ms total)
T4540 259:129 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0000ms, 57181ms total)
T4540 259:129 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0002ms, 57183ms total)
T4540 259:131 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57184ms total)
T4540 259:132 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57184ms total)
T4540 259:763 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57185ms total)
T4540 259:764 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57186ms total)
T4540 259:773 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57186ms total)
T4540 259:773 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57186ms total)
T4540 259:773 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57186ms total)
T4540 259:775 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57186ms total)
T4540 259:775 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57186ms total)
T4540 259:776 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0001ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57187ms total)
T4540 259:777 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0001ms, 57188ms total)
T4540 259:778 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57188ms total)
T4540 259:778 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57188ms total)
T4540 259:778 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57189ms total)
T4540 259:779 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57190ms total)
T4540 259:780 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0004ms, 57194ms total)
T4540 259:784 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57195ms total)
T4540 260:050 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57196ms total)
T4540 260:051 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0002ms, 57198ms total)
T4540 260:061 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0001ms, 57199ms total)
T4540 260:062 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57199ms total)
T4540 260:062 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57199ms total)
T4540 260:064 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0001ms, 57200ms total)
T4540 260:065 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57200ms total)
T4540 260:065 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57200ms total)
T4540 260:066 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57201ms total)
T4540 260:066 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57202ms total)
T4540 260:067 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57202ms total)
T4540 260:067 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57202ms total)
T4540 260:067 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57202ms total)
T4540 260:067 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57202ms total)
T4540 260:067 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57202ms total)
T4540 260:068 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57203ms total)
T4540 260:068 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57203ms total)
T4540 260:068 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57203ms total)
T4540 260:068 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0002ms, 57205ms total)
T4540 260:070 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57206ms total)
T4540 260:071 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57207ms total)
T4540 260:072 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57208ms total)
T4540 260:238 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57208ms total)
T4540 260:238 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57209ms total)
T4540 260:247 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57209ms total)
T4540 260:247 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57209ms total)
T4540 260:247 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57209ms total)
T4540 260:249 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57209ms total)
T4540 260:249 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0001ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57210ms total)
T4540 260:251 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57211ms total)
T4540 260:252 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57211ms total)
T4540 260:252 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57211ms total)
T4540 260:252 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57211ms total)
T4540 260:252 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57211ms total)
T4540 260:252 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57212ms total)
T4540 260:253 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57212ms total)
T4540 260:253 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57212ms total)
T4540 260:253 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57212ms total)
T4540 260:253 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57213ms total)
T4540 260:254 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57214ms total)
T4540 260:255 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57215ms total)
T4540 260:256 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57216ms total)
T4540 260:553 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57217ms total)
T4540 260:554 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0002ms, 57219ms total)
T4540 260:563 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0001ms, 57220ms total)
T4540 260:564 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57220ms total)
T4540 260:564 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57220ms total)
T4540 260:566 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57220ms total)
T4540 260:567 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57220ms total)
T4540 260:568 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57221ms total)
T4540 260:569 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57221ms total)
T4540 260:570 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57222ms total)
T4540 260:570 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57223ms total)
T4540 260:571 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0002ms, 57225ms total)
T4540 260:573 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57226ms total)
T4540 260:574 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0002ms, 57228ms total)
T4540 261:090 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57229ms total)
T4540 261:091 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57230ms total)
T4540 261:100 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57230ms total)
T4540 261:100 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57230ms total)
T4540 261:100 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57230ms total)
T4540 261:102 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57230ms total)
T4540 261:102 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0001ms, 57231ms total)
T4540 261:103 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57231ms total)
T4540 261:103 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57231ms total)
T4540 261:103 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57231ms total)
T4540 261:103 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57232ms total)
T4540 261:104 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:105 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57232ms total)
T4540 261:105 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57232ms total)
T4540 261:105 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57232ms total)
T4540 261:105 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0001ms, 57233ms total)
T4540 261:106 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57234ms total)
T4540 261:107 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57235ms total)
T4540 261:108 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57236ms total)
T4540 261:109 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57237ms total)
T4540 261:761 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0002ms, 57239ms total)
T4540 261:763 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57240ms total)
T4540 261:771 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57240ms total)
T4540 261:772 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57241ms total)
T4540 261:772 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57241ms total)
T4540 261:774 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57241ms total)
T4540 261:774 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57241ms total)
T4540 261:774 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57241ms total)
T4540 261:774 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0001ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57242ms total)
T4540 261:775 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0001ms, 57243ms total)
T4540 261:776 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57243ms total)
T4540 261:776 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57243ms total)
T4540 261:776 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57243ms total)
T4540 261:776 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57243ms total)
T4540 261:776 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57243ms total)
T4540 261:777 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57243ms total)
T4540 261:777 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57244ms total)
T4540 261:778 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57245ms total)
T4540 261:779 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 57245ms total)
T4540 261:779 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57246ms total)
T4540 261:962 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57247ms total)
T4540 261:963 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57248ms total)
T4540 261:974 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57248ms total)
T4540 261:974 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57248ms total)
T4540 261:974 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57248ms total)
T4540 261:976 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57248ms total)
T4540 261:976 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57248ms total)
T4540 261:977 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57248ms total)
T4540 261:977 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57248ms total)
T4540 261:977 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:978 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:979 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:979 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57249ms total)
T4540 261:979 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57249ms total)
T4540 261:979 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:980 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57249ms total)
T4540 261:980 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57249ms total)
T4540 261:980 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57249ms total)
T4540 261:980 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57249ms total)
T4540 261:980 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0002ms, 57251ms total)
T4540 261:982 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57251ms total)
T4540 261:982 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57252ms total)
T4540 261:983 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57253ms total)
T4540 262:148 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57254ms total)
T4540 262:149 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0000ms, 57254ms total)
T4540 262:159 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57254ms total)
T4540 262:159 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57254ms total)
T4540 262:159 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0001ms, 57255ms total)
T4540 262:162 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57255ms total)
T4540 262:162 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57255ms total)
T4540 262:163 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57255ms total)
T4540 262:163 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57255ms total)
T4540 262:163 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57255ms total)
T4540 262:163 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57255ms total)
T4540 262:164 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57256ms total)
T4540 262:164 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57257ms total)
T4540 262:165 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57257ms total)
T4540 262:165 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57257ms total)
T4540 262:165 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57257ms total)
T4540 262:165 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57257ms total)
T4540 262:166 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57257ms total)
T4540 262:166 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57258ms total)
T4540 262:167 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57259ms total)
T4540 262:168 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57260ms total)
T4540 262:169 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57261ms total)
T4540 262:346 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57262ms total)
T4540 262:347 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0000ms, 57262ms total)
T4540 262:356 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57262ms total)
T4540 262:356 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57262ms total)
T4540 262:356 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57262ms total)
T4540 262:358 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57262ms total)
T4540 262:358 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57262ms total)
T4540 262:359 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0001ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57263ms total)
T4540 262:360 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0001ms, 57264ms total)
T4540 262:361 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57264ms total)
T4540 262:361 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57264ms total)
T4540 262:361 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57265ms total)
T4540 262:362 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57266ms total)
T4540 262:363 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57267ms total)
T4540 262:364 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57267ms total)
T4540 262:651 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57268ms total)
T4540 262:652 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57269ms total)
T4540 262:662 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57269ms total)
T4540 262:662 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57269ms total)
T4540 262:662 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57269ms total)
T4540 262:664 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57269ms total)
T4540 262:664 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57269ms total)
T4540 262:665 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0001ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57270ms total)
T4540 262:666 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:667 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57270ms total)
T4540 262:667 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57270ms total)
T4540 262:667 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57270ms total)
T4540 262:668 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57270ms total)
T4540 262:668 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57271ms total)
T4540 262:669 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57271ms total)
T4540 262:670 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57272ms total)
T4540 262:671 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57273ms total)
T4540 262:832 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57274ms total)
T4540 262:833 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57275ms total)
T4540 262:843 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57275ms total)
T4540 262:843 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57275ms total)
T4540 262:843 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57275ms total)
T4540 262:846 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57275ms total)
T4540 262:846 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57275ms total)
T4540 262:847 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57275ms total)
T4540 262:847 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57275ms total)
T4540 262:847 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57275ms total)
T4540 262:847 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57276ms total)
T4540 262:848 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57277ms total)
T4540 262:849 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57277ms total)
T4540 262:849 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57277ms total)
T4540 262:849 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57277ms total)
T4540 262:849 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57277ms total)
T4540 262:850 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57277ms total)
T4540 262:850 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57278ms total)
T4540 262:851 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57279ms total)
T4540 262:852 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57280ms total)
T4540 262:853 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57281ms total)
T4540 263:258 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57282ms total)
T4540 263:259 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57283ms total)
T4540 263:268 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0001ms, 57284ms total)
T4540 263:269 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57284ms total)
T4540 263:269 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57284ms total)
T4540 263:271 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57284ms total)
T4540 263:271 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57284ms total)
T4540 263:272 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57284ms total)
T4540 263:273 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57285ms total)
T4540 263:273 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57286ms total)
T4540 263:274 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57286ms total)
T4540 263:274 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57286ms total)
T4540 263:274 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57286ms total)
T4540 263:274 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57287ms total)
T4540 263:275 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57288ms total)
T4540 263:276 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57289ms total)
T4540 263:277 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57290ms total)
T4540 263:514 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0002ms, 57292ms total)
T4540 263:516 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57293ms total)
T4540 263:526 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57293ms total)
T4540 263:526 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57293ms total)
T4540 263:526 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57293ms total)
T4540 263:529 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57293ms total)
T4540 263:529 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57293ms total)
T4540 263:530 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57293ms total)
T4540 263:530 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57293ms total)
T4540 263:530 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57294ms total)
T4540 263:531 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0001ms, 57295ms total)
T4540 263:532 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57295ms total)
T4540 263:532 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57295ms total)
T4540 263:532 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57295ms total)
T4540 263:532 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0001ms, 57296ms total)
T4540 263:533 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57296ms total)
T4540 263:533 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57296ms total)
T4540 263:533 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0002ms, 57298ms total)
T4540 263:535 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57299ms total)
T4540 263:536 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 57299ms total)
T4540 263:537 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57301ms total)
T4540 263:697 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57302ms total)
T4540 263:698 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57303ms total)
T4540 263:708 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57303ms total)
T4540 263:708 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57303ms total)
T4540 263:708 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57303ms total)
T4540 263:710 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57303ms total)
T4540 263:710 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57303ms total)
T4540 263:711 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57303ms total)
T4540 263:711 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57303ms total)
T4540 263:711 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57303ms total)
T4540 263:711 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57303ms total)
T4540 263:711 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57304ms total)
T4540 263:712 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57305ms total)
T4540 263:713 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57305ms total)
T4540 263:713 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57305ms total)
T4540 263:713 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0001ms, 57306ms total)
T4540 263:714 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57306ms total)
T4540 263:714 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57307ms total)
T4540 263:715 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0002ms, 57309ms total)
T4540 263:717 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 57309ms total)
T4540 263:717 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57309ms total)
T4540 263:875 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57311ms total)
T4540 263:876 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57312ms total)
T4540 263:886 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57312ms total)
T4540 263:886 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57312ms total)
T4540 263:886 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0001ms, 57313ms total)
T4540 263:888 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57313ms total)
T4540 263:888 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0001ms, 57314ms total)
T4540 263:889 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57315ms total)
T4540 263:890 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0001ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57316ms total)
T4540 263:891 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57316ms total)
T4540 263:892 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57316ms total)
T4540 263:892 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57316ms total)
T4540 263:892 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57316ms total)
T4540 263:893 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57316ms total)
T4540 263:893 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57317ms total)
T4540 263:894 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57318ms total)
T4540 263:895 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 57318ms total)
T4540 263:895 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57319ms total)
T4540 264:138 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57320ms total)
T4540 264:139 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57321ms total)
T4540 264:147 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57321ms total)
T4540 264:147 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57321ms total)
T4540 264:147 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0001ms, 57322ms total)
T4540 264:150 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57322ms total)
T4540 264:150 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57322ms total)
T4540 264:150 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57322ms total)
T4540 264:150 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57322ms total)
T4540 264:150 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57323ms total)
T4540 264:151 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57323ms total)
T4540 264:152 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57324ms total)
T4540 264:152 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57324ms total)
T4540 264:152 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57324ms total)
T4540 264:152 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57324ms total)
T4540 264:153 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57324ms total)
T4540 264:153 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57325ms total)
T4540 264:154 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57325ms total)
T4540 264:154 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 57327ms total)
T4540 264:156 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57327ms total)
T4540 264:411 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0002ms, 57329ms total)
T4540 264:413 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57330ms total)
T4540 264:423 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57330ms total)
T4540 264:423 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57330ms total)
T4540 264:423 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57330ms total)
T4540 264:425 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57330ms total)
T4540 264:425 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57330ms total)
T4540 264:426 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57331ms total)
T4540 264:427 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:428 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57331ms total)
T4540 264:428 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57331ms total)
T4540 264:428 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57331ms total)
T4540 264:429 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57331ms total)
T4540 264:429 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57332ms total)
T4540 264:430 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57333ms total)
T4540 264:431 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57334ms total)
T4540 264:432 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57334ms total)
T4540 264:592 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57335ms total)
T4540 264:593 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57336ms total)
T4540 264:604 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57336ms total)
T4540 264:604 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57336ms total)
T4540 264:604 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57336ms total)
T4540 264:606 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57336ms total)
T4540 264:606 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57336ms total)
T4540 264:607 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57336ms total)
T4540 264:607 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57336ms total)
T4540 264:607 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57336ms total)
T4540 264:607 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57337ms total)
T4540 264:608 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57338ms total)
T4540 264:609 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57338ms total)
T4540 264:609 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57338ms total)
T4540 264:609 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57338ms total)
T4540 264:609 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57338ms total)
T4540 264:610 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57338ms total)
T4540 264:610 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57339ms total)
T4540 264:611 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57340ms total)
T4540 264:612 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57341ms total)
T4540 264:613 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57341ms total)
T4540 264:834 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57342ms total)
T4540 264:835 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57343ms total)
T4540 264:844 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57343ms total)
T4540 264:844 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57343ms total)
T4540 264:844 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57343ms total)
T4540 264:846 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57343ms total)
T4540 264:846 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57343ms total)
T4540 264:847 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0001ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57344ms total)
T4540 264:848 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57344ms total)
T4540 264:849 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57345ms total)
T4540 264:849 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57345ms total)
T4540 264:849 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57345ms total)
T4540 264:849 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57346ms total)
T4540 264:850 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57347ms total)
T4540 264:851 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57348ms total)
T4540 264:852 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57349ms total)
T4540 265:006 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57350ms total)
T4540 265:007 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57351ms total)
T4540 265:016 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57351ms total)
T4540 265:016 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57351ms total)
T4540 265:016 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57351ms total)
T4540 265:018 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:018 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57351ms total)
T4540 265:019 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57351ms total)
T4540 265:020 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:021 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:021 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57351ms total)
T4540 265:021 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57351ms total)
T4540 265:021 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57351ms total)
T4540 265:021 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0002ms, 57353ms total)
T4540 265:023 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57354ms total)
T4540 265:024 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57355ms total)
T4540 265:025 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57356ms total)
T4540 265:153 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57357ms total)
T4540 265:154 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57358ms total)
T4540 265:163 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57358ms total)
T4540 265:163 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57358ms total)
T4540 265:163 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57358ms total)
T4540 265:165 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57358ms total)
T4540 265:165 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57358ms total)
T4540 265:166 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57358ms total)
T4540 265:166 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57358ms total)
T4540 265:166 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57358ms total)
T4540 265:166 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0001ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57359ms total)
T4540 265:167 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57360ms total)
T4540 265:168 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57360ms total)
T4540 265:169 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57360ms total)
T4540 265:169 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57361ms total)
T4540 265:170 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57362ms total)
T4540 265:171 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57363ms total)
T4540 265:172 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57363ms total)
T4540 265:338 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57363ms total)
T4540 265:339 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0000ms, 57364ms total)
T4540 265:346 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57364ms total)
T4540 265:346 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57364ms total)
T4540 265:346 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57364ms total)
T4540 265:348 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57364ms total)
T4540 265:348 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57364ms total)
T4540 265:348 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57365ms total)
T4540 265:349 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57366ms total)
T4540 265:350 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57366ms total)
T4540 265:350 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57366ms total)
T4540 265:350 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57366ms total)
T4540 265:350 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57366ms total)
T4540 265:350 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0001ms, 57367ms total)
T4540 265:351 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57368ms total)
T4540 265:352 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57368ms total)
T4540 265:352 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57369ms total)
T4540 265:353 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57370ms total)
T4540 265:486 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57371ms total)
T4540 265:487 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57372ms total)
T4540 265:495 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57372ms total)
T4540 265:495 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0001ms, 57373ms total)
T4540 265:496 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57373ms total)
T4540 265:498 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57373ms total)
T4540 265:498 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57373ms total)
T4540 265:499 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0001ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57374ms total)
T4540 265:500 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:501 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57374ms total)
T4540 265:501 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57374ms total)
T4540 265:501 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57374ms total)
T4540 265:501 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0001ms, 57375ms total)
T4540 265:502 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57376ms total)
T4540 265:503 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57376ms total)
T4540 265:503 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57377ms total)
T4540 265:504 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57378ms total)
T4540 265:637 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57379ms total)
T4540 265:638 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57380ms total)
T4540 265:647 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57380ms total)
T4540 265:647 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57380ms total)
T4540 265:647 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57380ms total)
T4540 265:649 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57380ms total)
T4540 265:649 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57380ms total)
T4540 265:650 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57381ms total)
T4540 265:651 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57381ms total)
T4540 265:652 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57381ms total)
T4540 265:652 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57381ms total)
T4540 265:652 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57382ms total)
T4540 265:653 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57383ms total)
T4540 265:654 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57384ms total)
T4540 265:655 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57385ms total)
T4540 265:842 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57385ms total)
T4540 265:842 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57386ms total)
T4540 265:852 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57386ms total)
T4540 265:852 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57386ms total)
T4540 265:852 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57386ms total)
T4540 265:854 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:854 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57386ms total)
T4540 265:855 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0001ms, 57387ms total)
T4540 265:856 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57387ms total)
T4540 265:856 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57387ms total)
T4540 265:856 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57387ms total)
T4540 265:856 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57387ms total)
T4540 265:856 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57387ms total)
T4540 265:857 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57387ms total)
T4540 265:857 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57388ms total)
T4540 265:858 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57388ms total)
T4540 265:858 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57389ms total)
T4540 265:859 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57390ms total)
T4540 266:002 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57391ms total)
T4540 266:003 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57392ms total)
T4540 266:012 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57392ms total)
T4540 266:012 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57392ms total)
T4540 266:012 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57392ms total)
T4540 266:015 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57392ms total)
T4540 266:015 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57392ms total)
T4540 266:016 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57392ms total)
T4540 266:016 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57392ms total)
T4540 266:016 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57392ms total)
T4540 266:016 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57392ms total)
T4540 266:016 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57393ms total)
T4540 266:017 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 57394ms total)
T4540 266:018 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57394ms total)
T4540 266:018 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57394ms total)
T4540 266:018 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57394ms total)
T4540 266:019 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57394ms total)
T4540 266:019 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57395ms total)
T4540 266:020 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57395ms total)
T4540 266:021 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57397ms total)
T4540 266:022 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57397ms total)
T4540 266:154 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57398ms total)
T4540 266:155 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57399ms total)
T4540 266:164 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57399ms total)
T4540 266:164 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57399ms total)
T4540 266:164 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57399ms total)
T4540 266:166 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57399ms total)
T4540 266:166 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0001ms, 57400ms total)
T4540 266:167 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57401ms total)
T4540 266:168 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57401ms total)
T4540 266:169 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57402ms total)
T4540 266:169 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57402ms total)
T4540 266:170 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57402ms total)
T4540 266:170 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57402ms total)
T4540 266:170 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57402ms total)
T4540 266:170 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57402ms total)
T4540 266:170 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0002ms, 57404ms total)
T4540 266:172 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57405ms total)
T4540 266:173 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57406ms total)
T4540 266:174 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57407ms total)
T4540 266:393 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0002ms, 57409ms total)
T4540 266:395 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57410ms total)
T4540 266:403 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57410ms total)
T4540 266:403 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57410ms total)
T4540 266:403 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57410ms total)
T4540 266:405 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57410ms total)
T4540 266:405 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57410ms total)
T4540 266:406 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57410ms total)
T4540 266:407 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57411ms total)
T4540 266:407 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57411ms total)
T4540 266:408 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57411ms total)
T4540 266:408 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57412ms total)
T4540 266:409 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57412ms total)
T4540 266:409 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 57414ms total)
T4540 266:411 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57414ms total)
T4540 266:738 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57415ms total)
T4540 266:739 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57416ms total)
T4540 266:749 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57416ms total)
T4540 266:749 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57416ms total)
T4540 266:750 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57417ms total)
T4540 266:752 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57417ms total)
T4540 266:752 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57417ms total)
T4540 266:753 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57419ms total)
T4540 266:754 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 57420ms total)
T4540 266:755 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57420ms total)
T4540 266:755 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57420ms total)
T4540 266:755 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57420ms total)
T4540 266:755 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57420ms total)
T4540 266:755 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57420ms total)
T4540 266:756 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57420ms total)
T4540 266:756 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57420ms total)
T4540 266:756 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57420ms total)
T4540 266:756 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57421ms total)
T4540 266:757 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57422ms total)
T4540 266:758 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57423ms total)
T4540 266:759 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0000ms, 57423ms total)
T4540 266:916 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0001ms, 57424ms total)
T4540 266:917 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 06 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57425ms total)
T4540 266:928 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0001ms, 57426ms total)
T4540 266:929 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57426ms total)
T4540 266:929 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57426ms total)
T4540 266:932 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57426ms total)
T4540 266:932 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57426ms total)
T4540 266:933 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57426ms total)
T4540 266:933 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57426ms total)
T4540 266:933 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57426ms total)
T4540 266:933 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57426ms total)
T4540 266:934 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57427ms total)
T4540 266:934 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0001ms, 57428ms total)
T4540 266:935 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57428ms total)
T4540 266:935 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0000ms, 57428ms total)
T4540 266:935 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57428ms total)
T4540 266:935 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0001ms, 57429ms total)
T4540 266:936 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57429ms total)
T4540 266:936 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57430ms total)
T4540 266:937 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0001ms, 57431ms total)
T4540 266:938 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57432ms total)
T4540 266:939 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0001ms, 57433ms total)
T4540 267:298 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 06 00 00  returns 0x04 (0000ms, 57433ms total)
T4540 267:298 JLINK_WriteMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) - Data: 01 02 00 00 -- CPU_WriteMem(4 bytes @ 0x50000414)  returns 0x04 (0001ms, 57434ms total)
T4540 267:307 JLINK_ReadMemEx(0x0800B3DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3DE) - Data: FD F7  returns 0x02 (0000ms, 57434ms total)
T4540 267:307 JLINK_ReadMemEx(0x0800B3E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B3E0) - Data: 97 F9 FD F7 A1 F8 2E 4E 01 21 00 22 89 02 30 46 ...  returns 0x3C (0000ms, 57434ms total)
T4540 267:307 JLINK_ReadMemEx(0x0800B3E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B3E0) - Data: 97 F9  returns 0x02 (0000ms, 57434ms total)
T4540 267:311 JLINK_ReadMemEx(0x20000168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000168) - Data: 00 00 00 00  returns 0x04 (0000ms, 57434ms total)
T4540 267:311 JLINK_ReadMemEx(0x20000174, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000174) - Data: 00 00 00 00  returns 0x04 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x20000170, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000170) - Data: 00  returns 0x01 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x20000160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000160) - Data: 00 00 00 00  returns 0x04 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x2000125C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x2000125C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000070) - Data: 00  returns 0x01 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x200000A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A6) - Data: 00 00  returns 0x02 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x200000C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000C4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57434ms total)
T4540 267:312 JLINK_ReadMemEx(0x20000089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000089) - Data: 00  returns 0x01 (0000ms, 57434ms total)
T4540 267:313 JLINK_ReadMemEx(0x200000D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x200000D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 0C E5  returns 0x02 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x200000A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A4) - Data: 00 00  returns 0x02 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 57435ms total)
T4540 267:313 JLINK_ReadMemEx(0x20000084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000084) - Data: 00  returns 0x01 (0001ms, 57436ms total)
T4540 267:314 JLINK_ReadMemEx(0x20000164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000164) - Data: 00 00 00 00  returns 0x04 (0000ms, 57436ms total)
T4540 267:314 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 52 03  returns 0x02 (0000ms, 57436ms total)
T4540 267:314 JLINK_ReadMemEx(0x2000008A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008A) - Data: 00  returns 0x01 (0000ms, 57436ms total)
T4540 267:314 JLINK_ReadMemEx(0x50000400, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x50000400) - Data: 71 33 17 F5 01 00 00 00 00 00 00 00 04 44 80 00 ...  returns 0x14 (0001ms, 57437ms total)
T4540 267:315 JLINK_ReadMemEx(0x50000414, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000414) - Data: 01 02 00 00  returns 0x04 (0000ms, 57437ms total)
T4540 267:315 JLINK_ReadMemEx(0x5000041C, 0x0008 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(8 bytes @ 0x5000041C) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 57438ms total)
T4540 267:316 JLINK_ReadMemEx(0x50000424, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x50000424) - Data: 00 00 00 00  returns 0x04 (0002ms, 57440ms total)
T4540 269:121 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0015ms, 57455ms total)
T4540 269:121  (0015ms, 57455ms total)
T4540 269:121 Closed (0015ms, 57455ms total)