zhyinch
2020-11-13 52cbcc608dbcf47139a118bf3baf2731fd7ae0db
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
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
T4B74 449:110 SEGGER J-Link V6.46 Log File (0001ms, 15572ms total)
T4B74 449:110 DLL Compiled: May 23 2019 17:49:56 (0001ms, 15572ms total)
T4B74 449:110 Logging started @ 2020-11-13 12:43 (0001ms, 15572ms total)
T4B74 449:111 JLINK_SetWarnOutHandler(...) (0000ms, 15572ms total)
T4B74 449:111 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 (0039ms, 15611ms total)
T4B74 449:111 WEBSRV Webserver running on local port 19081 (0039ms, 15611ms total)
T4B74 449:111   returns O.K. (0039ms, 15611ms total)
T4B74 449:150 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 15611ms total)
T4B74 449:152 JLINK_TIF_GetAvailable(...) (0000ms, 15611ms total)
T4B74 449:152 JLINK_SetErrorOutHandler(...) (0000ms, 15611ms total)
T4B74 449:152 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0004ms, 15615ms total)
T4B74 449:156 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0001ms, 15616ms total)
T4B74 449:157 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetFirmwareString(...) (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetCompileDateTime() (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetFirmwareString(...) (0000ms, 15616ms total)
T4B74 449:157 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 15616ms total)
T4B74 449:157 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 15618ms total)
T4B74 449:159 JLINK_SetSpeed(5000) (0001ms, 15619ms total)
T4B74 449:160 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: 0x00002C08 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(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 (0203ms, 15822ms total)
T4B74 449:363 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15822ms total)
T4B74 449:363 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 15822ms total)
T4B74 449:363 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 15822ms total)
T4B74 449:363 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 15822ms total)
T4B74 449:363 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15822ms total)
T4B74 449:363 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, 15823ms total)
T4B74 449:364 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15823ms total)
T4B74 449:365 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15824ms total)
T4B74 449:365 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, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 15825ms total)
T4B74 449:366 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0001ms, 15826ms total)
T4B74 449:367 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15826ms total)
T4B74 449:367 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 15826ms total)
T4B74 449:367 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) (0077ms, 15903ms total)
T4B74 449:445 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15904ms total)
T4B74 449:445 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15904ms total)
T4B74 449:445 JLINK_Halt()  returns 0x00 (0000ms, 15904ms total)
T4B74 449:445 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 15905ms total)
T4B74 449:446 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 15906ms total)
T4B74 449:447 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 15907ms total)
T4B74 449:448 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 15907ms total)
T4B74 449:448 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 15907ms total)
T4B74 449:448 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 15907ms total)
T4B74 449:448 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 15907ms total)
T4B74 449:448 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 15907ms total)
T4B74 449:448 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 15908ms total)
T4B74 449:449 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15908ms total)
T4B74 449:449 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15908ms total)
T4B74 449:534 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 15908ms total)
T4B74 449:534 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, 15981ms total)
T4B74 449:608 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15981ms total)
T4B74 449:608 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15981ms total)
T4B74 449:608 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, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 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, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 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, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 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 0D 25 00 08 ...  returns 0x3C (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 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 0D 25 00 08 ...  returns 0x3C (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 15983ms total)
T4B74 449:610 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0001ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 0D 25 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 0D 25 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 15984ms total)
T4B74 451:211 JLINK_ReadMemEx(0x080000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E2) - Data: FE E7  returns 0x02 (0000ms, 15984ms total)
T4B74 451:763 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 15985ms total)
T4B74 451:764 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 15985ms total)
T4B74 451:790 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 15986ms total)
T4B74 451:799 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 15986ms total)
T4B74 451:799 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 15986ms total)
T4B74 451:805 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0000ms, 15986ms total)
T4B74 451:806 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0000ms, 15986ms total)
T4B74 451:806 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0000ms, 15986ms total)
T4B74 451:810 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 15987ms total)
T4B74 451:811 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 15987ms total)
T4B74 451:811 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 15987ms total)
T4B74 451:815 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 15988ms total)
T4B74 451:816 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0000ms, 15988ms total)
T4B74 451:816 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0000ms, 15988ms total)
T4B74 451:820 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 15988ms total)
T4B74 451:820 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 15989ms total)
T4B74 451:821 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 15989ms total)
T4B74 451:825 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 15990ms total)
T4B74 451:827 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 15990ms total)
T4B74 451:827 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 15990ms total)
T4B74 451:832 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 15990ms total)
T4B74 451:832 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 15990ms total)
T4B74 451:832 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 15990ms total)
T4B74 451:837 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0002ms, 15992ms total)
T4B74 451:839 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 15992ms total)
T4B74 451:839 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 15992ms total)
T4B74 451:845 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15992ms total)
T4B74 451:845 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15992ms total)
T4B74 451:846 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15993ms total)
T4B74 451:846 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15993ms total)
T4B74 451:846 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15993ms total)
T4B74 451:846 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 15993ms total)
T4560 451:893 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 15993ms total)
T4560 451:893 JLINK_SetBPEx(Addr = 0x0800B240, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 15993ms total)
T4560 451:893 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 15993ms total)
T4560 451:893 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, 16000ms total)
T4560 452:001 JLINK_IsHalted()  returns TRUE (0004ms, 16004ms total)
T4560 452:005 JLINK_Halt()  returns 0x00 (0000ms, 16000ms total)
T4560 452:005 JLINK_IsHalted()  returns TRUE (0000ms, 16000ms total)
T4560 452:005 JLINK_IsHalted()  returns TRUE (0000ms, 16000ms total)
T4560 452:005 JLINK_IsHalted()  returns TRUE (0000ms, 16000ms total)
T4560 452:005 JLINK_ReadReg(R15 (PC))  returns 0x0800B240 (0000ms, 16000ms total)
T4560 452:005 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 16000ms total)
T4560 452:005 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 16000ms total)
T4560 452:005 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 16000ms total)
T4560 452:005 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16001ms total)
T4560 452:006 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16002ms total)
T4560 452:007 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R0)  returns 0x0800B241 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R1)  returns 0x20001A20 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R3)  returns 0x0800A5ED (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R4)  returns 0x0800B5D0 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R6)  returns 0x0800B5D0 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R14)  returns 0x080059A5 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(R15 (PC))  returns 0x0800B240 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16003ms total)
T4560 452:008 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16003ms total)
T4B74 452:009 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 16005ms total)
T4B74 452:011 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0000ms, 16005ms total)
T4B74 452:011 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 16007ms total)
T4B74 452:013 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 16007ms total)
T4B74 452:013 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0000ms, 16007ms total)
T4B74 452:013 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0002ms, 16009ms total)
T4B74 452:015 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 16009ms total)
T4B74 452:015 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0002ms, 16011ms total)
T4B74 452:017 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16011ms total)
T4B74 452:017 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16011ms total)
T4560 452:619 JLINK_ReadMemEx(0x0800B240, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B240) -- Updating C cache (64 bytes @ 0x0800B240) -- Read from C cache (2 bytes @ 0x0800B240) - Data: FB F7  returns 0x02 (0001ms, 16012ms total)
T4560 452:620 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 16012ms total)
T4560 452:620 JLINK_Go() -- 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) (0005ms, 16017ms total)
T4560 452:727 JLINK_IsHalted()  returns TRUE (0004ms, 16021ms total)
T4560 452:731 JLINK_Halt()  returns 0x00 (0000ms, 16017ms total)
T4560 452:731 JLINK_IsHalted()  returns TRUE (0000ms, 16017ms total)
T4560 452:731 JLINK_IsHalted()  returns TRUE (0000ms, 16017ms total)
T4560 452:731 JLINK_IsHalted()  returns TRUE (0000ms, 16017ms total)
T4560 452:731 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 16017ms total)
T4560 452:731 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 16017ms total)
T4560 452:731 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 16017ms total)
T4560 452:731 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16018ms total)
T4560 452:732 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16019ms total)
T4560 452:733 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R0)  returns 0x0000000A (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R1)  returns 0x00000400 (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R2)  returns 0xE000E100 (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R4)  returns 0x0800B5D0 (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16020ms total)
T4560 452:734 JLINK_ReadReg(R6)  returns 0x0800B5D0 (0001ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R14)  returns 0x08008A5F (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16021ms total)
T4560 452:735 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16021ms total)
T4B74 452:735 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 16023ms total)
T4B74 452:737 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0001ms, 16024ms total)
T4B74 452:738 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 16026ms total)
T4B74 452:740 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 16026ms total)
T4B74 452:740 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0000ms, 16026ms total)
T4B74 452:740 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0003ms, 16029ms total)
T4B74 452:743 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 16029ms total)
T4B74 452:743 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0002ms, 16031ms total)
T4B74 452:745 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16031ms total)
T4B74 452:745 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16031ms total)
T4B74 452:745 JLINK_ReadMemEx(0x0800B26A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B240) -- Updating C cache (64 bytes @ 0x0800B240) -- Read from C cache (2 bytes @ 0x0800B26A) - Data: FD F7  returns 0x02 (0002ms, 16033ms total)
T4B74 452:747 JLINK_ReadMemEx(0x0800B26C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B280) -- Updating C cache (64 bytes @ 0x0800B280) -- Read from C cache (60 bytes @ 0x0800B26C) - Data: CB FC FD F7 A7 FC FD F7 AF FB 05 26 01 22 36 07 ...  returns 0x3C (0002ms, 16035ms total)
T4B74 452:749 JLINK_ReadMemEx(0x0800B26C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26C) - Data: CB FC  returns 0x02 (0000ms, 16035ms total)
T4B74 452:749 JLINK_ReadMemEx(0x0800B26E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26E) - Data: FD F7  returns 0x02 (0000ms, 16035ms total)
T4B74 452:749 JLINK_ReadMemEx(0x0800B270, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B270) - Data: A7 FC FD F7 AF FB 05 26 01 22 36 07 D1 03 30 46 ...  returns 0x3C (0000ms, 16035ms total)
T4B74 452:749 JLINK_ReadMemEx(0x0800B270, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B270) - Data: A7 FC  returns 0x02 (0000ms, 16035ms total)
T4560 454:059 JLINK_ReadMemEx(0x0800B26A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26A) - Data: FD F7  returns 0x02 (0000ms, 16035ms total)
T4560 454:059 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B26A) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0800B26C) -- Simulated  returns 0x00 (0005ms, 16040ms total)
T4560 454:064 JLINK_ReadReg(R15 (PC))  returns 0x08008C04 (0000ms, 16040ms total)
T4560 454:064 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 16040ms total)
T4560 454:064 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 16040ms total)
T4560 454:064 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 16046ms total)
T4560 454:171 JLINK_IsHalted()  returns FALSE (0001ms, 16047ms total)
T4560 454:272 JLINK_IsHalted()  returns FALSE (0001ms, 16047ms total)
T4560 454:374 JLINK_IsHalted()  returns FALSE (0001ms, 16047ms total)
T4560 454:476 JLINK_IsHalted()  returns FALSE (0001ms, 16047ms total)
T4B74 454:578 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 16048ms total)
T4B74 454:580 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16049ms total)
T4B74 454:581 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16050ms total)
T4B74 454:582 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0002ms, 16052ms total)
T4B74 454:584 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 02  returns 0x01 (0001ms, 16053ms total)
T4B74 454:586 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16054ms total)
T4B74 454:587 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0002ms, 16056ms total)
T4B74 454:589 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16057ms total)
T4B74 454:590 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16058ms total)
T4B74 454:592 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16059ms total)
T4560 454:593 JLINK_IsHalted()  returns FALSE (0001ms, 16060ms total)
T4560 454:695 JLINK_IsHalted()  returns FALSE (0000ms, 16059ms total)
T4560 454:796 JLINK_IsHalted()  returns FALSE (0001ms, 16060ms total)
T4560 454:898 JLINK_IsHalted()  returns FALSE (0001ms, 16060ms total)
T4560 455:000 JLINK_IsHalted()  returns FALSE (0001ms, 16060ms total)
T4B74 455:102 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 16060ms total)
T4B74 455:103 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16061ms total)
T4B74 455:105 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16062ms total)
T4B74 455:106 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 16063ms total)
T4B74 455:108 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16064ms total)
T4B74 455:110 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16065ms total)
T4B74 455:111 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0002ms, 16067ms total)
T4B74 455:113 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16068ms total)
T4B74 455:115 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16069ms total)
T4B74 455:116 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16070ms total)
T4560 455:117 JLINK_IsHalted()  returns FALSE (0001ms, 16071ms total)
T4560 455:219 JLINK_IsHalted()  returns FALSE (0001ms, 16071ms total)
T4560 455:320 JLINK_IsHalted()  returns FALSE (0001ms, 16071ms total)
T4560 455:421 JLINK_IsHalted()  returns FALSE (0001ms, 16071ms total)
T4560 455:524 JLINK_IsHalted()  returns FALSE (0000ms, 16070ms total)
T4B74 455:625 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16071ms total)
T4B74 455:627 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16072ms total)
T4B74 455:628 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 80 3F  returns 0x04 (0002ms, 16074ms total)
T4B74 455:630 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 16074ms total)
T4B74 455:630 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 16076ms total)
T4B74 455:632 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16077ms total)
T4B74 455:633 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16078ms total)
T4B74 455:634 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16079ms total)
T4B74 455:636 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16079ms total)
T4B74 455:637 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16079ms total)
T4560 455:638 JLINK_IsHalted()  returns FALSE (0000ms, 16079ms total)
T4560 455:740 JLINK_IsHalted()  returns FALSE (0001ms, 16080ms total)
T4560 455:841 JLINK_IsHalted()  returns FALSE (0002ms, 16081ms total)
T4560 455:943 JLINK_IsHalted()  returns FALSE (0001ms, 16080ms total)
T4560 456:045 JLINK_IsHalted()  returns FALSE (0002ms, 16081ms total)
T4B74 456:147 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16080ms total)
T4B74 456:149 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16081ms total)
T4B74 456:150 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0001ms, 16082ms total)
T4B74 456:152 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0001ms, 16083ms total)
T4B74 456:154 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 16085ms total)
T4B74 456:156 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 16085ms total)
T4B74 456:156 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16086ms total)
T4B74 456:158 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16087ms total)
T4B74 456:160 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16087ms total)
T4B74 456:160 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16088ms total)
T4560 456:161 JLINK_IsHalted()  returns FALSE (0001ms, 16089ms total)
T4560 456:264 JLINK_IsHalted()  returns FALSE (0001ms, 16090ms total)
T4560 456:365 JLINK_IsHalted()  returns FALSE (0001ms, 16090ms total)
T4560 456:466 JLINK_IsHalted()  returns FALSE (0000ms, 16089ms total)
T4560 456:568 JLINK_IsHalted()  returns FALSE (0001ms, 16090ms total)
T4B74 456:670 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16090ms total)
T4B74 456:671 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16091ms total)
T4B74 456:672 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16092ms total)
T4B74 456:674 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 16093ms total)
T4B74 456:675 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16094ms total)
T4B74 456:676 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16095ms total)
T4B74 456:677 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0002ms, 16097ms total)
T4B74 456:679 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 16097ms total)
T4B74 456:681 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16098ms total)
T4B74 456:682 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16099ms total)
T4560 456:683 JLINK_IsHalted()  returns FALSE (0002ms, 16101ms total)
T4560 456:785 JLINK_IsHalted()  returns FALSE (0001ms, 16100ms total)
T4560 456:887 JLINK_IsHalted()  returns FALSE (0001ms, 16100ms total)
T4560 456:989 JLINK_IsHalted()  returns FALSE (0001ms, 16100ms total)
T4560 457:091 JLINK_IsHalted()  returns FALSE (0001ms, 16100ms total)
T4B74 457:192 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16100ms total)
T4B74 457:193 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16101ms total)
T4B74 457:195 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16102ms total)
T4B74 457:196 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 16103ms total)
T4B74 457:198 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16104ms total)
T4B74 457:199 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16105ms total)
T4B74 457:200 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16106ms total)
T4B74 457:202 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16107ms total)
T4B74 457:204 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16108ms total)
T4B74 457:205 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16109ms total)
T4560 457:206 JLINK_IsHalted()  returns FALSE (0001ms, 16110ms total)
T4560 457:308 JLINK_IsHalted()  returns FALSE (0001ms, 16110ms total)
T4560 457:410 JLINK_IsHalted()  returns FALSE (0001ms, 16110ms total)
T4560 457:512 JLINK_IsHalted()  returns FALSE (0001ms, 16110ms total)
T4560 457:614 JLINK_IsHalted()  returns FALSE (0000ms, 16109ms total)
T4B74 457:716 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16110ms total)
T4B74 457:717 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 16112ms total)
T4B74 457:719 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16112ms total)
T4B74 457:719 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0002ms, 16114ms total)
T4B74 457:721 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 16114ms total)
T4B74 457:721 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 16116ms total)
T4B74 457:723 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16117ms total)
T4B74 457:724 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0002ms, 16119ms total)
T4B74 457:726 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16120ms total)
T4B74 457:727 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16120ms total)
T4560 457:727 JLINK_IsHalted()  returns FALSE (0001ms, 16121ms total)
T4560 457:830 JLINK_IsHalted()  returns FALSE (0001ms, 16121ms total)
T4560 457:931 JLINK_IsHalted()  returns FALSE (0001ms, 16121ms total)
T4560 458:033 JLINK_IsHalted()  returns FALSE (0001ms, 16121ms total)
T4560 458:135 JLINK_IsHalted()  returns FALSE (0000ms, 16120ms total)
T4B74 458:237 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16121ms total)
T4B74 458:238 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 16123ms total)
T4B74 458:240 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16124ms total)
T4B74 458:241 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 20 40  returns 0x04 (0001ms, 16125ms total)
T4B74 458:242 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 16127ms total)
T4B74 458:244 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 16127ms total)
T4B74 458:244 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16128ms total)
T4B74 458:245 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16129ms total)
T4B74 458:247 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0002ms, 16131ms total)
T4B74 458:249 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16132ms total)
T4560 458:250 JLINK_IsHalted()  returns FALSE (0001ms, 16133ms total)
T4560 458:351 JLINK_IsHalted()  returns FALSE (0001ms, 16133ms total)
T4560 458:453 JLINK_IsHalted()  returns FALSE (0001ms, 16133ms total)
T4560 458:556 JLINK_IsHalted()  returns FALSE (0000ms, 16132ms total)
T4560 458:658 JLINK_IsHalted()  returns FALSE (0000ms, 16132ms total)
T4B74 458:759 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16133ms total)
T4B74 458:760 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16134ms total)
T4B74 458:761 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16135ms total)
T4B74 458:762 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 40 40  returns 0x04 (0001ms, 16136ms total)
T4B74 458:764 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16137ms total)
T4B74 458:765 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16138ms total)
T4B74 458:766 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16139ms total)
T4B74 458:767 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16140ms total)
T4B74 458:768 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 16142ms total)
T4B74 458:770 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16142ms total)
T4560 458:770 JLINK_IsHalted()  returns FALSE (0001ms, 16143ms total)
T4560 458:872 JLINK_IsHalted()  returns FALSE (0001ms, 16143ms total)
T4560 458:974 JLINK_IsHalted()  returns FALSE (0000ms, 16142ms total)
T4560 459:076 JLINK_IsHalted()  returns FALSE (0001ms, 16143ms total)
T4560 459:178 JLINK_IsHalted()  returns FALSE (0001ms, 16143ms total)
T4B74 459:280 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 16142ms total)
T4B74 459:280 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16143ms total)
T4B74 459:281 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16144ms total)
T4B74 459:282 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 60 40  returns 0x04 (0001ms, 16145ms total)
T4B74 459:284 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16146ms total)
T4B74 459:285 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16147ms total)
T4B74 459:286 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16148ms total)
T4B74 459:287 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0002ms, 16150ms total)
T4B74 459:289 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16151ms total)
T4B74 459:290 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16152ms total)
T4560 459:291 JLINK_IsHalted()  returns FALSE (0001ms, 16153ms total)
T4560 459:393 JLINK_IsHalted()  returns FALSE (0001ms, 16153ms total)
T4560 459:495 JLINK_IsHalted()  returns FALSE (0001ms, 16153ms total)
T4560 459:597 JLINK_IsHalted()  returns FALSE (0001ms, 16153ms total)
T4560 459:698 JLINK_IsHalted()  returns FALSE (0001ms, 16153ms total)
T4B74 459:801 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 03  returns 0x01 (0001ms, 16153ms total)
T4B74 459:803 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 16154ms total)
T4B74 459:804 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16155ms total)
T4B74 459:805 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 40  returns 0x04 (0001ms, 16156ms total)
T4B74 459:807 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16157ms total)
T4B74 459:808 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16158ms total)
T4B74 459:809 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16159ms total)
T4B74 459:810 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16160ms total)
T4B74 459:812 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16161ms total)
T4B74 459:813 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16162ms total)
T4560 459:814 JLINK_IsHalted()  returns FALSE (0001ms, 16163ms total)
T4560 459:916 JLINK_IsHalted()  returns FALSE (0001ms, 16163ms total)
T4560 460:019 JLINK_IsHalted()  returns FALSE (0001ms, 16163ms total)
T4560 460:120 JLINK_IsHalted()  returns FALSE (0002ms, 16164ms total)
T4560 460:222 JLINK_IsHalted()  returns FALSE (0001ms, 16163ms total)
T4B74 460:324 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16163ms total)
T4B74 460:328 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16164ms total)
T4B74 460:329 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16165ms total)
T4B74 460:330 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 90 40  returns 0x04 (0001ms, 16166ms total)
T4B74 460:332 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 02  returns 0x01 (0001ms, 16167ms total)
T4B74 460:333 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16168ms total)
T4B74 460:334 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16169ms total)
T4B74 460:335 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16170ms total)
T4B74 460:336 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16171ms total)
T4B74 460:337 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16172ms total)
T4560 460:338 JLINK_IsHalted()  returns FALSE (0000ms, 16172ms total)
T4560 460:440 JLINK_IsHalted()  returns FALSE (0001ms, 16173ms total)
T4560 460:541 JLINK_IsHalted()  returns FALSE (0001ms, 16173ms total)
T4560 460:642 JLINK_IsHalted()  returns FALSE (0001ms, 16173ms total)
T4560 460:745 JLINK_IsHalted()  returns FALSE (0000ms, 16172ms total)
T4B74 460:846 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16173ms total)
T4B74 460:848 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16174ms total)
T4B74 460:849 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16175ms total)
T4B74 460:850 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 A0 40  returns 0x04 (0002ms, 16177ms total)
T4B74 460:852 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16178ms total)
T4B74 460:853 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 16180ms total)
T4B74 460:855 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0002ms, 16182ms total)
T4B74 460:857 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16183ms total)
T4B74 460:858 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 16185ms total)
T4B74 460:860 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16185ms total)
T4560 460:860 JLINK_IsHalted()  returns FALSE (0001ms, 16186ms total)
T4560 460:962 JLINK_IsHalted()  returns FALSE (0001ms, 16186ms total)
T4560 461:064 JLINK_IsHalted()  returns FALSE (0001ms, 16186ms total)
T4560 461:166 JLINK_IsHalted()  returns FALSE (0001ms, 16186ms total)
T4560 461:268 JLINK_IsHalted()  returns FALSE (0000ms, 16185ms total)
T4B74 461:370 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 16185ms total)
T4B74 461:370 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0002ms, 16187ms total)
T4B74 461:372 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16188ms total)
T4B74 461:373 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 B0 40  returns 0x04 (0002ms, 16190ms total)
T4B74 461:375 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16191ms total)
T4B74 461:376 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16192ms total)
T4B74 461:377 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 16192ms total)
T4B74 461:379 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 16192ms total)
T4B74 461:379 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0002ms, 16194ms total)
T4B74 461:381 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16195ms total)
T4560 461:382 JLINK_IsHalted()  returns FALSE (0001ms, 16196ms total)
T4560 461:484 JLINK_IsHalted()  returns FALSE (0001ms, 16196ms total)
T4560 461:585 JLINK_IsHalted()  returns FALSE (0001ms, 16196ms total)
T4560 461:687 JLINK_IsHalted()  returns FALSE (0001ms, 16196ms total)
T4560 461:789 JLINK_IsHalted()  returns FALSE (0001ms, 16196ms total)
T4B74 461:890 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16196ms total)
T4B74 461:891 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16197ms total)
T4B74 461:892 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16198ms total)
T4B74 461:893 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 40  returns 0x04 (0001ms, 16199ms total)
T4B74 461:895 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16200ms total)
T4B74 461:896 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 16202ms total)
T4B74 461:898 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16203ms total)
T4B74 461:899 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16204ms total)
T4B74 461:901 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16205ms total)
T4B74 461:902 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16206ms total)
T4560 461:903 JLINK_IsHalted()  returns FALSE (0001ms, 16207ms total)
T4560 462:005 JLINK_IsHalted()  returns FALSE (0001ms, 16207ms total)
T4560 462:107 JLINK_IsHalted()  returns FALSE (0000ms, 16206ms total)
T4560 462:208 JLINK_IsHalted()  returns FALSE (0001ms, 16207ms total)
T4560 462:310 JLINK_IsHalted()  returns FALSE (0001ms, 16207ms total)
T4B74 462:412 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16207ms total)
T4B74 462:413 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16208ms total)
T4B74 462:414 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16209ms total)
T4B74 462:415 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 D0 40  returns 0x04 (0001ms, 16210ms total)
T4B74 462:417 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16211ms total)
T4B74 462:418 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16212ms total)
T4B74 462:419 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16213ms total)
T4B74 462:420 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16214ms total)
T4B74 462:422 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16215ms total)
T4B74 462:423 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16216ms total)
T4560 462:424 JLINK_IsHalted()  returns FALSE (0001ms, 16217ms total)
T4560 462:526 JLINK_IsHalted()  returns FALSE (0000ms, 16216ms total)
T4560 462:628 JLINK_IsHalted()  returns FALSE (0000ms, 16216ms total)
T4560 462:729 JLINK_IsHalted()  returns FALSE (0001ms, 16217ms total)
T4560 462:832 JLINK_IsHalted()  returns FALSE (0001ms, 16217ms total)
T4B74 462:934 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16217ms total)
T4B74 462:935 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0002ms, 16219ms total)
T4B74 462:937 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16220ms total)
T4B74 462:938 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 E0 40  returns 0x04 (0000ms, 16220ms total)
T4B74 462:940 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16221ms total)
T4B74 462:941 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16222ms total)
T4B74 462:942 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 16222ms total)
T4B74 462:944 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 16222ms total)
T4B74 462:944 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 16224ms total)
T4B74 462:946 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 16224ms total)
T4560 462:946 JLINK_IsHalted()  returns FALSE (0001ms, 16225ms total)
T4560 463:049 JLINK_IsHalted()  returns FALSE (0001ms, 16225ms total)
T4560 463:151 JLINK_IsHalted()  returns FALSE (0000ms, 16224ms total)
T4560 463:253 JLINK_IsHalted()  returns FALSE (0001ms, 16225ms total)
T4560 463:354 JLINK_IsHalted()  returns FALSE (0001ms, 16225ms total)
T4B74 463:456 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16225ms total)
T4B74 463:457 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16226ms total)
T4B74 463:458 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16226ms total)
T4B74 463:458 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 F0 40  returns 0x04 (0003ms, 16229ms total)
T4B74 463:461 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16230ms total)
T4B74 463:462 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 16232ms total)
T4B74 463:464 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 16232ms total)
T4B74 463:466 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16233ms total)
T4B74 463:468 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16233ms total)
T4B74 463:468 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0002ms, 16235ms total)
T4560 463:471 JLINK_IsHalted()  returns FALSE (0000ms, 16235ms total)
T4560 463:572 JLINK_IsHalted()  returns FALSE (0001ms, 16236ms total)
T4560 463:674 JLINK_IsHalted()  returns FALSE (0001ms, 16236ms total)
T4560 463:775 JLINK_IsHalted()  returns FALSE (0002ms, 16237ms total)
T4560 463:877 JLINK_IsHalted()  returns FALSE (0001ms, 16236ms total)
T4B74 463:979 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16236ms total)
T4B74 463:980 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16237ms total)
T4B74 463:981 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16238ms total)
T4B74 463:982 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 08 41  returns 0x04 (0002ms, 16240ms total)
T4B74 463:984 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 16240ms total)
T4B74 463:984 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0003ms, 16243ms total)
T4B74 463:987 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 16243ms total)
T4B74 463:987 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0002ms, 16245ms total)
T4B74 463:990 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16246ms total)
T4B74 463:991 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16247ms total)
T4560 463:992 JLINK_IsHalted()  returns FALSE (0001ms, 16248ms total)
T4560 464:094 JLINK_IsHalted()  returns FALSE (0001ms, 16248ms total)
T4560 464:196 JLINK_IsHalted()  returns FALSE (0000ms, 16247ms total)
T4560 464:297 JLINK_IsHalted()  returns FALSE (0001ms, 16248ms total)
T4560 464:399 JLINK_IsHalted()  returns FALSE (0001ms, 16248ms total)
T4B74 464:501 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 16248ms total)
T4B74 464:502 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16249ms total)
T4B74 464:503 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16250ms total)
T4B74 464:504 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 10 41  returns 0x04 (0001ms, 16251ms total)
T4B74 464:506 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16252ms total)
T4B74 464:508 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16253ms total)
T4B74 464:509 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 16254ms total)
T4B74 464:510 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 16255ms total)
T4B74 464:511 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16256ms total)
T4B74 464:512 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 16257ms total)
T4560 464:513 JLINK_IsHalted()  returns FALSE (0001ms, 16258ms total)
T4560 464:615 JLINK_IsHalted()  returns FALSE (0001ms, 16258ms total)
T4560 464:717 JLINK_IsHalted()  returns FALSE (0001ms, 16258ms total)
T4560 464:818 JLINK_IsHalted()  returns FALSE (0000ms, 16257ms total)
T4560 464:920 JLINK_IsHalted()  returns FALSE (0001ms, 16258ms total)
T4B74 465:022 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 16257ms total)
T4B74 465:022 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16258ms total)
T4B74 465:023 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16259ms total)
T4B74 465:024 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 18 41  returns 0x04 (0000ms, 16259ms total)
T4B74 465:025 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16260ms total)
T4B74 465:026 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16261ms total)
T4B74 465:027 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 16261ms total)
T4B74 465:028 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16262ms total)
T4B74 465:031 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 16262ms total)
T4B74 465:031 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16263ms total)
T4560 465:032 JLINK_IsHalted()  returns FALSE (0000ms, 16263ms total)
T4560 465:134 JLINK_IsHalted()  returns FALSE (0001ms, 16264ms total)
T4560 465:236 JLINK_IsHalted()  returns FALSE (0001ms, 16264ms total)
T4560 465:338 JLINK_IsHalted()  returns FALSE (0001ms, 16264ms total)
T4560 465:441 JLINK_IsHalted()  returns FALSE (0000ms, 16263ms total)
T4B74 465:543 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0101ms, 16364ms total)
T4B74 465:644 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0303ms, 16667ms total)
T4B74 465:948 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 16669ms total)
T4B74 465:952 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 16670ms total)
T4B74 465:953 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16671ms total)
T4B74 465:954 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 28 41  returns 0x04 (0001ms, 16672ms total)
T4B74 465:956 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 16673ms total)
T4B74 465:957 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 16674ms total)
T4B74 465:958 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 16675ms total)
T4B74 465:959 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 16676ms total)
T4B74 465:960 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16677ms total)
T4B74 465:961 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 16678ms total)
T4560 465:962 JLINK_IsHalted()  returns FALSE (0001ms, 16679ms total)
T4B74 466:073 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0101ms, 16779ms total)
T4B74 466:174 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0296ms, 17075ms total)
T4B74 466:470 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 17077ms total)
T4B74 466:472 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 17078ms total)
T4B74 466:473 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17079ms total)
T4B74 466:474 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 30 41  returns 0x04 (0000ms, 17079ms total)
T4B74 466:475 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17080ms total)
T4B74 466:476 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17081ms total)
T4B74 466:477 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17082ms total)
T4B74 466:478 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 17082ms total)
T4B74 466:478 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17083ms total)
T4B74 466:479 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17084ms total)
T4560 466:480 JLINK_IsHalted()  returns FALSE (0001ms, 17085ms total)
T4B74 466:582 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0101ms, 17185ms total)
T4B74 466:683 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0267ms, 17452ms total)
T4B74 466:950 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 17454ms total)
T4B74 466:953 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0001ms, 17455ms total)
T4B74 466:954 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17456ms total)
T4B74 466:955 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 38 41  returns 0x04 (0001ms, 17457ms total)
T4B74 466:957 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17458ms total)
T4B74 466:958 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 17458ms total)
T4B74 466:958 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0002ms, 17460ms total)
T4B74 466:960 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 17460ms total)
T4B74 466:961 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17461ms total)
T4B74 466:962 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17462ms total)
T4560 466:963 JLINK_IsHalted()  returns FALSE (0001ms, 17463ms total)
T4560 467:066 JLINK_IsHalted()  returns ERROR (0303ms, 17765ms total)
T4560 467:370 JLINK_Halt()  returns 0x00 (0103ms, 17565ms total)
T4560 467:473 JLINK_IsHalted()  returns TRUE (0000ms, 17565ms total)
T4560 467:473 JLINK_IsHalted()  returns TRUE (0000ms, 17565ms total)
T4560 467:473 JLINK_IsHalted()  returns TRUE (0000ms, 17565ms total)
T4560 467:473 JLINK_ReadReg(R15 (PC))  returns 0x08005958 (0000ms, 17565ms total)
T4560 467:473 JLINK_ReadReg(XPSR)  returns 0x4100001D (0000ms, 17565ms total)
T4560 467:473 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 17565ms total)
T4560 467:473 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 17566ms total)
T4560 467:474 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17567ms total)
T4560 467:475 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R1)  returns 0x412ADC5E (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R6)  returns 0x00000001 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R7)  returns 0xD6E2F000 (0000ms, 17568ms total)
T4560 467:476 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R13 (SP))  returns 0x20001988 (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R14)  returns 0x080058E3 (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(R15 (PC))  returns 0x08005958 (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(XPSR)  returns 0x4100001D (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(MSP)  returns 0x20001988 (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17568ms total)
T4560 467:477 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17568ms total)
T4B74 467:477 JLINK_ReadMemEx(0x200019B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001980) -- Updating C cache (64 bytes @ 0x20001980) -- Read from C cache (4 bytes @ 0x200019B4) - Data: 73 56 00 08  returns 0x04 (0003ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019A0) - Data: D4 00 00 20  returns 0x04 (0000ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019AC) - Data: 01 00 00 00  returns 0x04 (0000ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019B0) - Data: 00 10 00 00  returns 0x04 (0000ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019B4) - Data: 73 56 00 08  returns 0x04 (0000ms, 17571ms total)
T4B74 467:480 JLINK_ReadMemEx(0x200019C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200019C0) -- Updating C cache (64 bytes @ 0x200019C0) -- Read from C cache (4 bytes @ 0x200019C4) - Data: AF 99 00 08  returns 0x04 (0002ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019C4) - Data: AF 99 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019CC) - Data: 99 6D 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019C8) - Data: D4 00 00 20  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019CC) - Data: 99 6D 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019E4) - Data: 03 6F 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019D4) - Data: 70 14 00 20  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019D8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019DC) - Data: 00 04 00 50  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019E0) - Data: 00 10 00 00  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019E4) - Data: 03 6F 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019EC) - Data: 79 88 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019E8) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019EC) - Data: 79 88 00 08  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x200019F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200019F4) - Data: F9 FF FF FF  returns 0x04 (0000ms, 17573ms total)
T4B74 467:482 JLINK_ReadMemEx(0x20001A10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (4 bytes @ 0x20001A10) - Data: 46 72 00 08  returns 0x04 (0002ms, 17575ms total)
T4B74 467:484 JLINK_ReadMemEx(0x20001A14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A14) - Data: 00 00 00 61  returns 0x04 (0000ms, 17575ms total)
T4B74 467:484 JLINK_ReadMemEx(0x20001A0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A0C) - Data: 33 B3 00 08  returns 0x04 (0000ms, 17575ms total)
T4B74 467:484 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0001ms, 17576ms total)
T4B74 467:485 JLINK_ReadMemEx(0x20001A10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A10) - Data: 46 72 00 08  returns 0x04 (0000ms, 17576ms total)
T4B74 467:485 JLINK_ReadMemEx(0x20001A14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A14) - Data: 00 00 00 61  returns 0x04 (0000ms, 17576ms total)
T4B74 467:485 JLINK_ReadMemEx(0x20001A1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A1C) - Data: 33 B3 00 08  returns 0x04 (0000ms, 17576ms total)
T4B74 467:485 JLINK_ReadMemEx(0x20001A18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A18) - Data: D4 00 00 20  returns 0x04 (0000ms, 17576ms total)
T4B74 467:485 JLINK_ReadMemEx(0x20001A1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A1C) - Data: 33 B3 00 08  returns 0x04 (0000ms, 17576ms total)
T4B74 467:486 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 17578ms total)
T4B74 467:488 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0000ms, 17578ms total)
T4B74 467:488 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17580ms total)
T4B74 467:490 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 38 41  returns 0x04 (0000ms, 17580ms total)
T4B74 467:490 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 17580ms total)
T4B74 467:490 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 17582ms total)
T4B74 467:492 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 17582ms total)
T4B74 467:492 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0002ms, 17584ms total)
T4B74 467:494 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17584ms total)
T4B74 467:494 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17584ms total)
T4B74 467:494 JLINK_ReadMemEx(0x08005958, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08005940) -- Updating C cache (128 bytes @ 0x08005940) -- Read from C cache (60 bytes @ 0x08005958) - Data: 69 41 FF F7 A2 FF DF E7 10 B5 00 29 04 DB 01 24 ...  returns 0x3C (0002ms, 17586ms total)
T4B74 467:496 JLINK_ReadMemEx(0x08005958, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005958) - Data: 69 41  returns 0x02 (0000ms, 17586ms total)
T4B74 467:496 JLINK_ReadMemEx(0x0800595A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800595A) - Data: FF F7  returns 0x02 (0000ms, 17586ms total)
T4B74 467:496 JLINK_ReadMemEx(0x0800595A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800595A) - Data: FF F7  returns 0x02 (0000ms, 17586ms total)
T4B74 467:496 JLINK_ReadMemEx(0x0800595C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800595C) - Data: A2 FF DF E7 10 B5 00 29 04 DB 01 24 E4 07 40 42 ...  returns 0x3C (0001ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x0800595C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800595C) - Data: A2 FF  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x0800595E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800595E) - Data: DF E7  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005960, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005960) - Data: 10 B5 00 29 04 DB 01 24 E4 07 40 42 8C 41 21 46 ...  returns 0x3C (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005960) - Data: 10 B5  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005960, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005960) - Data: 10 B5 00 29 04 DB 01 24 E4 07 40 42 8C 41 21 46 ...  returns 0x3C (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005960) - Data: 10 B5  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005962, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005962) - Data: 00 29  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005962, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005962) - Data: 00 29  returns 0x02 (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005964, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005964) - Data: 04 DB 01 24 E4 07 40 42 8C 41 21 46 00 2B 04 DB ...  returns 0x3C (0000ms, 17587ms total)
T4B74 467:497 JLINK_ReadMemEx(0x08005964, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005964) - Data: 04 DB  returns 0x02 (0000ms, 17587ms total)
T4B74 474:592 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17587ms total)
T4B74 475:453 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17588ms total)
T4B74 478:666 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17588ms total)
T4B74 478:666 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17588ms total)
T4B74 478:666 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17588ms total)
T4B74 484:890 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 17588ms total)
T4B74 484:890 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) (0078ms, 17666ms total)
T4B74 484:968 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 17666ms total)
T4B74 484:968 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 17666ms total)
T4B74 484:968 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, 17668ms total)
T4B74 484:970 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 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, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 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, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 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 0D 25 00 08 ...  returns 0x3C (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 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 0D 25 00 08 ...  returns 0x3C (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 17668ms total)
T4B74 484:971 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17668ms total)
T4B74 484:996 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 17670ms total)
T4B74 484:998 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 52 97  returns 0x02 (0000ms, 17670ms total)
T4B74 484:998 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17672ms total)
T4B74 485:000 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 38 41  returns 0x04 (0000ms, 17672ms total)
T4B74 485:000 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 17672ms total)
T4B74 485:000 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 17674ms total)
T4B74 485:002 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 17674ms total)
T4B74 485:002 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0002ms, 17676ms total)
T4B74 485:004 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17676ms total)
T4B74 485:004 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17676ms total)
T4B74 485:004 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17676ms total)
T4560 485:331 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 17676ms total)
T4560 485:331 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 17676ms total)
T4560 485:331 JLINK_Go() -- 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, 17683ms total)
T4560 485:439 JLINK_IsHalted()  returns TRUE (0004ms, 17687ms total)
T4560 485:443 JLINK_Halt()  returns 0x00 (0000ms, 17683ms total)
T4560 485:443 JLINK_IsHalted()  returns TRUE (0000ms, 17683ms total)
T4560 485:443 JLINK_IsHalted()  returns TRUE (0000ms, 17683ms total)
T4560 485:443 JLINK_IsHalted()  returns TRUE (0000ms, 17683ms total)
T4560 485:443 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 17683ms total)
T4560 485:443 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 17683ms total)
T4560 485:443 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 17683ms total)
T4560 485:443 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17684ms total)
T4560 485:444 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17685ms total)
T4560 485:445 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R0)  returns 0x0000000A (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R1)  returns 0x00000400 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R2)  returns 0xE000E100 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R4)  returns 0x0800B5D0 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R6)  returns 0x0800B5D0 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R14)  returns 0x08008A5F (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17686ms total)
T4560 485:446 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17686ms total)
T4B74 485:447 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 17687ms total)
T4B74 485:450 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0000ms, 17687ms total)
T4B74 485:450 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17689ms total)
T4B74 485:452 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 17689ms total)
T4B74 485:452 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0000ms, 17689ms total)
T4B74 485:452 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0002ms, 17691ms total)
T4B74 485:454 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 17691ms total)
T4B74 485:454 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0002ms, 17693ms total)
T4B74 485:456 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17693ms total)
T4B74 485:456 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 17693ms total)
T4B74 485:456 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 17693ms total)
T4B74 485:456 JLINK_ReadMemEx(0x0800B26A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B240) -- Updating C cache (64 bytes @ 0x0800B240) -- Read from C cache (2 bytes @ 0x0800B26A) - Data: FD F7  returns 0x02 (0002ms, 17695ms total)
T4B74 485:458 JLINK_ReadMemEx(0x0800B26C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B280) -- Updating C cache (64 bytes @ 0x0800B280) -- Read from C cache (60 bytes @ 0x0800B26C) - Data: CB FC FD F7 A7 FC FD F7 AF FB 05 26 01 22 36 07 ...  returns 0x3C (0002ms, 17697ms total)
T4B74 485:460 JLINK_ReadMemEx(0x0800B26C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26C) - Data: CB FC  returns 0x02 (0000ms, 17697ms total)
T4B74 485:460 JLINK_ReadMemEx(0x0800B26E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26E) - Data: FD F7  returns 0x02 (0000ms, 17697ms total)
T4B74 485:460 JLINK_ReadMemEx(0x0800B270, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B270) - Data: A7 FC FD F7 AF FB 05 26 01 22 36 07 D1 03 30 46 ...  returns 0x3C (0000ms, 17697ms total)
T4B74 485:460 JLINK_ReadMemEx(0x0800B270, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B270) - Data: A7 FC  returns 0x02 (0000ms, 17697ms total)
T4560 485:826 JLINK_ReadMemEx(0x0800B26A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B26A) - Data: FD F7  returns 0x02 (0000ms, 17697ms total)
T4560 485:826 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B26A) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0800B26C) -- Simulated  returns 0x00 (0001ms, 17698ms total)
T4560 485:827 JLINK_ReadReg(R15 (PC))  returns 0x08008C04 (0000ms, 17698ms total)
T4560 485:827 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 17698ms total)
T4560 485:827 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 17698ms total)
T4560 485:827 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 17705ms total)
T4560 485:935 JLINK_IsHalted()  returns FALSE (0000ms, 17705ms total)
T4560 486:036 JLINK_IsHalted()  returns FALSE (0001ms, 17706ms total)
T4560 486:138 JLINK_IsHalted()  returns FALSE (0001ms, 17706ms total)
T4560 486:239 JLINK_IsHalted()  returns FALSE (0001ms, 17706ms total)
T4B74 486:341 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 17706ms total)
T4B74 486:343 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17708ms total)
T4B74 486:346 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17709ms total)
T4B74 486:347 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0000ms, 17709ms total)
T4B74 486:348 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 17709ms total)
T4B74 486:349 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17710ms total)
T4B74 486:350 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17711ms total)
T4B74 486:351 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17712ms total)
T4B74 486:352 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17713ms total)
T4B74 486:353 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17714ms total)
T4B74 486:354 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17715ms total)
T4560 486:355 JLINK_IsHalted()  returns FALSE (0001ms, 17716ms total)
T4560 486:457 JLINK_IsHalted()  returns FALSE (0001ms, 17716ms total)
T4560 486:559 JLINK_IsHalted()  returns FALSE (0001ms, 17716ms total)
T4560 486:660 JLINK_IsHalted()  returns FALSE (0001ms, 17716ms total)
T4560 486:762 JLINK_IsHalted()  returns FALSE (0001ms, 17716ms total)
T4B74 486:863 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17716ms total)
T4B74 486:864 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17718ms total)
T4B74 486:866 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17719ms total)
T4B74 486:867 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 17720ms total)
T4B74 486:868 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 17722ms total)
T4B74 486:870 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17723ms total)
T4B74 486:872 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17724ms total)
T4B74 486:873 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17725ms total)
T4B74 486:874 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17726ms total)
T4B74 486:875 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 17728ms total)
T4B74 486:877 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17729ms total)
T4560 486:878 JLINK_IsHalted()  returns FALSE (0001ms, 17730ms total)
T4560 486:980 JLINK_IsHalted()  returns FALSE (0001ms, 17730ms total)
T4560 487:082 JLINK_IsHalted()  returns FALSE (0001ms, 17730ms total)
T4560 487:184 JLINK_IsHalted()  returns FALSE (0001ms, 17730ms total)
T4560 487:286 JLINK_IsHalted()  returns FALSE (0001ms, 17730ms total)
T4B74 487:387 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 17731ms total)
T4B74 487:389 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17733ms total)
T4B74 487:391 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17734ms total)
T4B74 487:392 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 17735ms total)
T4B74 487:394 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17736ms total)
T4B74 487:395 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17737ms total)
T4B74 487:396 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0002ms, 17739ms total)
T4B74 487:398 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17740ms total)
T4B74 487:400 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 17740ms total)
T4B74 487:400 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0002ms, 17742ms total)
T4B74 487:402 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17743ms total)
T4560 487:403 JLINK_IsHalted()  returns FALSE (0001ms, 17744ms total)
T4560 487:505 JLINK_IsHalted()  returns FALSE (0000ms, 17743ms total)
T4560 487:607 JLINK_IsHalted()  returns FALSE (0001ms, 17744ms total)
T4560 487:708 JLINK_IsHalted()  returns FALSE (0000ms, 17743ms total)
T4560 487:810 JLINK_IsHalted()  returns FALSE (0001ms, 17744ms total)
T4B74 487:911 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17744ms total)
T4B74 487:912 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17746ms total)
T4B74 487:914 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 80 3F  returns 0x04 (0001ms, 17747ms total)
T4B74 487:915 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0002ms, 17749ms total)
T4B74 487:917 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 17751ms total)
T4B74 487:919 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17752ms total)
T4B74 487:920 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17753ms total)
T4B74 487:922 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17754ms total)
T4B74 487:923 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17755ms total)
T4B74 487:924 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17756ms total)
T4B74 487:925 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17757ms total)
T4560 487:927 JLINK_IsHalted()  returns FALSE (0001ms, 17758ms total)
T4560 488:029 JLINK_IsHalted()  returns FALSE (0001ms, 17758ms total)
T4560 488:131 JLINK_IsHalted()  returns FALSE (0000ms, 17757ms total)
T4560 488:233 JLINK_IsHalted()  returns FALSE (0001ms, 17758ms total)
T4560 488:334 JLINK_IsHalted()  returns FALSE (0001ms, 17758ms total)
T4B74 488:436 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17758ms total)
T4B74 488:437 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17759ms total)
T4B74 488:438 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17760ms total)
T4B74 488:440 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0000ms, 17760ms total)
T4B74 488:442 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17761ms total)
T4B74 488:443 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17762ms total)
T4B74 488:444 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17763ms total)
T4B74 488:446 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 17763ms total)
T4B74 488:446 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 3F  returns 0x04 (0002ms, 17765ms total)
T4B74 488:449 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17766ms total)
T4B74 488:450 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17767ms total)
T4560 488:451 JLINK_IsHalted()  returns FALSE (0001ms, 17768ms total)
T4560 488:552 JLINK_IsHalted()  returns FALSE (0001ms, 17768ms total)
T4560 488:654 JLINK_IsHalted()  returns FALSE (0001ms, 17768ms total)
T4560 488:755 JLINK_IsHalted()  returns FALSE (0001ms, 17768ms total)
T4560 488:857 JLINK_IsHalted()  returns FALSE (0001ms, 17768ms total)
T4B74 488:959 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17768ms total)
T4B74 488:960 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17769ms total)
T4B74 488:962 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0002ms, 17771ms total)
T4B74 488:964 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17772ms total)
T4B74 488:966 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17773ms total)
T4B74 488:967 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17774ms total)
T4B74 488:968 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17775ms total)
T4B74 488:969 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17776ms total)
T4B74 488:970 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17777ms total)
T4B74 488:971 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0002ms, 17779ms total)
T4B74 488:973 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17780ms total)
T4560 488:974 JLINK_IsHalted()  returns FALSE (0000ms, 17780ms total)
T4560 489:075 JLINK_IsHalted()  returns FALSE (0001ms, 17781ms total)
T4560 489:177 JLINK_IsHalted()  returns FALSE (0000ms, 17780ms total)
T4560 489:279 JLINK_IsHalted()  returns FALSE (0001ms, 17781ms total)
T4560 489:381 JLINK_IsHalted()  returns FALSE (0001ms, 17781ms total)
T4B74 489:482 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 17781ms total)
T4B74 489:484 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17783ms total)
T4B74 489:486 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17784ms total)
T4B74 489:487 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0002ms, 17786ms total)
T4B74 489:489 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 17786ms total)
T4B74 489:489 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 17788ms total)
T4B74 489:491 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 17788ms total)
T4B74 489:493 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17789ms total)
T4B74 489:494 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 3F  returns 0x04 (0002ms, 17791ms total)
T4B74 489:496 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17792ms total)
T4B74 489:497 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17792ms total)
T4560 489:497 JLINK_IsHalted()  returns FALSE (0002ms, 17794ms total)
T4560 489:600 JLINK_IsHalted()  returns FALSE (0001ms, 17793ms total)
T4560 489:702 JLINK_IsHalted()  returns FALSE (0001ms, 17793ms total)
T4560 489:804 JLINK_IsHalted()  returns FALSE (0001ms, 17793ms total)
T4560 489:905 JLINK_IsHalted()  returns FALSE (0001ms, 17793ms total)
T4B74 490:007 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17793ms total)
T4B74 490:009 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17795ms total)
T4B74 490:011 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17796ms total)
T4B74 490:012 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 17797ms total)
T4B74 490:014 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17798ms total)
T4B74 490:015 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17799ms total)
T4B74 490:016 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17800ms total)
T4B74 490:018 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17801ms total)
T4B74 490:019 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 17802ms total)
T4B74 490:020 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17803ms total)
T4B74 490:021 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17804ms total)
T4560 490:022 JLINK_IsHalted()  returns FALSE (0001ms, 17805ms total)
T4560 490:123 JLINK_IsHalted()  returns FALSE (0001ms, 17805ms total)
T4560 490:225 JLINK_IsHalted()  returns FALSE (0001ms, 17805ms total)
T4560 490:327 JLINK_IsHalted()  returns FALSE (0001ms, 17805ms total)
T4560 490:429 JLINK_IsHalted()  returns FALSE (0001ms, 17805ms total)
T4B74 490:530 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17805ms total)
T4B74 490:532 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17806ms total)
T4B74 490:533 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17807ms total)
T4B74 490:534 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 17808ms total)
T4B74 490:535 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17809ms total)
T4B74 490:536 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17810ms total)
T4B74 490:537 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17811ms total)
T4B74 490:538 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0002ms, 17813ms total)
T4B74 490:540 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 40  returns 0x04 (0002ms, 17815ms total)
T4B74 490:542 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17815ms total)
T4B74 490:542 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17816ms total)
T4560 490:543 JLINK_IsHalted()  returns FALSE (0001ms, 17817ms total)
T4560 490:646 JLINK_IsHalted()  returns FALSE (0001ms, 17817ms total)
T4560 490:748 JLINK_IsHalted()  returns FALSE (0000ms, 17816ms total)
T4560 490:850 JLINK_IsHalted()  returns FALSE (0001ms, 17817ms total)
T4560 490:951 JLINK_IsHalted()  returns FALSE (0001ms, 17817ms total)
T4B74 491:053 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17817ms total)
T4B74 491:054 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17818ms total)
T4B74 491:055 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17819ms total)
T4B74 491:056 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 20 40  returns 0x04 (0002ms, 17821ms total)
T4B74 491:058 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17822ms total)
T4B74 491:059 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17823ms total)
T4B74 491:060 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17824ms total)
T4B74 491:062 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17825ms total)
T4B74 491:064 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 20 40  returns 0x04 (0001ms, 17826ms total)
T4B74 491:066 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17827ms total)
T4B74 491:067 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17828ms total)
T4560 491:068 JLINK_IsHalted()  returns FALSE (0000ms, 17828ms total)
T4560 491:170 JLINK_IsHalted()  returns FALSE (0001ms, 17829ms total)
T4560 491:271 JLINK_IsHalted()  returns FALSE (0001ms, 17829ms total)
T4560 491:373 JLINK_IsHalted()  returns FALSE (0001ms, 17829ms total)
T4560 491:475 JLINK_IsHalted()  returns FALSE (0001ms, 17829ms total)
T4B74 491:576 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17829ms total)
T4B74 491:577 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17831ms total)
T4B74 491:579 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17832ms total)
T4B74 491:580 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 40 40  returns 0x04 (0000ms, 17832ms total)
T4B74 491:582 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17833ms total)
T4B74 491:583 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 17833ms total)
T4B74 491:583 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0002ms, 17835ms total)
T4B74 491:586 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17837ms total)
T4B74 491:587 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 40 40  returns 0x04 (0002ms, 17839ms total)
T4B74 491:589 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17840ms total)
T4B74 491:590 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17841ms total)
T4560 491:591 JLINK_IsHalted()  returns FALSE (0001ms, 17842ms total)
T4560 491:693 JLINK_IsHalted()  returns FALSE (0001ms, 17842ms total)
T4560 491:795 JLINK_IsHalted()  returns FALSE (0001ms, 17842ms total)
T4560 491:897 JLINK_IsHalted()  returns FALSE (0000ms, 17841ms total)
T4560 491:998 JLINK_IsHalted()  returns FALSE (0001ms, 17842ms total)
T4B74 492:101 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17842ms total)
T4B74 492:102 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17843ms total)
T4B74 492:103 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17843ms total)
T4B74 492:103 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 60 40  returns 0x04 (0003ms, 17846ms total)
T4B74 492:106 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 17846ms total)
T4B74 492:106 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 17848ms total)
T4B74 492:108 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0002ms, 17850ms total)
T4B74 492:110 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17851ms total)
T4B74 492:111 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 60 40  returns 0x04 (0001ms, 17852ms total)
T4B74 492:112 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17853ms total)
T4B74 492:113 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17854ms total)
T4560 492:115 JLINK_IsHalted()  returns FALSE (0001ms, 17855ms total)
T4560 492:217 JLINK_IsHalted()  returns FALSE (0001ms, 17855ms total)
T4560 492:320 JLINK_IsHalted()  returns FALSE (0000ms, 17854ms total)
T4560 492:422 JLINK_IsHalted()  returns FALSE (0001ms, 17855ms total)
T4560 492:524 JLINK_IsHalted()  returns FALSE (0001ms, 17855ms total)
T4B74 492:625 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17855ms total)
T4B74 492:626 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17856ms total)
T4B74 492:627 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17858ms total)
T4B74 492:629 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 40  returns 0x04 (0001ms, 17859ms total)
T4B74 492:631 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17860ms total)
T4B74 492:632 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17861ms total)
T4B74 492:633 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17862ms total)
T4B74 492:634 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17863ms total)
T4B74 492:635 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 40  returns 0x04 (0002ms, 17865ms total)
T4B74 492:637 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17866ms total)
T4B74 492:638 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17867ms total)
T4560 492:639 JLINK_IsHalted()  returns FALSE (0001ms, 17868ms total)
T4560 492:741 JLINK_IsHalted()  returns FALSE (0001ms, 17868ms total)
T4560 492:842 JLINK_IsHalted()  returns FALSE (0001ms, 17868ms total)
T4560 492:944 JLINK_IsHalted()  returns FALSE (0001ms, 17868ms total)
T4560 493:046 JLINK_IsHalted()  returns FALSE (0001ms, 17868ms total)
T4B74 493:148 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17868ms total)
T4B74 493:149 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17869ms total)
T4B74 493:150 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 80 3F  returns 0x04 (0001ms, 17870ms total)
T4B74 493:151 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0001ms, 17871ms total)
T4B74 493:152 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17872ms total)
T4B74 493:153 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17873ms total)
T4B74 493:154 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17874ms total)
T4B74 493:156 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 17874ms total)
T4B74 493:157 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 90 40  returns 0x04 (0001ms, 17875ms total)
T4B74 493:158 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17876ms total)
T4B74 493:159 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17877ms total)
T4560 493:160 JLINK_IsHalted()  returns FALSE (0000ms, 17877ms total)
T4560 493:261 JLINK_IsHalted()  returns FALSE (0001ms, 17878ms total)
T4560 493:363 JLINK_IsHalted()  returns FALSE (0000ms, 17877ms total)
T4560 493:464 JLINK_IsHalted()  returns FALSE (0001ms, 17878ms total)
T4560 493:566 JLINK_IsHalted()  returns FALSE (0001ms, 17878ms total)
T4B74 493:668 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 17877ms total)
T4B74 493:668 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17879ms total)
T4B74 493:670 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0000ms, 17879ms total)
T4B74 493:671 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17880ms total)
T4B74 493:674 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17881ms total)
T4B74 493:675 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 17881ms total)
T4B74 493:675 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0003ms, 17884ms total)
T4B74 493:678 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17885ms total)
T4B74 493:679 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17886ms total)
T4B74 493:680 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 17888ms total)
T4B74 493:682 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17889ms total)
T4560 493:683 JLINK_IsHalted()  returns FALSE (0001ms, 17890ms total)
T4560 493:785 JLINK_IsHalted()  returns FALSE (0000ms, 17889ms total)
T4560 493:887 JLINK_IsHalted()  returns FALSE (0001ms, 17890ms total)
T4560 493:988 JLINK_IsHalted()  returns FALSE (0001ms, 17890ms total)
T4560 494:090 JLINK_IsHalted()  returns FALSE (0001ms, 17890ms total)
T4B74 494:192 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 17889ms total)
T4B74 494:192 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17890ms total)
T4B74 494:193 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17892ms total)
T4B74 494:196 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 17893ms total)
T4B74 494:197 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 17895ms total)
T4B74 494:199 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17896ms total)
T4B74 494:200 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17897ms total)
T4B74 494:202 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17898ms total)
T4B74 494:204 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17899ms total)
T4B74 494:205 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17900ms total)
T4B74 494:206 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17901ms total)
T4560 494:207 JLINK_IsHalted()  returns FALSE (0001ms, 17902ms total)
T4560 494:309 JLINK_IsHalted()  returns FALSE (0001ms, 17902ms total)
T4560 494:411 JLINK_IsHalted()  returns FALSE (0001ms, 17902ms total)
T4560 494:512 JLINK_IsHalted()  returns FALSE (0001ms, 17902ms total)
T4560 494:613 JLINK_IsHalted()  returns FALSE (0001ms, 17902ms total)
T4B74 494:715 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17902ms total)
T4B74 494:716 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17903ms total)
T4B74 494:717 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17905ms total)
T4B74 494:719 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 17906ms total)
T4B74 494:720 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17907ms total)
T4B74 494:721 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 17909ms total)
T4B74 494:723 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17910ms total)
T4B74 494:724 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 17910ms total)
T4B74 494:724 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 17912ms total)
T4B74 494:726 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17913ms total)
T4B74 494:727 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17914ms total)
T4560 494:728 JLINK_IsHalted()  returns FALSE (0001ms, 17915ms total)
T4560 494:830 JLINK_IsHalted()  returns FALSE (0000ms, 17914ms total)
T4560 494:931 JLINK_IsHalted()  returns FALSE (0001ms, 17915ms total)
T4560 495:033 JLINK_IsHalted()  returns FALSE (0000ms, 17914ms total)
T4560 495:134 JLINK_IsHalted()  returns FALSE (0001ms, 17915ms total)
T4B74 495:236 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 17914ms total)
T4B74 495:236 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 17916ms total)
T4B74 495:238 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 17918ms total)
T4B74 495:240 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 17919ms total)
T4B74 495:242 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17920ms total)
T4B74 495:243 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17921ms total)
T4B74 495:244 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17922ms total)
T4B74 495:246 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17923ms total)
T4B74 495:248 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17924ms total)
T4B74 495:249 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17925ms total)
T4B74 495:250 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17926ms total)
T4560 495:251 JLINK_IsHalted()  returns FALSE (0001ms, 17927ms total)
T4560 495:353 JLINK_IsHalted()  returns FALSE (0001ms, 17927ms total)
T4560 495:455 JLINK_IsHalted()  returns FALSE (0001ms, 17927ms total)
T4560 495:557 JLINK_IsHalted()  returns FALSE (0001ms, 17927ms total)
T4560 495:659 JLINK_IsHalted()  returns FALSE (0000ms, 17926ms total)
T4B74 495:760 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17927ms total)
T4B74 495:761 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17928ms total)
T4B74 495:762 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17929ms total)
T4B74 495:763 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 20 40  returns 0x04 (0001ms, 17930ms total)
T4B74 495:765 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17931ms total)
T4B74 495:766 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17932ms total)
T4B74 495:767 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17933ms total)
T4B74 495:770 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 17933ms total)
T4B74 495:770 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17934ms total)
T4B74 495:771 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17935ms total)
T4B74 495:772 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17936ms total)
T4560 495:773 JLINK_IsHalted()  returns FALSE (0001ms, 17937ms total)
T4560 495:875 JLINK_IsHalted()  returns FALSE (0001ms, 17937ms total)
T4560 495:977 JLINK_IsHalted()  returns FALSE (0001ms, 17937ms total)
T4560 496:079 JLINK_IsHalted()  returns FALSE (0001ms, 17937ms total)
T4560 496:180 JLINK_IsHalted()  returns FALSE (0001ms, 17937ms total)
T4B74 496:282 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17937ms total)
T4B74 496:283 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17938ms total)
T4B74 496:284 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17939ms total)
T4B74 496:285 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 40 40  returns 0x04 (0001ms, 17940ms total)
T4B74 496:287 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17941ms total)
T4B74 496:288 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17942ms total)
T4B74 496:289 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17943ms total)
T4B74 496:291 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17944ms total)
T4B74 496:292 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17945ms total)
T4B74 496:294 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17946ms total)
T4B74 496:295 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17947ms total)
T4560 496:296 JLINK_IsHalted()  returns FALSE (0001ms, 17948ms total)
T4560 496:398 JLINK_IsHalted()  returns FALSE (0000ms, 17947ms total)
T4560 496:500 JLINK_IsHalted()  returns FALSE (0001ms, 17948ms total)
T4560 496:601 JLINK_IsHalted()  returns FALSE (0001ms, 17948ms total)
T4560 496:703 JLINK_IsHalted()  returns FALSE (0001ms, 17948ms total)
T4B74 496:805 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17948ms total)
T4B74 496:806 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17949ms total)
T4B74 496:808 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17950ms total)
T4B74 496:809 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 60 40  returns 0x04 (0001ms, 17951ms total)
T4B74 496:810 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17952ms total)
T4B74 496:812 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17953ms total)
T4B74 496:813 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 17954ms total)
T4B74 496:815 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17955ms total)
T4B74 496:816 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17956ms total)
T4B74 496:817 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17957ms total)
T4B74 496:819 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17959ms total)
T4560 496:820 JLINK_IsHalted()  returns FALSE (0001ms, 17960ms total)
T4560 496:921 JLINK_IsHalted()  returns FALSE (0002ms, 17961ms total)
T4560 497:023 JLINK_IsHalted()  returns FALSE (0001ms, 17960ms total)
T4560 497:124 JLINK_IsHalted()  returns FALSE (0001ms, 17960ms total)
T4560 497:226 JLINK_IsHalted()  returns FALSE (0001ms, 17960ms total)
T4B74 497:328 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17960ms total)
T4B74 497:329 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17961ms total)
T4B74 497:330 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17961ms total)
T4B74 497:332 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 40  returns 0x04 (0000ms, 17962ms total)
T4B74 497:332 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 17964ms total)
T4B74 497:334 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 17964ms total)
T4B74 497:334 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0003ms, 17967ms total)
T4B74 497:337 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 17967ms total)
T4B74 497:339 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17968ms total)
T4B74 497:340 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17969ms total)
T4B74 497:342 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 17969ms total)
T4560 497:342 JLINK_IsHalted()  returns FALSE (0001ms, 17970ms total)
T4560 497:445 JLINK_IsHalted()  returns FALSE (0001ms, 17970ms total)
T4560 497:547 JLINK_IsHalted()  returns FALSE (0001ms, 17970ms total)
T4560 497:649 JLINK_IsHalted()  returns FALSE (0001ms, 17970ms total)
T4560 497:751 JLINK_IsHalted()  returns FALSE (0001ms, 17970ms total)
T4B74 497:854 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 17969ms total)
T4B74 497:854 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17970ms total)
T4B74 497:855 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17971ms total)
T4B74 497:856 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 90 40  returns 0x04 (0002ms, 17973ms total)
T4B74 497:858 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 17975ms total)
T4B74 497:860 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17976ms total)
T4B74 497:861 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 17976ms total)
T4B74 497:863 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17977ms total)
T4B74 497:865 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17978ms total)
T4B74 497:866 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 17979ms total)
T4B74 497:867 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 17979ms total)
T4560 497:867 JLINK_IsHalted()  returns FALSE (0001ms, 17980ms total)
T4560 497:969 JLINK_IsHalted()  returns FALSE (0001ms, 17980ms total)
T4560 498:071 JLINK_IsHalted()  returns FALSE (0000ms, 17979ms total)
T4560 498:173 JLINK_IsHalted()  returns FALSE (0001ms, 17980ms total)
T4560 498:275 JLINK_IsHalted()  returns FALSE (0001ms, 17980ms total)
T4B74 498:376 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17980ms total)
T4B74 498:377 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17981ms total)
T4B74 498:378 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 80 3F  returns 0x04 (0002ms, 17983ms total)
T4B74 498:380 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0001ms, 17984ms total)
T4B74 498:381 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17985ms total)
T4B74 498:383 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17987ms total)
T4B74 498:384 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 17988ms total)
T4B74 498:386 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 17989ms total)
T4B74 498:387 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 17990ms total)
T4B74 498:388 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17991ms total)
T4B74 498:389 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 17992ms total)
T4560 498:390 JLINK_IsHalted()  returns FALSE (0001ms, 17993ms total)
T4560 498:492 JLINK_IsHalted()  returns FALSE (0001ms, 17993ms total)
T4560 498:594 JLINK_IsHalted()  returns FALSE (0000ms, 17992ms total)
T4560 498:696 JLINK_IsHalted()  returns FALSE (0000ms, 17992ms total)
T4560 498:797 JLINK_IsHalted()  returns FALSE (0001ms, 17993ms total)
T4B74 498:900 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 17993ms total)
T4B74 498:901 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 17994ms total)
T4B74 498:903 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17995ms total)
T4B74 498:904 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0001ms, 17996ms total)
T4B74 498:906 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 17997ms total)
T4B74 498:907 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 17998ms total)
T4B74 498:908 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0000ms, 17998ms total)
T4B74 498:909 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 17999ms total)
T4B74 498:910 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 3F  returns 0x04 (0001ms, 18000ms total)
T4B74 498:911 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18001ms total)
T4B74 498:912 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18002ms total)
T4560 498:913 JLINK_IsHalted()  returns FALSE (0000ms, 18002ms total)
T4560 499:014 JLINK_IsHalted()  returns FALSE (0001ms, 18003ms total)
T4560 499:116 JLINK_IsHalted()  returns FALSE (0001ms, 18003ms total)
T4560 499:218 JLINK_IsHalted()  returns FALSE (0001ms, 18003ms total)
T4560 499:319 JLINK_IsHalted()  returns FALSE (0001ms, 18003ms total)
T4B74 499:421 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18003ms total)
T4B74 499:422 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18004ms total)
T4B74 499:423 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18005ms total)
T4B74 499:425 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 18006ms total)
T4B74 499:427 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18007ms total)
T4B74 499:428 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18008ms total)
T4B74 499:430 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18009ms total)
T4B74 499:431 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0002ms, 18011ms total)
T4B74 499:433 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 3F  returns 0x04 (0001ms, 18012ms total)
T4B74 499:434 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18013ms total)
T4B74 499:435 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18014ms total)
T4560 499:436 JLINK_IsHalted()  returns FALSE (0001ms, 18015ms total)
T4560 499:538 JLINK_IsHalted()  returns FALSE (0001ms, 18015ms total)
T4560 499:640 JLINK_IsHalted()  returns FALSE (0001ms, 18015ms total)
T4560 499:742 JLINK_IsHalted()  returns FALSE (0000ms, 18014ms total)
T4560 499:843 JLINK_IsHalted()  returns FALSE (0001ms, 18015ms total)
T4B74 499:945 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18015ms total)
T4B74 499:946 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18016ms total)
T4B74 499:947 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 18018ms total)
T4B74 499:949 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 18019ms total)
T4B74 499:951 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18020ms total)
T4B74 499:952 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18021ms total)
T4B74 499:953 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18022ms total)
T4B74 499:955 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18023ms total)
T4B74 499:956 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 40  returns 0x04 (0002ms, 18025ms total)
T4B74 499:958 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18026ms total)
T4B74 499:959 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18027ms total)
T4560 499:960 JLINK_IsHalted()  returns FALSE (0002ms, 18029ms total)
T4560 500:063 JLINK_IsHalted()  returns FALSE (0001ms, 18028ms total)
T4560 500:165 JLINK_IsHalted()  returns FALSE (0001ms, 18028ms total)
T4560 500:266 JLINK_IsHalted()  returns FALSE (0001ms, 18028ms total)
T4560 500:368 JLINK_IsHalted()  returns FALSE (0000ms, 18027ms total)
T4B74 500:470 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 18029ms total)
T4B74 500:472 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0000ms, 18029ms total)
T4B74 500:472 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18030ms total)
T4B74 500:473 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 20 40  returns 0x04 (0001ms, 18031ms total)
T4B74 500:474 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18032ms total)
T4B74 500:475 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18033ms total)
T4B74 500:476 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18034ms total)
T4B74 500:477 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18035ms total)
T4B74 500:478 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 20 40  returns 0x04 (0001ms, 18036ms total)
T4B74 500:480 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 18036ms total)
T4B74 500:480 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18037ms total)
T4560 500:481 JLINK_IsHalted()  returns FALSE (0001ms, 18038ms total)
T4560 500:583 JLINK_IsHalted()  returns FALSE (0001ms, 18038ms total)
T4560 500:685 JLINK_IsHalted()  returns FALSE (0000ms, 18038ms total)
T4560 500:786 JLINK_IsHalted()  returns FALSE (0001ms, 18039ms total)
T4560 500:888 JLINK_IsHalted()  returns FALSE (0000ms, 18038ms total)
T4B74 500:990 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 18038ms total)
T4B74 500:990 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18040ms total)
T4B74 500:992 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18040ms total)
T4B74 500:992 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 40 40  returns 0x04 (0002ms, 18042ms total)
T4B74 500:995 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18043ms total)
T4B74 500:996 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 18045ms total)
T4B74 500:998 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18046ms total)
T4B74 500:999 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18047ms total)
T4B74 501:000 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 40 40  returns 0x04 (0002ms, 18049ms total)
T4B74 501:002 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18050ms total)
T4B74 501:004 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18051ms total)
T4560 501:005 JLINK_IsHalted()  returns FALSE (0001ms, 18052ms total)
T4560 501:106 JLINK_IsHalted()  returns FALSE (0001ms, 18052ms total)
T4560 501:208 JLINK_IsHalted()  returns FALSE (0001ms, 18052ms total)
T4560 501:310 JLINK_IsHalted()  returns FALSE (0001ms, 18052ms total)
T4560 501:411 JLINK_IsHalted()  returns FALSE (0000ms, 18051ms total)
T4B74 501:513 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 18051ms total)
T4B74 501:513 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18052ms total)
T4B74 501:515 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 18054ms total)
T4B74 501:517 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 60 40  returns 0x04 (0000ms, 18054ms total)
T4B74 501:519 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18055ms total)
T4B74 501:520 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 18055ms total)
T4B74 501:520 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18056ms total)
T4B74 501:522 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0002ms, 18058ms total)
T4B74 501:524 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 60 40  returns 0x04 (0001ms, 18059ms total)
T4B74 501:525 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18060ms total)
T4B74 501:526 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 18060ms total)
T4560 501:528 JLINK_IsHalted()  returns FALSE (0000ms, 18060ms total)
T4560 501:629 JLINK_IsHalted()  returns FALSE (0001ms, 18061ms total)
T4560 501:731 JLINK_IsHalted()  returns FALSE (0001ms, 18061ms total)
T4560 501:833 JLINK_IsHalted()  returns FALSE (0001ms, 18061ms total)
T4560 501:935 JLINK_IsHalted()  returns FALSE (0001ms, 18061ms total)
T4B74 502:037 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18061ms total)
T4B74 502:038 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18062ms total)
T4B74 502:039 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18063ms total)
T4B74 502:040 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 40  returns 0x04 (0001ms, 18064ms total)
T4B74 502:042 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18065ms total)
T4B74 502:043 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18066ms total)
T4B74 502:044 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0003ms, 18069ms total)
T4B74 502:047 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0000ms, 18069ms total)
T4B74 502:048 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 40  returns 0x04 (0002ms, 18071ms total)
T4B74 502:050 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18072ms total)
T4B74 502:051 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18072ms total)
T4560 502:051 JLINK_IsHalted()  returns FALSE (0001ms, 18073ms total)
T4560 502:154 JLINK_IsHalted()  returns FALSE (0001ms, 18073ms total)
T4560 502:256 JLINK_IsHalted()  returns FALSE (0001ms, 18073ms total)
T4560 502:358 JLINK_IsHalted()  returns FALSE (0000ms, 18072ms total)
T4560 502:459 JLINK_IsHalted()  returns FALSE (0001ms, 18073ms total)
T4B74 502:561 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 18072ms total)
T4B74 502:561 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18074ms total)
T4B74 502:563 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18074ms total)
T4B74 502:563 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 90 40  returns 0x04 (0002ms, 18076ms total)
T4B74 502:566 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0000ms, 18076ms total)
T4B74 502:566 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18077ms total)
T4B74 502:567 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18078ms total)
T4B74 502:570 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 18078ms total)
T4B74 502:570 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 90 40  returns 0x04 (0001ms, 18079ms total)
T4B74 502:572 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18080ms total)
T4B74 502:573 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 18082ms total)
T4560 502:575 JLINK_IsHalted()  returns FALSE (0001ms, 18083ms total)
T4560 502:676 JLINK_IsHalted()  returns FALSE (0001ms, 18083ms total)
T4560 502:778 JLINK_IsHalted()  returns FALSE (0001ms, 18083ms total)
T4560 502:879 JLINK_IsHalted()  returns FALSE (0001ms, 18083ms total)
T4560 502:981 JLINK_IsHalted()  returns TRUE (0005ms, 18087ms total)
T4560 502:986 JLINK_Halt()  returns 0x00 (0000ms, 18082ms total)
T4560 502:986 JLINK_IsHalted()  returns TRUE (0000ms, 18082ms total)
T4560 502:986 JLINK_IsHalted()  returns TRUE (0000ms, 18082ms total)
T4560 502:986 JLINK_IsHalted()  returns TRUE (0000ms, 18082ms total)
T4560 502:986 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 18082ms total)
T4560 502:986 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 18082ms total)
T4560 502:986 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 18082ms total)
T4560 502:986 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 18083ms total)
T4560 502:987 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 18084ms total)
T4560 502:988 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R0)  returns 0x0000000A (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R1)  returns 0x00000400 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R2)  returns 0xE000E100 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R4)  returns 0x0800B5D0 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R6)  returns 0x0800B5D0 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R14)  returns 0x08008A5F (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 18085ms total)
T4560 502:989 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18085ms total)
T4560 502:990 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18086ms total)
T4B74 502:990 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 18088ms total)
T4B74 502:992 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0000ms, 18088ms total)
T4B74 502:992 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 18090ms total)
T4B74 502:994 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 18090ms total)
T4B74 502:994 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0000ms, 18090ms total)
T4B74 502:995 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0001ms, 18091ms total)
T4B74 502:997 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 18091ms total)
T4B74 502:997 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0002ms, 18093ms total)
T4B74 503:000 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 18093ms total)
T4B74 503:000 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18093ms total)
T4B74 503:000 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18093ms total)
T4560 506:219 JLINK_ReadMemEx(0x0800B26A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B240) -- Updating C cache (64 bytes @ 0x0800B240) -- Read from C cache (2 bytes @ 0x0800B26A) - Data: FD F7  returns 0x02 (0002ms, 18095ms total)
T4560 506:221 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B26A) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0800B26C) -- Simulated  returns 0x00 (0001ms, 18096ms total)
T4560 506:222 JLINK_ReadReg(R15 (PC))  returns 0x08008C04 (0000ms, 18096ms total)
T4560 506:222 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 18096ms total)
T4560 506:222 JLINK_SetBPEx(Addr = 0x0800B26A, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 18096ms total)
T4560 506:222 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 18102ms total)
T4560 506:329 JLINK_IsHalted()  returns FALSE (0001ms, 18103ms total)
T4560 506:431 JLINK_IsHalted()  returns FALSE (0001ms, 18103ms total)
T4560 506:533 JLINK_IsHalted()  returns FALSE (0000ms, 18102ms total)
T4560 506:634 JLINK_IsHalted()  returns FALSE (0000ms, 18102ms total)
T4B74 506:736 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 18102ms total)
T4B74 506:737 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18104ms total)
T4B74 506:739 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18105ms total)
T4B74 506:740 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0002ms, 18107ms total)
T4B74 506:742 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 02  returns 0x01 (0001ms, 18108ms total)
T4B74 506:744 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18109ms total)
T4B74 506:745 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18110ms total)
T4B74 506:746 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18111ms total)
T4B74 506:748 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 18111ms total)
T4B74 506:749 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18112ms total)
T4B74 506:750 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0000ms, 18112ms total)
T4560 506:751 JLINK_IsHalted()  returns FALSE (0000ms, 18112ms total)
T4560 506:852 JLINK_IsHalted()  returns FALSE (0001ms, 18113ms total)
T4560 506:954 JLINK_IsHalted()  returns FALSE (0000ms, 18112ms total)
T4560 507:055 JLINK_IsHalted()  returns FALSE (0001ms, 18113ms total)
T4560 507:157 JLINK_IsHalted()  returns FALSE (0000ms, 18112ms total)
T4B74 507:258 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 18113ms total)
T4B74 507:259 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18114ms total)
T4B74 507:260 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18115ms total)
T4B74 507:261 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0000ms, 18115ms total)
T4B74 507:261 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18116ms total)
T4B74 507:263 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18117ms total)
T4B74 507:264 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0000ms, 18117ms total)
T4B74 507:265 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18118ms total)
T4B74 507:266 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 18119ms total)
T4B74 507:267 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18119ms total)
T4B74 507:267 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18120ms total)
T4560 507:268 JLINK_IsHalted()  returns FALSE (0002ms, 18122ms total)
T4560 507:371 JLINK_IsHalted()  returns FALSE (0001ms, 18121ms total)
T4560 507:472 JLINK_IsHalted()  returns FALSE (0000ms, 18120ms total)
T4560 507:574 JLINK_IsHalted()  returns FALSE (0001ms, 18121ms total)
T4560 507:676 JLINK_IsHalted()  returns FALSE (0001ms, 18121ms total)
T4B74 507:778 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 18120ms total)
T4B74 507:780 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18121ms total)
T4B74 507:781 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 18123ms total)
T4B74 507:783 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 18124ms total)
T4B74 507:784 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18125ms total)
T4B74 507:785 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18126ms total)
T4B74 507:786 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18127ms total)
T4B74 507:788 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18128ms total)
T4B74 507:790 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 18129ms total)
T4B74 507:791 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18130ms total)
T4B74 507:792 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18131ms total)
T4560 507:793 JLINK_IsHalted()  returns FALSE (0001ms, 18132ms total)
T4560 507:895 JLINK_IsHalted()  returns FALSE (0000ms, 18131ms total)
T4560 507:997 JLINK_IsHalted()  returns FALSE (0000ms, 18131ms total)
T4560 508:098 JLINK_IsHalted()  returns FALSE (0000ms, 18131ms total)
T4560 508:200 JLINK_IsHalted()  returns FALSE (0000ms, 18131ms total)
T4B74 508:301 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18132ms total)
T4B74 508:303 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18133ms total)
T4B74 508:304 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18134ms total)
T4B74 508:305 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 18135ms total)
T4B74 508:307 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18136ms total)
T4B74 508:308 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18137ms total)
T4B74 508:309 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18138ms total)
T4B74 508:311 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18139ms total)
T4B74 508:312 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 18140ms total)
T4B74 508:313 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18141ms total)
T4B74 508:314 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18142ms total)
T4560 508:315 JLINK_IsHalted()  returns FALSE (0001ms, 18143ms total)
T4560 508:417 JLINK_IsHalted()  returns FALSE (0000ms, 18142ms total)
T4560 508:519 JLINK_IsHalted()  returns FALSE (0001ms, 18143ms total)
T4560 508:620 JLINK_IsHalted()  returns FALSE (0002ms, 18144ms total)
T4560 508:722 JLINK_IsHalted()  returns FALSE (0001ms, 18143ms total)
T4B74 508:824 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18143ms total)
T4B74 508:825 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18145ms total)
T4B74 508:827 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 3F  returns 0x04 (0000ms, 18145ms total)
T4B74 508:827 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 3F  returns 0x04 (0002ms, 18147ms total)
T4B74 508:830 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18148ms total)
T4B74 508:831 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18149ms total)
T4B74 508:832 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18150ms total)
T4B74 508:834 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18151ms total)
T4B74 508:835 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 3F  returns 0x04 (0001ms, 18152ms total)
T4B74 508:836 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18153ms total)
T4B74 508:837 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18154ms total)
T4560 508:838 JLINK_IsHalted()  returns FALSE (0001ms, 18155ms total)
T4560 508:940 JLINK_IsHalted()  returns FALSE (0001ms, 18155ms total)
T4560 509:042 JLINK_IsHalted()  returns FALSE (0001ms, 18155ms total)
T4560 509:144 JLINK_IsHalted()  returns FALSE (0001ms, 18155ms total)
T4560 509:245 JLINK_IsHalted()  returns FALSE (0001ms, 18155ms total)
T4B74 509:347 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18155ms total)
T4B74 509:348 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18156ms total)
T4B74 509:349 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18157ms total)
T4B74 509:351 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 3F  returns 0x04 (0001ms, 18158ms total)
T4B74 509:353 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18159ms total)
T4B74 509:354 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18160ms total)
T4B74 509:355 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18161ms total)
T4B74 509:356 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18162ms total)
T4B74 509:358 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 3F  returns 0x04 (0001ms, 18163ms total)
T4B74 509:360 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18164ms total)
T4B74 509:361 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18165ms total)
T4560 509:363 JLINK_IsHalted()  returns FALSE (0001ms, 18166ms total)
T4560 509:465 JLINK_IsHalted()  returns FALSE (0001ms, 18166ms total)
T4560 509:567 JLINK_IsHalted()  returns FALSE (0001ms, 18166ms total)
T4560 509:669 JLINK_IsHalted()  returns FALSE (0001ms, 18166ms total)
T4560 509:770 JLINK_IsHalted()  returns FALSE (0001ms, 18166ms total)
T4B74 509:872 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18166ms total)
T4B74 509:873 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18167ms total)
T4B74 509:875 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18169ms total)
T4B74 509:876 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 18170ms total)
T4B74 509:879 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18171ms total)
T4B74 509:880 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18172ms total)
T4B74 509:881 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18173ms total)
T4B74 509:882 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18174ms total)
T4B74 509:884 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 18175ms total)
T4B74 509:885 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18176ms total)
T4B74 509:886 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18177ms total)
T4560 509:887 JLINK_IsHalted()  returns FALSE (0001ms, 18178ms total)
T4560 509:989 JLINK_IsHalted()  returns FALSE (0001ms, 18178ms total)
T4560 510:091 JLINK_IsHalted()  returns FALSE (0001ms, 18178ms total)
T4560 510:193 JLINK_IsHalted()  returns FALSE (0001ms, 18178ms total)
T4560 510:295 JLINK_IsHalted()  returns FALSE (0001ms, 18178ms total)
T4B74 510:397 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0000ms, 18177ms total)
T4B74 510:397 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18178ms total)
T4B74 510:398 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 18180ms total)
T4B74 510:400 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 40  returns 0x04 (0001ms, 18181ms total)
T4B74 510:402 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18182ms total)
T4B74 510:403 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18183ms total)
T4B74 510:404 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0002ms, 18185ms total)
T4B74 510:408 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18186ms total)
T4B74 510:410 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 40  returns 0x04 (0001ms, 18187ms total)
T4B74 510:411 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18187ms total)
T4B74 510:411 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18188ms total)
T4560 510:412 JLINK_IsHalted()  returns FALSE (0001ms, 18189ms total)
T4560 510:515 JLINK_IsHalted()  returns FALSE (0001ms, 18189ms total)
T4560 510:617 JLINK_IsHalted()  returns FALSE (0000ms, 18188ms total)
T4560 510:718 JLINK_IsHalted()  returns FALSE (0001ms, 18189ms total)
T4560 510:820 JLINK_IsHalted()  returns FALSE (0001ms, 18189ms total)
T4B74 510:921 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0002ms, 18190ms total)
T4B74 510:923 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0001ms, 18191ms total)
T4B74 510:925 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18192ms total)
T4B74 510:926 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 20 40  returns 0x04 (0001ms, 18193ms total)
T4B74 510:927 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18194ms total)
T4B74 510:929 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18195ms total)
T4B74 510:930 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18196ms total)
T4B74 510:932 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0001ms, 18197ms total)
T4B74 510:933 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 20 40  returns 0x04 (0001ms, 18198ms total)
T4B74 510:935 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18199ms total)
T4B74 510:936 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18200ms total)
T4560 510:938 JLINK_IsHalted()  returns FALSE (0000ms, 18200ms total)
T4560 511:040 JLINK_IsHalted()  returns FALSE (0000ms, 18200ms total)
T4560 511:141 JLINK_IsHalted()  returns FALSE (0001ms, 18201ms total)
T4560 511:243 JLINK_IsHalted()  returns FALSE (0001ms, 18201ms total)
T4560 511:345 JLINK_IsHalted()  returns FALSE (0001ms, 18201ms total)
T4B74 511:447 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18201ms total)
T4B74 511:448 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18203ms total)
T4B74 511:450 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18204ms total)
T4B74 511:451 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 40 40  returns 0x04 (0001ms, 18205ms total)
T4B74 511:453 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18206ms total)
T4B74 511:454 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18207ms total)
T4B74 511:456 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18208ms total)
T4B74 511:457 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0001ms, 18209ms total)
T4B74 511:459 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 40 40  returns 0x04 (0001ms, 18211ms total)
T4B74 511:461 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18212ms total)
T4B74 511:462 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18213ms total)
T4560 511:463 JLINK_IsHalted()  returns FALSE (0001ms, 18214ms total)
T4560 511:565 JLINK_IsHalted()  returns FALSE (0001ms, 18214ms total)
T4560 511:667 JLINK_IsHalted()  returns FALSE (0001ms, 18214ms total)
T4560 511:769 JLINK_IsHalted()  returns FALSE (0001ms, 18214ms total)
T4560 511:870 JLINK_IsHalted()  returns FALSE (0001ms, 18214ms total)
T4B74 511:971 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18214ms total)
T4B74 511:972 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18216ms total)
T4B74 511:974 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18217ms total)
T4B74 511:975 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 80 40  returns 0x04 (0001ms, 18218ms total)
T4B74 511:976 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0001ms, 18219ms total)
T4B74 511:978 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18220ms total)
T4B74 511:979 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 53 01 00  returns 0x04 (0001ms, 18221ms total)
T4B74 511:980 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 10 00  returns 0x02 (0002ms, 18223ms total)
T4B74 511:982 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 80 40  returns 0x04 (0001ms, 18224ms total)
T4B74 511:983 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18225ms total)
T4B74 511:984 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18226ms total)
T4560 511:985 JLINK_IsHalted()  returns FALSE (0001ms, 18227ms total)
T4560 512:087 JLINK_IsHalted()  returns FALSE (0001ms, 18227ms total)
T4560 512:188 JLINK_IsHalted()  returns FALSE (0001ms, 18227ms total)
T4560 512:290 JLINK_IsHalted()  returns FALSE (0001ms, 18227ms total)
T4560 512:391 JLINK_IsHalted()  returns FALSE (0001ms, 18227ms total)
T4B74 512:493 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 04  returns 0x01 (0001ms, 18227ms total)
T4B74 512:494 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 65 97  returns 0x02 (0002ms, 18229ms total)
T4B74 512:496 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18230ms total)
T4B74 512:497 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 90 40  returns 0x04 (0001ms, 18231ms total)
T4B74 512:498 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 03  returns 0x01 (0002ms, 18233ms total)
T4B74 512:500 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 18234ms total)
T4B74 512:501 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 10 A6 08 00  returns 0x04 (0001ms, 18235ms total)
T4B74 512:503 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 74 00  returns 0x02 (0000ms, 18235ms total)
T4B74 512:504 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 90 40  returns 0x04 (0001ms, 18236ms total)
T4B74 512:505 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0002ms, 18238ms total)
T4B74 512:507 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 01 00  returns 0x02 (0001ms, 18239ms total)
T4560 512:509 JLINK_IsHalted()  returns FALSE (0000ms, 18239ms total)
T4560 512:611 JLINK_IsHalted()  returns FALSE (0000ms, 18239ms total)
T4560 512:712 JLINK_IsHalted()  returns FALSE (0001ms, 18240ms total)
T4560 512:814 JLINK_IsHalted()  returns FALSE (0001ms, 18240ms total)
T4560 512:916 JLINK_IsHalted()  returns FALSE (0000ms, 18239ms total)
T4B74 513:018 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 18240ms total)
T4B74 513:021 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0001ms, 18241ms total)
T4B74 513:022 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18242ms total)
T4B74 513:023 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0002ms, 18244ms total)
T4B74 513:025 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0001ms, 18245ms total)
T4B74 513:027 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0001ms, 18246ms total)
T4B74 513:028 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 18246ms total)
T4B74 513:031 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0001ms, 18247ms total)
T4B74 513:032 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 18248ms total)
T4B74 513:033 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18249ms total)
T4B74 513:034 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0001ms, 18250ms total)
T4560 513:035 JLINK_IsHalted()  returns TRUE (0006ms, 18256ms total)
T4560 513:041 JLINK_Halt()  returns 0x00 (0000ms, 18250ms total)
T4560 513:041 JLINK_IsHalted()  returns TRUE (0000ms, 18250ms total)
T4560 513:041 JLINK_IsHalted()  returns TRUE (0000ms, 18250ms total)
T4560 513:041 JLINK_IsHalted()  returns TRUE (0000ms, 18250ms total)
T4560 513:041 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 18250ms total)
T4560 513:041 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 18250ms total)
T4560 513:041 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 18250ms total)
T4560 513:041 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0000ms, 18250ms total)
T4560 513:041 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0002ms, 18252ms total)
T4560 513:043 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R0)  returns 0x0000000A (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R1)  returns 0x00000400 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R2)  returns 0xE000E100 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R4)  returns 0x0800B5D0 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R6)  returns 0x0800B5D0 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R14)  returns 0x08008A5F (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(R15 (PC))  returns 0x0800B26A (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18253ms total)
T4560 513:044 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18253ms total)
T4B74 513:044 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 18255ms total)
T4B74 513:047 JLINK_ReadMemEx(0x20000074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000074) - Data: 00 00  returns 0x02 (0000ms, 18255ms total)
T4B74 513:047 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 18256ms total)
T4B74 513:048 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0001ms, 18257ms total)
T4B74 513:049 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 01  returns 0x01 (0000ms, 18257ms total)
T4B74 513:049 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0002ms, 18259ms total)
T4B74 513:051 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 18259ms total)
T4B74 513:051 JLINK_ReadMemEx(0x200000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000EC) - Data: 00 00  returns 0x02 (0002ms, 18261ms total)
T4B74 513:053 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 18261ms total)
T4B74 513:053 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18261ms total)
T4B74 513:053 JLINK_ReadMemEx(0x200000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000EA) - Data: 00 00  returns 0x02 (0000ms, 18261ms total)
T4B74 519:351 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0005ms, 18266ms total)
T4B74 519:351  (0005ms, 18266ms total)
T4B74 519:351 Closed (0005ms, 18266ms total)