zhyinch
2021-01-06 c84c6ca0dd7fa662fc589f02da10b3a89e45c659
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
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
T46B8 2988:106 SEGGER J-Link V6.46 Log File (0001ms, 15633ms total)
T46B8 2988:106 DLL Compiled: May 23 2019 17:49:56 (0001ms, 15633ms total)
T46B8 2988:106 Logging started @ 2021-01-06 11:30 (0001ms, 15633ms total)
T46B8 2988:107 JLINK_SetWarnOutHandler(...) (0000ms, 15633ms total)
T46B8 2988:107 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 (0043ms, 15676ms total)
T46B8 2988:107 WEBSRV Webserver running on local port 19080 (0043ms, 15676ms total)
T46B8 2988:107   returns O.K. (0043ms, 15676ms total)
T46B8 2988:150 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 15676ms total)
T46B8 2988:151 JLINK_TIF_GetAvailable(...) (0000ms, 15676ms total)
T46B8 2988:151 JLINK_SetErrorOutHandler(...) (0000ms, 15676ms total)
T46B8 2988:151 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0003ms, 15679ms total)
T46B8 2988:154 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0003ms, 15682ms total)
T46B8 2988:157 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetFirmwareString(...) (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetCompileDateTime() (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetFirmwareString(...) (0000ms, 15682ms total)
T46B8 2988:157 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 15682ms total)
T46B8 2988:157 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 15683ms total)
T46B8 2988:158 JLINK_SetSpeed(5000) (0001ms, 15684ms total)
T46B8 2988:159 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 reached
AP[0]: AHB-AP (IDR: 0x04770031)Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
Found Cortex-M0 r0p1, Little endian. -- Max. mem block: 0x00002C18 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0)
 -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0201ms, 15885ms total)
T46B8 2988:360 JLINK_GetDLLVersion()  returns 64600 (0000ms, 15885ms total)
T46B8 2988:360 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 15885ms total)
T46B8 2988:360 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 15885ms total)
T46B8 2988:360 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 15885ms total)
T46B8 2988:360 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15885ms total)
T46B8 2988:360 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, 15886ms total)
T46B8 2988:361 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15886ms total)
T46B8 2988:361 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15886ms total)
T46B8 2988:361 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, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 15887ms total)
T46B8 2988:362 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0001ms, 15888ms total)
T46B8 2988:363 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 15888ms total)
T46B8 2988:363 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 15888ms total)
T46B8 2988:363 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) (0076ms, 15964ms total)
T46B8 2988:439 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15964ms total)
T46B8 2988:439 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15964ms total)
T46B8 2988:439 JLINK_Halt()  returns 0x00 (0000ms, 15964ms total)
T46B8 2988:439 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 15965ms total)
T46B8 2988:440 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 15966ms total)
T46B8 2988:441 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 15967ms total)
T46B8 2988:442 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 15968ms total)
T46B8 2988:443 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 15968ms total)
T46B8 2988:443 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 15968ms total)
T46B8 2988:443 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 15968ms total)
T46B8 2988:443 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 15968ms total)
T46B8 2988:443 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 15969ms total)
T46B8 2988:444 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 15969ms total)
T46B8 2988:444 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 15969ms total)
T46B8 2988:525 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 15969ms total)
T46B8 2988:525 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) (0072ms, 16041ms total)
T46B8 2988:597 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 16041ms total)
T46B8 2988:597 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 16041ms total)
T46B8 2988:597 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, 16043ms total)
T46B8 2988:599 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:599 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 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, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 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, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 16043ms total)
T46B8 2988:600 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, 16043ms total)
T46B8 2988:600 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 16043ms total)
T46B8 2990:793 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16044ms total)
T46B8 2990:794 JLINK_ReadReg(CFBP)  returns 0x00000000 (0001ms, 16045ms total)
T46B8 2990:972 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16046ms total)
T46B8 2990:979 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0000ms, 16046ms total)
T46B8 2990:979 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0000ms, 16046ms total)
T46B8 2990:986 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16048ms total)
T46B8 2990:989 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16048ms total)
T46B8 2990:989 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16048ms total)
T46B8 2990:993 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 16051ms total)
T46B8 2990:996 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 16051ms total)
T46B8 2990:996 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 16051ms total)
T46B8 2991:000 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16053ms total)
T46B8 2991:002 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0000ms, 16053ms total)
T46B8 2991:002 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0000ms, 16053ms total)
T46B8 2991:009 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16053ms total)
T46B8 2991:009 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16053ms total)
T46B8 2991:009 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16053ms total)
T46B8 2991:015 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16055ms total)
T46B8 2991:017 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:017 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:024 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:024 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:025 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:030 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:030 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:030 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:035 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:035 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:035 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:194 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:195 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:195 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:203 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:203 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:203 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:208 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:208 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:208 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:216 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:216 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:216 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:217 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:217 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:217 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:220 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:220 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:220 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:221 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:221 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:221 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:222 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:223 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:223 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:223 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:224 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:224 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:224 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:225 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:225 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:225 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:226 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:226 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:226 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:227 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:227 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:228 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:228 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:228 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:228 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:229 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:229 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:229 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:230 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:230 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:230 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:231 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:231 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:231 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16055ms total)
T46B8 2991:232 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:232 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:232 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16055ms total)
T46B8 2991:232 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:233 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:233 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:234 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:234 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T46B8 2991:234 JLINK_ReadMemEx(0x20000108, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000108) - Data: 01 00  returns 0x02 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x0800BE54, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2) -- BP[0] @ 0x0800BE54 converted into FlashBP  returns 0x00000005 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2) -- BP[1] @ 0x08009074 converted into FlashBP  returns 0x00000006 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2) -- BP[2] @ 0x08008210 converted into FlashBP  returns 0x00000007 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2) -- BP[3] @ 0x08005B0A converted into FlashBP  returns 0x00000008 (0000ms, 16055ms total)
T47EC 2991:255 JLINK_Go() -- Read from C cache (2 bytes @ 0x080000D4) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- Read from C cache (4 bytes @ 0x080000E8) -- Simulated -- Read from C cache (2 bytes @ 0x080000D6) -- Simulated -- CPU_ReadMem(64 bytes @ 0x08002500) -- Updating C cache (64 bytes @ 0x08002500) -- Read from C cache (2 bytes @ 0x0800250C) -- CPU_ReadMem(64 bytes @ 0x08002540)
 -- Updating C cache (64 bytes @ 0x08002540) -- Read from C cache (4 bytes @ 0x08002564) -- Simulated -- Read from C cache (2 bytes @ 0x0800250E) -- Not simulated -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Checking target RAM
 -- Preparing RAMCode -- End of preparing flash programming -- CPU_ReadMem(128 bytes @ 0x0800BE00) -- Updating flash cache (128 bytes @ 0x0800BE00) -- Programming range 0x0800BE00 - 0x0800BE7F (  1 Sector, 128 Bytes) -- CPU_ReadMem(128 bytes @ 0x08009000) -- Updating flash cache (128 bytes @ 0x08009000) -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- CPU_ReadMem(128 bytes @ 0x08008200) -- Updating flash cache (128 bytes @ 0x08008200)
 -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- CPU_ReadMem(128 bytes @ 0x08005B00) -- Updating flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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) (0322ms, 16377ms total)
T47EC 2991:678 JLINK_IsHalted()  returns TRUE (0003ms, 16380ms total)
T47EC 2991:681 JLINK_Halt()  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:681 JLINK_IsHalted()  returns TRUE (0000ms, 16377ms total)
T47EC 2991:681 JLINK_IsHalted()  returns TRUE (0000ms, 16377ms total)
T47EC 2991:681 JLINK_IsHalted()  returns TRUE (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ReadReg(R15 (PC))  returns 0x0800BE54 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 16377ms total)
T47EC 2991:682 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16378ms total)
T47EC 2991:683 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0000ms, 16378ms total)
T47EC 2991:683 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R0)  returns 0x0800BE55 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R1)  returns 0x20001AD0 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R3)  returns 0x0800A5DD (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R6)  returns 0x0800C2D0 (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16379ms total)
T47EC 2991:684 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0001ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R13 (SP))  returns 0x20001AD0 (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R14)  returns 0x080059FD (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(R15 (PC))  returns 0x0800BE54 (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(MSP)  returns 0x20001AD0 (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16380ms total)
T47EC 2991:685 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16380ms total)
T46B8 2991:686 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16381ms total)
T46B8 2991:687 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16383ms total)
T46B8 2991:689 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 16385ms total)
T46B8 2991:691 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16387ms total)
T46B8 2991:693 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16387ms total)
T46B8 2991:693 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 00  returns 0x01 (0001ms, 16388ms total)
T46B8 2991:694 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16389ms total)
T46B8 2991:695 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:695 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:695 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:695 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:696 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16389ms total)
T46B8 2991:696 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16389ms total)
T46B8 2991:696 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:696 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:697 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:698 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T46B8 2991:698 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16389ms total)
T46B8 2991:698 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:698 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 00 00  returns 0x02 (0000ms, 16389ms total)
T46B8 2991:699 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16389ms total)
T46B8 2991:699 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16389ms total)
T47EC 2995:335 JLINK_ReadMemEx(0x0800BE54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[0]: 0xF7FA @ 0x0800BE54 -- Merging zombie BP[0]: 0xF7FA @ 0x0800BE54 - Data: FA F7  returns 0x02 (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000009 (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000000A (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000000B (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000000C (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x0000000D (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x0000000E (0000ms, 16389ms total)
T47EC 2995:335 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x0000000F (0000ms, 16389ms total)
T47EC 2995:335 JLINK_Go() -- Merging zombie BP[0]: 0xF7FA @ 0x0800BE54 -- Merging zombie BP[0]: 0xF7FA @ 0x0800BE54 -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from flash cache (2 bytes @ 0x0800BE56) -- Simulated -- CPU_ReadMem(64 bytes @ 0x08006AC0) -- Updating C cache (64 bytes @ 0x08006AC0) -- Read from C cache (2 bytes @ 0x08006AE0) -- CPU_WriteMem(8 bytes @ 0x20001AC8) -- Simulated -- Read from C cache (2 bytes @ 0x08006AE2) -- CPU_ReadMem(64 bytes @ 0x08006B00)
 -- Updating C cache (64 bytes @ 0x08006B00) -- Read from C cache (4 bytes @ 0x08006B04) -- Simulated -- Read from C cache (2 bytes @ 0x08006AE4) -- Simulated -- Read from C cache (2 bytes @ 0x08006AE6) -- Not simulated -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target
 -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x0800BE00) -- Programming range 0x0800BE00 - 0x0800BE7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0239ms, 16628ms total)
T47EC 2995:675 JLINK_IsHalted()  returns TRUE (0004ms, 16632ms total)
T47EC 2995:681 JLINK_Halt()  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_IsHalted()  returns TRUE (0000ms, 16628ms total)
T47EC 2995:681 JLINK_IsHalted()  returns TRUE (0000ms, 16628ms total)
T47EC 2995:681 JLINK_IsHalted()  returns TRUE (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x00000009)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000A)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000B)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000C)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000D)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000E)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ClrBPEx(BPHandle = 0x0000000F)  returns 0x00 (0000ms, 16628ms total)
T47EC 2995:681 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16629ms total)
T47EC 2995:682 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16630ms total)
T47EC 2995:683 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0002ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R0)  returns 0x50000400 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R1)  returns 0x20001A58 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R2)  returns 0x00000008 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R3)  returns 0x50000404 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R13 (SP))  returns 0x20001AB0 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R14)  returns 0x00300000 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(MSP)  returns 0x20001AB0 (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16632ms total)
T47EC 2995:685 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16632ms total)
T46B8 2995:686 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 16634ms total)
T46B8 2995:688 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16634ms total)
T46B8 2995:688 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16634ms total)
T46B8 2995:688 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 16634ms total)
T46B8 2995:689 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 16636ms total)
T46B8 2995:691 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16638ms total)
T46B8 2995:693 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 16642ms total)
T46B8 2995:697 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16644ms total)
T46B8 2995:699 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16644ms total)
T46B8 2995:699 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:702 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:703 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16646ms total)
T46B8 2995:704 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16646ms total)
T46B8 2995:708 JLINK_ReadMemEx(0x08008210, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08008210) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7 68 FC 05 B0 30 BD 01 22 09 4D 94 02 21 46 ...  returns 0x3C (0000ms, 16646ms total)
T46B8 2995:708 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0000ms, 16646ms total)
T46B8 2995:708 JLINK_ReadMemEx(0x08008212, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08008212) - Data: 68 FC  returns 0x02 (0000ms, 16646ms total)
T47EC 2996:462 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0000ms, 16646ms total)
T47EC 2996:462 JLINK_Step() -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from flash cache (2 bytes @ 0x08008212) -- Simulated  returns 0x00 (0002ms, 16648ms total)
T47EC 2996:464 JLINK_ReadReg(R15 (PC))  returns 0x08005AE4 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000010 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000011 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000012 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000013 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000014 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000015 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000016 (0000ms, 16648ms total)
T47EC 2996:464 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 16657ms total)
T47EC 2996:574 JLINK_IsHalted()  returns FALSE (0001ms, 16658ms total)
T47EC 2996:676 JLINK_IsHalted()  returns TRUE (0004ms, 16661ms total)
T47EC 2996:680 JLINK_Halt()  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_IsHalted()  returns TRUE (0000ms, 16657ms total)
T47EC 2996:680 JLINK_IsHalted()  returns TRUE (0000ms, 16657ms total)
T47EC 2996:680 JLINK_IsHalted()  returns TRUE (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000010)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000011)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000012)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000013)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000014)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000015)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ClrBPEx(BPHandle = 0x00000016)  returns 0x00 (0000ms, 16657ms total)
T47EC 2996:680 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16658ms total)
T47EC 2996:681 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16659ms total)
T47EC 2996:682 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0002ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R0)  returns 0x00000006 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R1)  returns 0x0000000A (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R2)  returns 0x00000001 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R3)  returns 0x0800C109 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R4)  returns 0x20000148 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R13 (SP))  returns 0x20001A38 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R14)  returns 0x080083E1 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(MSP)  returns 0x20001A38 (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16661ms total)
T47EC 2996:684 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16661ms total)
T46B8 2996:684 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0003ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A84) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A88) - Data: 00 00 00 00  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A8C) - Data: 04 00 FA 05  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001A90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A90) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 16664ms total)
T46B8 2996:687 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0003ms, 16667ms total)
T46B8 2996:690 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16667ms total)
T46B8 2996:690 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16667ms total)
T46B8 2996:690 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 16667ms total)
T46B8 2996:690 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0002ms, 16669ms total)
T46B8 2996:692 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 16669ms total)
T46B8 2996:692 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 8E 06 B9 F2  returns 0x06 (0002ms, 16671ms total)
T46B8 2996:694 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0000ms, 16671ms total)
T46B8 2996:694 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 16671ms total)
T46B8 2996:694 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 8E 06 B9 F2  returns 0x06 (0000ms, 16671ms total)
T46B8 2996:694 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0003ms, 16674ms total)
T46B8 2996:697 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16675ms total)
T46B8 2996:698 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 16679ms total)
T46B8 2996:702 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16681ms total)
T46B8 2996:704 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16681ms total)
T46B8 2996:704 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:706 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:707 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16683ms total)
T46B8 2996:708 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16683ms total)
T46B8 2996:712 JLINK_ReadMemEx(0x0800B228, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800B200) -- Updating C cache (128 bytes @ 0x0800B200) -- Read from C cache (60 bytes @ 0x0800B228) - Data: 06 28 03 DA 00 20 C0 43 13 B0 F0 BD 68 46 40 78 ...  returns 0x3C (0002ms, 16685ms total)
T46B8 2996:714 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 16685ms total)
T46B8 2996:715 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0000ms, 16685ms total)
T46B8 2996:715 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0001ms, 16686ms total)
T46B8 2996:716 JLINK_ReadMemEx(0x0800B22C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B22C) - Data: 00 20 C0 43 13 B0 F0 BD 68 46 40 78 01 02 68 46 ...  returns 0x3C (0000ms, 16686ms total)
T46B8 2996:716 JLINK_ReadMemEx(0x0800B22C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22C) - Data: 00 20  returns 0x02 (0000ms, 16686ms total)
T47EC 2997:222 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 16686ms total)
T47EC 2997:222 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B228) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 16688ms total)
T47EC 2997:224 JLINK_ReadReg(R15 (PC))  returns 0x0800B22A (0000ms, 16688ms total)
T47EC 2997:224 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000017 (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000018 (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000019 (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000001A (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x0000001B (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x0000001C (0000ms, 16688ms total)
T47EC 2997:224 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x0000001D (0000ms, 16688ms total)
T47EC 2997:224 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 16697ms total)
T47EC 2997:334 JLINK_IsHalted()  returns TRUE (0004ms, 16701ms total)
T47EC 2997:338 JLINK_Halt()  returns 0x00 (0000ms, 16697ms total)
T47EC 2997:338 JLINK_IsHalted()  returns TRUE (0000ms, 16697ms total)
T47EC 2997:338 JLINK_IsHalted()  returns TRUE (0000ms, 16697ms total)
T47EC 2997:338 JLINK_IsHalted()  returns TRUE (0000ms, 16697ms total)
T47EC 2997:338 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 16697ms total)
T47EC 2997:338 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16697ms total)
T47EC 2997:338 JLINK_ClrBPEx(BPHandle = 0x00000017)  returns 0x00 (0000ms, 16697ms total)
T47EC 2997:338 JLINK_ClrBPEx(BPHandle = 0x00000018)  returns 0x00 (0000ms, 16697ms total)
T47EC 2997:338 JLINK_ClrBPEx(BPHandle = 0x00000019)  returns 0x00 (0001ms, 16698ms total)
T47EC 2997:339 JLINK_ClrBPEx(BPHandle = 0x0000001A)  returns 0x00 (0000ms, 16698ms total)
T47EC 2997:339 JLINK_ClrBPEx(BPHandle = 0x0000001B)  returns 0x00 (0000ms, 16698ms total)
T47EC 2997:339 JLINK_ClrBPEx(BPHandle = 0x0000001C)  returns 0x00 (0000ms, 16698ms total)
T47EC 2997:339 JLINK_ClrBPEx(BPHandle = 0x0000001D)  returns 0x00 (0000ms, 16698ms total)
T47EC 2997:339 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 16699ms total)
T47EC 2997:340 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16700ms total)
T47EC 2997:341 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R1)  returns 0x403C42ED (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R2)  returns 0x625F4A2B (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R3)  returns 0x409018E5 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16701ms total)
T47EC 2997:342 JLINK_ReadReg(R12)  returns 0x00000003 (0001ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(R13 (SP))  returns 0x20001A98 (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(R14)  returns 0x0800599F (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(MSP)  returns 0x20001A98 (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16702ms total)
T47EC 2997:343 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16702ms total)
T46B8 2997:343 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0002ms, 16704ms total)
T46B8 2997:345 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16704ms total)
T46B8 2997:345 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 16704ms total)
T46B8 2997:345 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 16706ms total)
T46B8 2997:347 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 16706ms total)
T46B8 2997:347 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16706ms total)
T46B8 2997:347 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 16706ms total)
T46B8 2997:348 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 16708ms total)
T46B8 2997:350 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16710ms total)
T46B8 2997:352 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 16714ms total)
T46B8 2997:356 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16716ms total)
T46B8 2997:358 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16716ms total)
T46B8 2997:358 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16718ms total)
T46B8 2997:360 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:360 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:360 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:360 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:361 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16718ms total)
T46B8 2997:362 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16718ms total)
T46B8 2997:366 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 16718ms total)
T46B8 2997:366 JLINK_ReadMemEx(0x08005B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08005B0C) - Data: 04 B0 10 BD 2D C1 00 08 09 C1 00 08 89 C1 00 08 ...  returns 0x3C (0000ms, 16718ms total)
T46B8 2997:366 JLINK_ReadMemEx(0x08005B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08005B0C) - Data: 04 B0  returns 0x02 (0000ms, 16718ms total)
T47EC 2997:815 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 16718ms total)
T47EC 2997:815 JLINK_Step() -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 16719ms total)
T47EC 2997:816 JLINK_ReadReg(R15 (PC))  returns 0x08005B0C (0000ms, 16719ms total)
T47EC 2997:816 JLINK_ReadReg(XPSR)  returns 0x6100000F (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000001E (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000001F (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000020 (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000021 (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000022 (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000023 (0000ms, 16719ms total)
T47EC 2997:816 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000024 (0000ms, 16719ms total)
T47EC 2997:816 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 16728ms total)
T47EC 2997:926 JLINK_IsHalted()  returns FALSE (0001ms, 16729ms total)
T47EC 2998:028 JLINK_IsHalted()  returns FALSE (0000ms, 16728ms total)
T47EC 2998:129 JLINK_IsHalted()  returns FALSE (0001ms, 16729ms total)
T47EC 2998:231 JLINK_IsHalted()  returns FALSE (0000ms, 16728ms total)
T47EC 2998:332 JLINK_IsHalted()  returns FALSE (0001ms, 16729ms total)
T46B8 2998:434 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16729ms total)
T46B8 2998:435 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16730ms total)
T46B8 2998:436 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 16732ms total)
T46B8 2998:438 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0001ms, 16733ms total)
T46B8 2998:439 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16734ms total)
T46B8 2998:440 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0000ms, 16734ms total)
T46B8 2998:441 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16734ms total)
T46B8 2998:441 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16735ms total)
T46B8 2998:442 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0001ms, 16736ms total)
T46B8 2998:443 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16737ms total)
T46B8 2998:445 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16738ms total)
T46B8 2998:446 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16739ms total)
T46B8 2998:447 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 16740ms total)
T46B8 2998:448 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 16741ms total)
T46B8 2998:449 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16742ms total)
T46B8 2998:450 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0001ms, 16743ms total)
T46B8 2998:451 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 16744ms total)
T46B8 2998:452 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16745ms total)
T46B8 2998:453 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16746ms total)
T46B8 2998:454 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16747ms total)
T46B8 2998:455 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16748ms total)
T46B8 2998:456 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0001ms, 16749ms total)
T46B8 2998:457 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16750ms total)
T46B8 2998:458 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0001ms, 16751ms total)
T46B8 2998:459 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000100) - Data: 73 03  returns 0x02 (0001ms, 16752ms total)
T46B8 2998:460 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0001ms, 16753ms total)
T46B8 2998:461 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16754ms total)
T46B8 2998:462 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16755ms total)
T47EC 2998:463 JLINK_IsHalted()  returns FALSE (0001ms, 16756ms total)
T47EC 2998:565 JLINK_IsHalted()  returns FALSE (0001ms, 16756ms total)
T47EC 2998:666 JLINK_IsHalted()  returns FALSE (0001ms, 16756ms total)
T47EC 2998:768 JLINK_IsHalted()  returns FALSE (0001ms, 16756ms total)
T47EC 2998:870 JLINK_IsHalted()  returns FALSE (0001ms, 16756ms total)
T46B8 2998:972 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16756ms total)
T46B8 2998:973 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16756ms total)
T46B8 2998:974 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 16758ms total)
T46B8 2998:975 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0001ms, 16759ms total)
T46B8 2998:976 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0002ms, 16761ms total)
T46B8 2998:978 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0000ms, 16761ms total)
T46B8 2998:978 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16762ms total)
T46B8 2998:979 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0003ms, 16765ms total)
T46B8 2998:982 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16765ms total)
T46B8 2998:982 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16766ms total)
T46B8 2998:984 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16767ms total)
T46B8 2998:985 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0002ms, 16769ms total)
T46B8 2998:987 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 16770ms total)
T46B8 2998:988 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0002ms, 16772ms total)
T46B8 2998:990 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16773ms total)
T46B8 2998:991 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0001ms, 16774ms total)
T46B8 2998:992 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 16775ms total)
T46B8 2998:993 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16776ms total)
T46B8 2998:994 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16777ms total)
T46B8 2998:995 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16778ms total)
T46B8 2998:996 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16779ms total)
T46B8 2998:997 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0002ms, 16781ms total)
T46B8 2998:999 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16782ms total)
T46B8 2999:000 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16782ms total)
T46B8 2999:000 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000100) - Data: A8 01  returns 0x02 (0001ms, 16783ms total)
T46B8 2999:002 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0001ms, 16784ms total)
T46B8 2999:003 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16785ms total)
T46B8 2999:004 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16786ms total)
T47EC 2999:005 JLINK_IsHalted()  returns FALSE (0001ms, 16787ms total)
T47EC 2999:107 JLINK_IsHalted()  returns FALSE (0001ms, 16787ms total)
T47EC 2999:209 JLINK_IsHalted()  returns FALSE (0000ms, 16786ms total)
T47EC 2999:311 JLINK_IsHalted()  returns FALSE (0001ms, 16787ms total)
T47EC 2999:412 JLINK_IsHalted()  returns FALSE (0001ms, 16787ms total)
T46B8 2999:514 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16787ms total)
T46B8 2999:515 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16788ms total)
T46B8 2999:516 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 16790ms total)
T46B8 2999:518 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0001ms, 16791ms total)
T46B8 2999:519 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16792ms total)
T46B8 2999:520 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0001ms, 16793ms total)
T46B8 2999:521 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16794ms total)
T46B8 2999:523 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16795ms total)
T46B8 2999:524 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0001ms, 16796ms total)
T46B8 2999:525 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16798ms total)
T46B8 2999:527 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16799ms total)
T46B8 2999:528 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16800ms total)
T46B8 2999:530 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 16801ms total)
T46B8 2999:531 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 16802ms total)
T46B8 2999:532 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16803ms total)
T46B8 2999:533 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0002ms, 16805ms total)
T46B8 2999:535 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 16806ms total)
T46B8 2999:536 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16807ms total)
T46B8 2999:537 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16808ms total)
T46B8 2999:538 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16809ms total)
T46B8 2999:539 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16810ms total)
T46B8 2999:540 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0001ms, 16811ms total)
T46B8 2999:541 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16812ms total)
T46B8 2999:542 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0001ms, 16813ms total)
T46B8 2999:543 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000100) - Data: C7 03  returns 0x02 (0001ms, 16814ms total)
T46B8 2999:545 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0001ms, 16815ms total)
T46B8 2999:546 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16816ms total)
T46B8 2999:547 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16817ms total)
T47EC 2999:548 JLINK_IsHalted()  returns FALSE (0001ms, 16818ms total)
T47EC 2999:650 JLINK_IsHalted()  returns FALSE (0001ms, 16818ms total)
T47EC 2999:751 JLINK_IsHalted()  returns FALSE (0001ms, 16818ms total)
T47EC 2999:853 JLINK_IsHalted()  returns FALSE (0001ms, 16818ms total)
T47EC 2999:955 JLINK_IsHalted()  returns FALSE (0000ms, 16817ms total)
T46B8 3000:057 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 16818ms total)
T46B8 3000:058 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16820ms total)
T46B8 3000:060 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 16821ms total)
T46B8 3000:061 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0001ms, 16822ms total)
T46B8 3000:062 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0002ms, 16824ms total)
T46B8 3000:064 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0001ms, 16825ms total)
T46B8 3000:065 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16826ms total)
T46B8 3000:066 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16827ms total)
T46B8 3000:067 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0001ms, 16828ms total)
T46B8 3000:068 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16830ms total)
T46B8 3000:070 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16830ms total)
T46B8 3000:070 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16831ms total)
T46B8 3000:072 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 16832ms total)
T46B8 3000:073 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 16833ms total)
T46B8 3000:074 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0001ms, 16834ms total)
T46B8 3000:075 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0001ms, 16835ms total)
T46B8 3000:076 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 16836ms total)
T46B8 3000:077 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16836ms total)
T46B8 3000:077 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0001ms, 16837ms total)
T46B8 3000:078 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 16838ms total)
T46B8 3000:079 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0001ms, 16839ms total)
T46B8 3000:080 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0001ms, 16840ms total)
T46B8 3000:082 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16840ms total)
T46B8 3000:082 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0001ms, 16841ms total)
T46B8 3000:083 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000100) - Data: FC 01  returns 0x02 (0001ms, 16842ms total)
T46B8 3000:085 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0001ms, 16843ms total)
T46B8 3000:086 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 16844ms total)
T46B8 3000:087 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16844ms total)
T47EC 3000:088 JLINK_IsHalted()  returns FALSE (0000ms, 16844ms total)
T47EC 3000:189 JLINK_IsHalted()  returns FALSE (0001ms, 16845ms total)
T47EC 3000:291 JLINK_IsHalted()  returns FALSE (0001ms, 16845ms total)
T47EC 3000:393 JLINK_IsHalted()  returns FALSE (0001ms, 16845ms total)
T47EC 3000:494 JLINK_IsHalted()  returns FALSE (0001ms, 16845ms total)
T47EC 3000:596 JLINK_Halt()  returns 0x00 (0005ms, 16849ms total)
T47EC 3000:601 JLINK_IsHalted()  returns TRUE (0000ms, 16849ms total)
T47EC 3000:601 JLINK_IsHalted()  returns TRUE (0000ms, 16849ms total)
T47EC 3000:601 JLINK_IsHalted()  returns TRUE (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ReadReg(R15 (PC))  returns 0x08005510 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ReadReg(XPSR)  returns 0x4100000F (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x0000001E)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x0000001F)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x00000020)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x00000021)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x00000022)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x00000023)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ClrBPEx(BPHandle = 0x00000024)  returns 0x00 (0000ms, 16849ms total)
T47EC 3000:601 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 16850ms total)
T47EC 3000:602 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16851ms total)
T47EC 3000:603 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R6)  returns 0x20001A90 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R12)  returns 0x00000001 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R13 (SP))  returns 0x20001A68 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R14)  returns 0x00000000 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(R15 (PC))  returns 0x08005510 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(XPSR)  returns 0x4100000F (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(MSP)  returns 0x20001A68 (0000ms, 16852ms total)
T47EC 3000:604 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0001ms, 16853ms total)
T47EC 3000:605 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16853ms total)
T46B8 3000:605 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: A3 5E 00 08  returns 0x04 (0001ms, 16854ms total)
T46B8 3000:606 JLINK_ReadMemEx(0x20001A98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A98) - Data: EC 00 00 20  returns 0x04 (0000ms, 16854ms total)
T46B8 3000:606 JLINK_ReadMemEx(0x20001AA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA0) - Data: 00 00 00 00  returns 0x04 (0000ms, 16854ms total)
T46B8 3000:606 JLINK_ReadMemEx(0x20001AA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA4) - Data: 04 00 FA 05  returns 0x04 (0000ms, 16854ms total)
T46B8 3000:606 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: 00 ED 00 E0  returns 0x04 (0001ms, 16855ms total)
T46B8 3000:607 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: A3 5E 00 08  returns 0x04 (0000ms, 16855ms total)
T46B8 3000:607 JLINK_ReadMemEx(0x20001AB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB4) - Data: 4D 84 00 08  returns 0x04 (0000ms, 16855ms total)
T46B8 3000:607 JLINK_ReadMemEx(0x20001AB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB0) - Data: EC 00 00 20  returns 0x04 (0000ms, 16855ms total)
T46B8 3000:607 JLINK_ReadMemEx(0x20001AB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB4) - Data: 4D 84 00 08  returns 0x04 (0000ms, 16855ms total)
T46B8 3000:607 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 81 BF 00 08  returns 0x04 (0001ms, 16856ms total)
T46B8 3000:609 JLINK_ReadMemEx(0x20001ABC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ABC) - Data: EC 00 00 20  returns 0x04 (0000ms, 16856ms total)
T46B8 3000:609 JLINK_ReadMemEx(0x20001AC0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC0) - Data: 00 00 00 00  returns 0x04 (0000ms, 16856ms total)
T46B8 3000:609 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: 04 00 FA 05  returns 0x04 (0000ms, 16856ms total)
T46B8 3000:609 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 16856ms total)
T46B8 3000:609 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 81 BF 00 08  returns 0x04 (0000ms, 16856ms total)
T46B8 3000:610 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 16858ms total)
T46B8 3000:612 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 16860ms total)
T46B8 3000:614 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 16863ms total)
T46B8 3000:617 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 16865ms total)
T46B8 3000:619 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16865ms total)
T46B8 3000:619 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16867ms total)
T46B8 3000:621 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:621 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16867ms total)
T46B8 3000:621 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:621 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16867ms total)
T46B8 3000:622 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16867ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 14 00  returns 0x02 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16868ms total)
T46B8 3000:623 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 16869ms total)
T46B8 3000:627 JLINK_ReadMemEx(0x08005510, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08005500) -- Updating C cache (128 bytes @ 0x08005500) -- Read from C cache (60 bytes @ 0x08005510) - Data: 4F 00 F7 5B 7D 43 00 27 AA 18 7C 41 49 1C 5B 1E ...  returns 0x3C (0002ms, 16871ms total)
T46B8 3000:629 JLINK_ReadMemEx(0x08005510, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005510) - Data: 4F 00  returns 0x02 (0000ms, 16871ms total)
T46B8 3000:629 JLINK_ReadMemEx(0x08005512, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005512) - Data: F7 5B  returns 0x02 (0000ms, 16871ms total)
T46B8 3000:629 JLINK_ReadMemEx(0x08005512, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005512) - Data: F7 5B  returns 0x02 (0000ms, 16871ms total)
T46B8 3000:629 JLINK_ReadMemEx(0x08005514, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005514) - Data: 7D 43 00 27 AA 18 7C 41 49 1C 5B 1E 61 45 F2 DD ...  returns 0x3C (0001ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005514, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005514) - Data: 7D 43  returns 0x02 (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005514, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005514) - Data: 7D 43 00 27 AA 18 7C 41 49 1C 5B 1E 61 45 F2 DD ...  returns 0x3C (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005514, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005514) - Data: 7D 43  returns 0x02 (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005516, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005516) - Data: 00 27  returns 0x02 (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005516, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005516) - Data: 00 27  returns 0x02 (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005518, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005518) - Data: AA 18 7C 41 49 1C 5B 1E 61 45 F2 DD 41 00 04 AB ...  returns 0x3C (0000ms, 16872ms total)
T46B8 3000:630 JLINK_ReadMemEx(0x08005518, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005518) - Data: AA 18  returns 0x02 (0000ms, 16872ms total)
T47EC 3001:606 JLINK_ReadMemEx(0x08005510, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005510) - Data: 4F 00  returns 0x02 (0001ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000025 (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000026 (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000027 (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000028 (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000029 (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x0000002A (0000ms, 16873ms total)
T47EC 3001:607 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x0000002B (0000ms, 16873ms total)
T47EC 3001:607 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0008ms, 16881ms total)
T47EC 3001:716 JLINK_IsHalted()  returns FALSE (0001ms, 16882ms total)
T47EC 3001:818 JLINK_IsHalted()  returns FALSE (0001ms, 16882ms total)
T47EC 3001:920 JLINK_IsHalted()  returns FALSE (0000ms, 16881ms total)
T47EC 3002:021 JLINK_IsHalted()  returns FALSE (0001ms, 16882ms total)
T47EC 3002:123 JLINK_Halt()  returns 0x00 (0004ms, 16885ms total)
T47EC 3002:127 JLINK_IsHalted()  returns TRUE (0000ms, 16885ms total)
T47EC 3002:127 JLINK_IsHalted()  returns TRUE (0000ms, 16885ms total)
T47EC 3002:127 JLINK_IsHalted()  returns TRUE (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ReadReg(R15 (PC))  returns 0x080055EC (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ReadReg(XPSR)  returns 0x4100000F (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x00000025)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x00000026)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x00000027)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x00000028)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x00000029)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x0000002A)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ClrBPEx(BPHandle = 0x0000002B)  returns 0x00 (0000ms, 16885ms total)
T47EC 3002:127 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 16886ms total)
T47EC 3002:128 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 16887ms total)
T47EC 3002:129 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R0)  returns 0x00000400 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R3)  returns 0x0017B000 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R4)  returns 0x00111692 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R6)  returns 0x001F4000 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R7)  returns 0x7B2CC400 (0000ms, 16888ms total)
T47EC 3002:130 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0001ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R13 (SP))  returns 0x20001A88 (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R14)  returns 0x00111692 (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(R15 (PC))  returns 0x080055EC (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(XPSR)  returns 0x4100000F (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(MSP)  returns 0x20001A88 (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 16889ms total)
T47EC 3002:131 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 16889ms total)
T46B8 3002:131 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: AB 5E 00 08  returns 0x04 (0002ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A9C) - Data: EC 00 00 20  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA0) - Data: 00 00 00 00  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA4) - Data: 04 00 FA 05  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: AB 5E 00 08  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB4) - Data: 4D 84 00 08  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB0) - Data: EC 00 00 20  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001AB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AB4) - Data: 4D 84 00 08  returns 0x04 (0000ms, 16891ms total)
T46B8 3002:133 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 81 BF 00 08  returns 0x04 (0002ms, 16893ms total)
T46B8 3002:135 JLINK_ReadMemEx(0x20001ABC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ABC) - Data: EC 00 00 20  returns 0x04 (0000ms, 16893ms total)
T46B8 3002:135 JLINK_ReadMemEx(0x20001AC0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC0) - Data: 00 00 00 00  returns 0x04 (0000ms, 16893ms total)
T46B8 3002:135 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: 04 00 FA 05  returns 0x04 (0000ms, 16893ms total)
T46B8 3002:135 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 16893ms total)
T46B8 3002:135 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 81 BF 00 08  returns 0x04 (0000ms, 16893ms total)
T46B8 3002:136 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 16895ms total)
T46B8 3002:138 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 16896ms total)
T46B8 3002:139 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 16900ms total)
T46B8 3002:143 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0001ms, 16901ms total)
T46B8 3002:144 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16901ms total)
T46B8 3002:144 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 16903ms total)
T46B8 3002:146 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:146 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:146 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:146 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:147 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:147 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:149 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:150 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:150 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 16903ms total)
T46B8 3002:150 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 22 02  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:151 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 16903ms total)
T46B8 3002:151 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 16903ms total)
T46B8 3002:151 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 16903ms total)
T46B8 3002:154 JLINK_ReadMemEx(0x080055EC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080055C0) -- Updating C cache (128 bytes @ 0x080055C0) -- Read from C cache (60 bytes @ 0x080055EC) - Data: 40 08 49 08 28 43 92 18 5B 41 05 46 0D 43 EA D1 ...  returns 0x3C (0003ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055EC) - Data: 40 08  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055EE) - Data: 49 08  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055EE) - Data: 49 08  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055F0) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055F0) - Data: 28 43  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055F0) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055F0) - Data: 28 43  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055F2) - Data: 92 18  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055F2) - Data: 92 18  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055F4) - Data: 5B 41 05 46 0D 43 EA D1 10 46 18 43 13 D0 60 46 ...  returns 0x3C (0000ms, 16906ms total)
T46B8 3002:157 JLINK_ReadMemEx(0x080055F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055F4) - Data: 5B 41  returns 0x02 (0000ms, 16906ms total)
T46B8 3002:948 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 16906ms total)
T46B8 3002:948 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x08009000)
 -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08008200) -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_ReadMem(4 bytes @ 0x20000000)
 -- CPU_WriteMem(4 bytes @ 0x20000000) -- 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) (0332ms, 17238ms total)
T46B8 3003:281 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 17238ms total)
T46B8 3003:281 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 17238ms total)
T46B8 3003:284 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, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 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, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 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, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 17240ms total)
T46B8 3003:286 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 (0001ms, 17241ms total)
T46B8 3003:287 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 17241ms total)
T46B8 3003:307 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 17241ms total)
T46B8 3003:307 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 17241ms total)
T46B8 3003:307 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 17241ms total)
T46B8 3003:307 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 17241ms total)
T46B8 3003:307 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0001ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17242ms total)
T46B8 3003:308 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 17244ms total)
T46B8 3003:310 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17246ms total)
T46B8 3003:312 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17249ms total)
T46B8 3003:315 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 00  returns 0x04 (0002ms, 17251ms total)
T46B8 3003:317 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17251ms total)
T46B8 3003:317 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:319 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 00 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17253ms total)
T46B8 3003:320 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 22 02  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:321 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17253ms total)
T46B8 3003:321 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17253ms total)
T46B8 3003:321 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17253ms total)
T47EC 3003:406 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000002C (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000002D (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000002E (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000002F (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2) -- BP[0] @ 0x08009074 converted into FlashBP  returns 0x00000030 (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2) -- BP[1] @ 0x08008210 converted into FlashBP  returns 0x00000031 (0000ms, 17253ms total)
T47EC 3003:406 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2) -- BP[2] @ 0x08005B0A converted into FlashBP  returns 0x00000032 (0000ms, 17253ms total)
T47EC 3003:406 JLINK_Go() -- Read from C cache (2 bytes @ 0x080000D4) -- Read from C cache (4 bytes @ 0x080000E8) -- Simulated -- Read from C cache (2 bytes @ 0x080000D6) -- Simulated -- CPU_ReadMem(64 bytes @ 0x08002500) -- Updating C cache (64 bytes @ 0x08002500) -- Read from C cache (2 bytes @ 0x0800250C) -- CPU_ReadMem(64 bytes @ 0x08002540) -- Updating C cache (64 bytes @ 0x08002540) -- Read from C cache (4 bytes @ 0x08002564) -- Simulated -- Read from C cache (2 bytes @ 0x0800250E) -- Not simulated
 -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x08009000)
 -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08008200) -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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) (0276ms, 17529ms total)
T47EC 3003:783 JLINK_IsHalted()  returns TRUE (0005ms, 17534ms total)
T47EC 3003:788 JLINK_Halt()  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_IsHalted()  returns TRUE (0000ms, 17529ms total)
T47EC 3003:788 JLINK_IsHalted()  returns TRUE (0000ms, 17529ms total)
T47EC 3003:788 JLINK_IsHalted()  returns TRUE (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x0000002C)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x0000002D)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x0000002E)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x0000002F)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x00000030)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x00000031)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ClrBPEx(BPHandle = 0x00000032)  returns 0x00 (0000ms, 17529ms total)
T47EC 3003:788 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17530ms total)
T47EC 3003:789 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0002ms, 17532ms total)
T47EC 3003:791 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R0)  returns 0x50000400 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R1)  returns 0x20001A58 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R2)  returns 0x00000008 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R3)  returns 0x50000404 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R13 (SP))  returns 0x20001AB0 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R14)  returns 0x00300000 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(MSP)  returns 0x20001AB0 (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17533ms total)
T47EC 3003:792 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17533ms total)
T46B8 3003:792 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 17535ms total)
T46B8 3003:794 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17535ms total)
T46B8 3003:794 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17535ms total)
T46B8 3003:794 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 17535ms total)
T46B8 3003:795 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 17536ms total)
T46B8 3003:796 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17538ms total)
T46B8 3003:798 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17541ms total)
T46B8 3003:801 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC CC 3D  returns 0x04 (0001ms, 17542ms total)
T46B8 3003:803 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17542ms total)
T46B8 3003:803 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0001ms, 17543ms total)
T46B8 3003:805 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 15 03 00  returns 0x04 (0000ms, 17543ms total)
T46B8 3003:805 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 28 00  returns 0x02 (0000ms, 17543ms total)
T46B8 3003:805 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17543ms total)
T46B8 3003:805 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17543ms total)
T46B8 3003:805 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0001ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 19 03 00  returns 0x04 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 02 1A 00 00  returns 0x04 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17544ms total)
T46B8 3003:806 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 15 03 00  returns 0x04 (0001ms, 17545ms total)
T46B8 3003:807 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 28 00  returns 0x02 (0000ms, 17545ms total)
T46B8 3003:807 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17545ms total)
T46B8 3003:807 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17545ms total)
T46B8 3003:807 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17545ms total)
T46B8 3003:807 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 17545ms total)
T46B8 3003:808 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17545ms total)
T46B8 3003:808 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17545ms total)
T46B8 3003:808 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17545ms total)
T46B8 3003:812 JLINK_ReadMemEx(0x08008210, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08008210) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7 68 FC 05 B0 30 BD 01 22 09 4D 94 02 21 46 ...  returns 0x3C (0000ms, 17545ms total)
T46B8 3003:812 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0000ms, 17545ms total)
T46B8 3003:812 JLINK_ReadMemEx(0x08008212, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08008212) - Data: 68 FC  returns 0x02 (0000ms, 17545ms total)
T47EC 3004:846 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0000ms, 17545ms total)
T47EC 3004:846 JLINK_Step() -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from flash cache (2 bytes @ 0x08008212) -- Simulated  returns 0x00 (0002ms, 17547ms total)
T47EC 3004:849 JLINK_ReadReg(R15 (PC))  returns 0x08005AE4 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000033 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000034 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000035 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000036 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000037 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000038 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000039 (0000ms, 17547ms total)
T47EC 3004:849 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 17555ms total)
T47EC 3004:958 JLINK_IsHalted()  returns FALSE (0001ms, 17556ms total)
T47EC 3005:060 JLINK_IsHalted()  returns TRUE (0004ms, 17559ms total)
T47EC 3005:064 JLINK_Halt()  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_IsHalted()  returns TRUE (0000ms, 17555ms total)
T47EC 3005:064 JLINK_IsHalted()  returns TRUE (0000ms, 17555ms total)
T47EC 3005:064 JLINK_IsHalted()  returns TRUE (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000033)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000034)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000035)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000036)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000037)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000038)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ClrBPEx(BPHandle = 0x00000039)  returns 0x00 (0000ms, 17555ms total)
T47EC 3005:064 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17556ms total)
T47EC 3005:065 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0002ms, 17558ms total)
T47EC 3005:067 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R0)  returns 0x00000006 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R1)  returns 0x0000000A (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R2)  returns 0x00000001 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R3)  returns 0x0800C109 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R4)  returns 0x20000148 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R13 (SP))  returns 0x20001A38 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R14)  returns 0x080083E1 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(MSP)  returns 0x20001A38 (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17559ms total)
T47EC 3005:068 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17559ms total)
T46B8 3005:069 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0002ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A84) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A88) - Data: 00 00 00 00  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A8C) - Data: 04 00 FA 05  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001A90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A90) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 17561ms total)
T46B8 3005:071 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0003ms, 17564ms total)
T46B8 3005:074 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17564ms total)
T46B8 3005:074 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17564ms total)
T46B8 3005:074 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 17564ms total)
T46B8 3005:074 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0001ms, 17565ms total)
T46B8 3005:075 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 17565ms total)
T46B8 3005:075 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 92 06 B3 14  returns 0x06 (0002ms, 17567ms total)
T46B8 3005:077 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0000ms, 17567ms total)
T46B8 3005:077 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 17567ms total)
T46B8 3005:077 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 92 06 B3 14  returns 0x06 (0000ms, 17567ms total)
T46B8 3005:077 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0003ms, 17570ms total)
T46B8 3005:080 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17572ms total)
T46B8 3005:082 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17575ms total)
T46B8 3005:085 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC 4C 3E  returns 0x04 (0002ms, 17577ms total)
T46B8 3005:087 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17577ms total)
T46B8 3005:087 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0003ms, 17580ms total)
T46B8 3005:090 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 17580ms total)
T46B8 3005:090 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0000ms, 17580ms total)
T46B8 3005:090 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0001ms, 17581ms total)
T46B8 3005:091 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17581ms total)
T46B8 3005:091 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17581ms total)
T46B8 3005:091 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17581ms total)
T46B8 3005:091 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 17581ms total)
T46B8 3005:091 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 90 04 00  returns 0x04 (0000ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 4C 26 00 00  returns 0x04 (0000ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17582ms total)
T46B8 3005:092 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 17582ms total)
T46B8 3005:093 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0000ms, 17582ms total)
T46B8 3005:093 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17582ms total)
T46B8 3005:093 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 17583ms total)
T46B8 3005:094 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17583ms total)
T46B8 3005:094 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 17583ms total)
T46B8 3005:094 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17583ms total)
T46B8 3005:094 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17583ms total)
T46B8 3005:094 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17583ms total)
T46B8 3005:099 JLINK_ReadMemEx(0x0800B228, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800B200) -- Updating C cache (128 bytes @ 0x0800B200) -- Read from C cache (60 bytes @ 0x0800B228) - Data: 06 28 03 DA 00 20 C0 43 13 B0 F0 BD 68 46 40 78 ...  returns 0x3C (0003ms, 17586ms total)
T46B8 3005:102 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 17586ms total)
T46B8 3005:102 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0000ms, 17586ms total)
T46B8 3005:102 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0000ms, 17586ms total)
T46B8 3005:102 JLINK_ReadMemEx(0x0800B22C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B22C) - Data: 00 20 C0 43 13 B0 F0 BD 68 46 40 78 01 02 68 46 ...  returns 0x3C (0000ms, 17586ms total)
T46B8 3005:102 JLINK_ReadMemEx(0x0800B22C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22C) - Data: 00 20  returns 0x02 (0000ms, 17586ms total)
T47EC 3005:439 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 17586ms total)
T47EC 3005:439 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B228) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 17587ms total)
T47EC 3005:440 JLINK_ReadReg(R15 (PC))  returns 0x0800B22A (0000ms, 17587ms total)
T47EC 3005:440 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000003A (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000003B (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000003C (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000003D (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x0000003E (0000ms, 17587ms total)
T47EC 3005:440 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x0000003F (0000ms, 17587ms total)
T47EC 3005:441 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000040 (0000ms, 17587ms total)
T47EC 3005:441 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 17595ms total)
T47EC 3005:549 JLINK_IsHalted()  returns TRUE (0005ms, 17600ms total)
T47EC 3005:554 JLINK_Halt()  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_IsHalted()  returns TRUE (0000ms, 17595ms total)
T47EC 3005:554 JLINK_IsHalted()  returns TRUE (0000ms, 17595ms total)
T47EC 3005:554 JLINK_IsHalted()  returns TRUE (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003A)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003B)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003C)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003D)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003E)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x0000003F)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ClrBPEx(BPHandle = 0x00000040)  returns 0x00 (0000ms, 17595ms total)
T47EC 3005:554 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17596ms total)
T47EC 3005:555 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17597ms total)
T47EC 3005:556 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 17598ms total)
T47EC 3005:557 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 17598ms total)
T47EC 3005:557 JLINK_ReadReg(R1)  returns 0x403C97E8 (0000ms, 17598ms total)
T47EC 3005:557 JLINK_ReadReg(R2)  returns 0x58277D09 (0000ms, 17598ms total)
T47EC 3005:557 JLINK_ReadReg(R3)  returns 0x40901900 (0001ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R13 (SP))  returns 0x20001A98 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R14)  returns 0x0800599F (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(MSP)  returns 0x20001A98 (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17599ms total)
T47EC 3005:558 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17599ms total)
T46B8 3005:559 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0002ms, 17601ms total)
T46B8 3005:561 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17601ms total)
T46B8 3005:561 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 17601ms total)
T46B8 3005:561 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 17603ms total)
T46B8 3005:563 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 17603ms total)
T46B8 3005:563 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17603ms total)
T46B8 3005:563 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 17603ms total)
T46B8 3005:564 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 17605ms total)
T46B8 3005:566 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17607ms total)
T46B8 3005:568 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17610ms total)
T46B8 3005:571 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 9A 99 99 3E  returns 0x04 (0002ms, 17612ms total)
T46B8 3005:573 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 17613ms total)
T46B8 3005:574 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 17615ms total)
T46B8 3005:576 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 17615ms total)
T46B8 3005:576 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0000ms, 17615ms total)
T46B8 3005:577 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17615ms total)
T46B8 3005:577 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17615ms total)
T46B8 3005:577 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17615ms total)
T46B8 3005:577 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17615ms total)
T46B8 3005:577 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 17616ms total)
T46B8 3005:578 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17616ms total)
T46B8 3005:578 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 07 06 00  returns 0x04 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 95 32 00 00  returns 0x04 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 17616ms total)
T46B8 3005:579 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0001ms, 17617ms total)
T46B8 3005:580 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17617ms total)
T46B8 3005:580 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17617ms total)
T46B8 3005:580 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17617ms total)
T46B8 3005:580 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0001ms, 17618ms total)
T46B8 3005:581 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17618ms total)
T46B8 3005:581 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17618ms total)
T46B8 3005:581 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17618ms total)
T46B8 3005:584 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 17618ms total)
T46B8 3005:584 JLINK_ReadMemEx(0x08005B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08005B0C) - Data: 04 B0 10 BD 2D C1 00 08 09 C1 00 08 89 C1 00 08 ...  returns 0x3C (0000ms, 17618ms total)
T46B8 3005:584 JLINK_ReadMemEx(0x08005B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08005B0C) - Data: 04 B0  returns 0x02 (0000ms, 17618ms total)
T47EC 3006:047 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 17618ms total)
T47EC 3006:047 JLINK_Step() -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 17619ms total)
T47EC 3006:048 JLINK_ReadReg(R15 (PC))  returns 0x08005B0C (0001ms, 17620ms total)
T47EC 3006:049 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000041 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000042 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000043 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000044 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000045 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000046 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000047 (0000ms, 17620ms total)
T47EC 3006:049 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 17629ms total)
T47EC 3006:159 JLINK_IsHalted()  returns TRUE (0004ms, 17633ms total)
T47EC 3006:163 JLINK_Halt()  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_IsHalted()  returns TRUE (0000ms, 17629ms total)
T47EC 3006:163 JLINK_IsHalted()  returns TRUE (0000ms, 17629ms total)
T47EC 3006:163 JLINK_IsHalted()  returns TRUE (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ReadReg(R15 (PC))  returns 0x0800BEFC (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000041)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000042)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000043)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000044)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000045)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000046)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ClrBPEx(BPHandle = 0x00000047)  returns 0x00 (0000ms, 17629ms total)
T47EC 3006:163 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17630ms total)
T47EC 3006:164 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17631ms total)
T47EC 3006:165 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0003ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R1)  returns 0x000C0000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R2)  returns 0xFF000000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R4)  returns 0x200000EC (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R12)  returns 0x40013824 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R13 (SP))  returns 0x20001AD0 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R14)  returns 0x080099A9 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(R15 (PC))  returns 0x0800BEFC (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(MSP)  returns 0x20001AD0 (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17634ms total)
T47EC 3006:168 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17634ms total)
T46B8 3006:170 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0003ms, 17637ms total)
T46B8 3006:173 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17639ms total)
T46B8 3006:175 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 17641ms total)
T46B8 3006:177 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 9A 99 99 3E  returns 0x04 (0001ms, 17642ms total)
T46B8 3006:179 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17642ms total)
T46B8 3006:179 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 17644ms total)
T46B8 3006:181 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 17644ms total)
T46B8 3006:181 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0000ms, 17644ms total)
T46B8 3006:182 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17644ms total)
T46B8 3006:182 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17644ms total)
T46B8 3006:182 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17644ms total)
T46B8 3006:182 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17644ms total)
T46B8 3006:182 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0001ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 07 06 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 95 32 00 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:183 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17645ms total)
T46B8 3006:184 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17645ms total)
T47EC 3006:950 JLINK_ReadMemEx(0x0800BEFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800BEC0) -- Updating C cache (64 bytes @ 0x0800BEC0) -- Read from C cache (2 bytes @ 0x0800BEFC) - Data: FA F7  returns 0x02 (0002ms, 17647ms total)
T47EC 3006:952 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800BEFC) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0800BEFE) -- Simulated  returns 0x00 (0002ms, 17649ms total)
T47EC 3006:954 JLINK_ReadReg(R15 (PC))  returns 0x08005FAC (0000ms, 17649ms total)
T47EC 3006:954 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000048 (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000049 (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000004A (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000004B (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x0000004C (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x0000004D (0000ms, 17649ms total)
T47EC 3006:954 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x0000004E (0000ms, 17649ms total)
T47EC 3006:954 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 17657ms total)
T47EC 3007:064 JLINK_IsHalted()  returns TRUE (0005ms, 17663ms total)
T47EC 3007:069 JLINK_Halt()  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_IsHalted()  returns TRUE (0000ms, 17658ms total)
T47EC 3007:069 JLINK_IsHalted()  returns TRUE (0000ms, 17658ms total)
T47EC 3007:069 JLINK_IsHalted()  returns TRUE (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ReadReg(R15 (PC))  returns 0x08005FAE (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x00000048)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x00000049)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x0000004A)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x0000004B)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x0000004C)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x0000004D)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ClrBPEx(BPHandle = 0x0000004E)  returns 0x00 (0000ms, 17658ms total)
T47EC 3007:069 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17659ms total)
T47EC 3007:070 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17660ms total)
T47EC 3007:071 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0002ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R1)  returns 0x000C0000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R2)  returns 0xFF000000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R4)  returns 0x200000EC (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R12)  returns 0x40013824 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R13 (SP))  returns 0x20001AC0 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R14)  returns 0x0800BF01 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(R15 (PC))  returns 0x08005FAE (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(MSP)  returns 0x20001AC0 (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17662ms total)
T47EC 3007:073 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17662ms total)
T46B8 3007:074 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 01 BF 00 08  returns 0x04 (0002ms, 17664ms total)
T46B8 3007:076 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: EC 00 00 20  returns 0x04 (0000ms, 17664ms total)
T46B8 3007:076 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: 01 BF 00 08  returns 0x04 (0000ms, 17664ms total)
T46B8 3007:077 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 17666ms total)
T46B8 3007:079 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 17668ms total)
T46B8 3007:081 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17671ms total)
T46B8 3007:085 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC CC 3E  returns 0x04 (0002ms, 17673ms total)
T46B8 3007:087 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17673ms total)
T46B8 3007:087 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 17675ms total)
T46B8 3007:089 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 7A 07 00  returns 0x04 (0000ms, 17675ms total)
T46B8 3007:089 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 64 00  returns 0x02 (0000ms, 17675ms total)
T46B8 3007:090 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17675ms total)
T46B8 3007:090 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17675ms total)
T46B8 3007:090 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 17675ms total)
T46B8 3007:090 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17675ms total)
T46B8 3007:090 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 17675ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 7E 07 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: DF 3E 00 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 7A 07 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:091 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 64 00  returns 0x02 (0000ms, 17676ms total)
T46B8 3007:092 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17676ms total)
T46B8 3007:092 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17676ms total)
T46B8 3007:092 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0001ms, 17677ms total)
T46B8 3007:093 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 17677ms total)
T46B8 3007:093 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17677ms total)
T46B8 3007:093 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17677ms total)
T46B8 3007:093 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17677ms total)
T46B8 3007:096 JLINK_ReadMemEx(0x08005FAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005F80) -- Updating C cache (64 bytes @ 0x08005F80) -- Read from C cache (2 bytes @ 0x08005FAE) - Data: 09 4A  returns 0x02 (0002ms, 17679ms total)
T46B8 3007:098 JLINK_ReadMemEx(0x08005FB0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005FC0) -- Updating C cache (64 bytes @ 0x08005FC0) -- Read from C cache (60 bytes @ 0x08005FB0) - Data: 09 48 11 46 08 39 05 F0 29 F9 C1 B2 05 48 08 38 ...  returns 0x3C (0002ms, 17681ms total)
T46B8 3007:100 JLINK_ReadMemEx(0x08005FB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005FB0) - Data: 09 48  returns 0x02 (0000ms, 17681ms total)
T46B8 3007:100 JLINK_ReadMemEx(0x08005FB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08005FB0) - Data: 09 48 11 46 08 39 05 F0 29 F9 C1 B2 05 48 08 38 ...  returns 0x3C (0000ms, 17681ms total)
T46B8 3007:100 JLINK_ReadMemEx(0x08005FB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005FB0) - Data: 09 48  returns 0x02 (0000ms, 17681ms total)
T46B8 3007:100 JLINK_ReadMemEx(0x08005FB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005FB2) - Data: 11 46  returns 0x02 (0000ms, 17681ms total)
T47EC 3008:054 JLINK_ReadMemEx(0x08005FAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08005FAE) - Data: 09 4A  returns 0x02 (0000ms, 17681ms total)
T47EC 3008:054 JLINK_Step() -- Read from C cache (2 bytes @ 0x08005FAE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x08005FD4) -- Simulated  returns 0x00 (0002ms, 17683ms total)
T47EC 3008:056 JLINK_ReadReg(R15 (PC))  returns 0x08005FB0 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000004F (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000050 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000051 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000052 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000053 (0000ms, 17683ms total)
T47EC 3008:056 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000054 (0001ms, 17684ms total)
T47EC 3008:057 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000055 (0000ms, 17684ms total)
T47EC 3008:057 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 17692ms total)
T47EC 3008:166 JLINK_IsHalted()  returns TRUE (0004ms, 17696ms total)
T47EC 3008:170 JLINK_Halt()  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_IsHalted()  returns TRUE (0000ms, 17692ms total)
T47EC 3008:170 JLINK_IsHalted()  returns TRUE (0000ms, 17692ms total)
T47EC 3008:170 JLINK_IsHalted()  returns TRUE (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ReadReg(R15 (PC))  returns 0x080081E4 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ReadReg(XPSR)  returns 0x61000003 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x0000004F)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000050)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000051)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000052)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000053)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000054)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ClrBPEx(BPHandle = 0x00000055)  returns 0x00 (0000ms, 17692ms total)
T47EC 3008:170 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 17693ms total)
T47EC 3008:171 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 17694ms total)
T47EC 3008:172 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0002ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R1)  returns 0x00000006 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R2)  returns 0x20001A60 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R3)  returns 0xFFFFFFF9 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R4)  returns 0x20000148 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R12)  returns 0x40013824 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R13 (SP))  returns 0x20001A40 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R14)  returns 0xFFFFFFF9 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(R15 (PC))  returns 0x080081E4 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(XPSR)  returns 0x61000003 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(MSP)  returns 0x20001A40 (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 17696ms total)
T47EC 3008:174 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 17696ms total)
T46B8 3008:174 JLINK_ReadMemEx(0x20001A58, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A58) - Data: F8 FF FF FF  returns 0x04 (0002ms, 17698ms total)
T46B8 3008:176 JLINK_ReadMemEx(0x20001A5C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A5C) - Data: 00 00 00 61  returns 0x04 (0000ms, 17698ms total)
T46B8 3008:176 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A54) - Data: 29 B2 00 08  returns 0x04 (0000ms, 17698ms total)
T46B8 3008:176 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0001ms, 17699ms total)
T46B8 3008:180 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 17701ms total)
T46B8 3008:182 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0001ms, 17702ms total)
T46B8 3008:183 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 17705ms total)
T46B8 3008:186 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 3F  returns 0x04 (0002ms, 17707ms total)
T46B8 3008:188 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0001ms, 17708ms total)
T46B8 3008:189 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0001ms, 17709ms total)
T46B8 3008:190 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 F1 08 00  returns 0x04 (0000ms, 17709ms total)
T46B8 3008:191 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 78 00  returns 0x02 (0000ms, 17709ms total)
T46B8 3008:191 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 17709ms total)
T46B8 3008:191 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 17709ms total)
T46B8 3008:191 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0001ms, 17710ms total)
T46B8 3008:192 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17710ms total)
T46B8 3008:192 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 17710ms total)
T46B8 3008:192 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:192 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 F5 08 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:192 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 29 4B 00 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:193 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:193 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:193 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:193 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 F1 08 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:193 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 78 00  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 17710ms total)
T46B8 3008:194 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 17710ms total)
T46B8 3008:198 JLINK_ReadMemEx(0x080081E4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080081C0) -- Updating C cache (128 bytes @ 0x080081C0) -- Read from C cache (60 bytes @ 0x080081E4) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: 01 49 02 48 C1 60 FD E7 04 00 FA 05 00 ED 00 E0 ...  returns 0x3C (0003ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081E4) - Data: 01 49  returns 0x02 (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081E6) - Data: 02 48  returns 0x02 (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081E6) - Data: 02 48  returns 0x02 (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080081E8) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: C1 60 FD E7 04 00 FA 05 00 ED 00 E0 30 B5 85 B0 ...  returns 0x3C (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081E8) - Data: C1 60  returns 0x02 (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080081E8) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: C1 60 FD E7 04 00 FA 05 00 ED 00 E0 30 B5 85 B0 ...  returns 0x3C (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081E8) - Data: C1 60  returns 0x02 (0000ms, 17713ms total)
T46B8 3008:201 JLINK_ReadMemEx(0x080081EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080081EA) - Data: FD E7  returns 0x02 (0000ms, 17713ms total)
T46B8 3009:924 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 17713ms total)
T46B8 3009:924 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x08009000)
 -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08008200) -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_ReadMem(4 bytes @ 0x20000000)
 -- CPU_WriteMem(4 bytes @ 0x20000000) -- 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) (0335ms, 18048ms total)
T46B8 3010:259 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 18048ms total)
T46B8 3010:259 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 18048ms total)
T46B8 3010:263 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, 18050ms total)
T46B8 3010:265 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 18050ms total)
T46B8 3010:265 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 18050ms total)
T46B8 3010:265 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 18050ms total)
T46B8 3010:265 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, 18050ms total)
T46B8 3010:265 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 18050ms total)
T46B8 3010:265 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, 18050ms total)
T46B8 3010:266 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 18051ms total)
T46B8 3010:266 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 18051ms total)
T46B8 3010:266 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 18051ms total)
T46B8 3010:266 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, 18051ms total)
T46B8 3010:266 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18051ms total)
T46B8 3010:286 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 18053ms total)
T46B8 3010:288 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0003ms, 18056ms total)
T46B8 3010:291 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 18060ms total)
T46B8 3010:295 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 00 00 00 3F  returns 0x04 (0001ms, 18061ms total)
T46B8 3010:297 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18061ms total)
T46B8 3010:297 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 18063ms total)
T46B8 3010:299 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 F1 08 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:299 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 78 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:299 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:299 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 F5 08 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:300 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 29 4B 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 F1 08 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 78 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 18063ms total)
T46B8 3010:301 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0001ms, 18064ms total)
T46B8 3010:302 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 18064ms total)
T46B8 3010:302 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18064ms total)
T46B8 3010:302 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000056 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000057 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000058 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000059 (0000ms, 18064ms total)
T47EC 3010:710 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2) -- BP[0] @ 0x08009074 converted into FlashBP  returns 0x0000005A (0001ms, 18065ms total)
T47EC 3010:711 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2) -- BP[1] @ 0x08008210 converted into FlashBP  returns 0x0000005B (0000ms, 18065ms total)
T47EC 3010:711 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2) -- BP[2] @ 0x08005B0A converted into FlashBP  returns 0x0000005C (0000ms, 18065ms total)
T47EC 3010:711 JLINK_Go() -- Read from C cache (2 bytes @ 0x080000D4) -- Read from C cache (4 bytes @ 0x080000E8) -- Simulated -- Read from C cache (2 bytes @ 0x080000D6) -- Simulated -- CPU_ReadMem(64 bytes @ 0x08002500) -- Updating C cache (64 bytes @ 0x08002500) -- Read from C cache (2 bytes @ 0x0800250C) -- CPU_ReadMem(64 bytes @ 0x08002540) -- Updating C cache (64 bytes @ 0x08002540) -- Read from C cache (4 bytes @ 0x08002564) -- Simulated -- Read from C cache (2 bytes @ 0x0800250E) -- Not simulated
 -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x08009000)
 -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08008200) -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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) (0274ms, 18339ms total)
T47EC 3011:086 JLINK_IsHalted()  returns TRUE (0004ms, 18343ms total)
T47EC 3011:090 JLINK_Halt()  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_IsHalted()  returns TRUE (0000ms, 18339ms total)
T47EC 3011:090 JLINK_IsHalted()  returns TRUE (0000ms, 18339ms total)
T47EC 3011:090 JLINK_IsHalted()  returns TRUE (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x00000056)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x00000057)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x00000058)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x00000059)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x0000005A)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x0000005B)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ClrBPEx(BPHandle = 0x0000005C)  returns 0x00 (0000ms, 18339ms total)
T47EC 3011:090 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 18340ms total)
T47EC 3011:091 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 18341ms total)
T47EC 3011:092 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R0)  returns 0x50000400 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R1)  returns 0x20001A58 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R2)  returns 0x00000008 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R3)  returns 0x50000404 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 18342ms total)
T47EC 3011:093 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R13 (SP))  returns 0x20001AB0 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R14)  returns 0x00300000 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(R15 (PC))  returns 0x08008210 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(MSP)  returns 0x20001AB0 (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18342ms total)
T47EC 3011:094 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18342ms total)
T46B8 3011:094 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 18344ms total)
T46B8 3011:096 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18344ms total)
T46B8 3011:096 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18344ms total)
T46B8 3011:096 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 18344ms total)
T46B8 3011:097 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0002ms, 18346ms total)
T46B8 3011:099 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 18348ms total)
T46B8 3011:101 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 18351ms total)
T46B8 3011:104 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC CC 3D  returns 0x04 (0002ms, 18353ms total)
T46B8 3011:107 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18353ms total)
T46B8 3011:107 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 18355ms total)
T46B8 3011:109 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 15 03 00  returns 0x04 (0000ms, 18355ms total)
T46B8 3011:109 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 28 00  returns 0x02 (0000ms, 18355ms total)
T46B8 3011:109 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0001ms, 18356ms total)
T46B8 3011:110 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 18356ms total)
T46B8 3011:110 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:110 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 19 03 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 02 1A 00 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18356ms total)
T46B8 3011:111 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 15 03 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:112 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 28 00  returns 0x02 (0000ms, 18356ms total)
T46B8 3011:112 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 18356ms total)
T46B8 3011:112 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18356ms total)
T46B8 3011:112 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 18356ms total)
T46B8 3011:112 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0001ms, 18357ms total)
T46B8 3011:113 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 18357ms total)
T46B8 3011:113 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18357ms total)
T46B8 3011:113 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18357ms total)
T46B8 3011:116 JLINK_ReadMemEx(0x08008210, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08008210) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7 68 FC 05 B0 30 BD 01 22 09 4D 94 02 21 46 ...  returns 0x3C (0000ms, 18357ms total)
T46B8 3011:116 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0000ms, 18357ms total)
T46B8 3011:116 JLINK_ReadMemEx(0x08008212, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08008212) - Data: 68 FC  returns 0x02 (0000ms, 18357ms total)
T47EC 3011:527 JLINK_ReadMemEx(0x08008210, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 - Data: FD F7  returns 0x02 (0001ms, 18358ms total)
T47EC 3011:528 JLINK_Step() -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- Merging zombie BP[1]: 0xF7FD @ 0x08008210 -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from flash cache (2 bytes @ 0x08008212) -- Simulated  returns 0x00 (0001ms, 18359ms total)
T47EC 3011:529 JLINK_ReadReg(R15 (PC))  returns 0x08005AE4 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000005D (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000005E (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000005F (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000060 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000061 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000062 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000063 (0000ms, 18359ms total)
T47EC 3011:529 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 18368ms total)
T47EC 3011:639 JLINK_IsHalted()  returns FALSE (0000ms, 18368ms total)
T47EC 3011:741 JLINK_IsHalted()  returns TRUE (0004ms, 18372ms total)
T47EC 3011:745 JLINK_Halt()  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_IsHalted()  returns TRUE (0000ms, 18368ms total)
T47EC 3011:745 JLINK_IsHalted()  returns TRUE (0000ms, 18368ms total)
T47EC 3011:745 JLINK_IsHalted()  returns TRUE (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x0000005D)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x0000005E)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x0000005F)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x00000060)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x00000061)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x00000062)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ClrBPEx(BPHandle = 0x00000063)  returns 0x00 (0000ms, 18368ms total)
T47EC 3011:745 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 18369ms total)
T47EC 3011:746 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 18370ms total)
T47EC 3011:747 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R0)  returns 0x00000006 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R1)  returns 0x0000000A (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R2)  returns 0x00000001 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R3)  returns 0x0800C109 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R4)  returns 0x20000148 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R13 (SP))  returns 0x20001A38 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R14)  returns 0x080083E1 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(R15 (PC))  returns 0x0800B228 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(MSP)  returns 0x20001A38 (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18371ms total)
T47EC 3011:748 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18371ms total)
T46B8 3011:749 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0002ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A84) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A88) - Data: 00 00 00 00  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A8C) - Data: 04 00 FA 05  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001A90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A90) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001A94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A94) - Data: 0B 5B 00 08  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 18374ms total)
T46B8 3011:751 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0003ms, 18377ms total)
T46B8 3011:754 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18377ms total)
T46B8 3011:754 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18377ms total)
T46B8 3011:754 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 18377ms total)
T46B8 3011:754 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0002ms, 18379ms total)
T46B8 3011:756 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 18379ms total)
T46B8 3011:756 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 CF 06 AC C6  returns 0x06 (0002ms, 18381ms total)
T46B8 3011:758 JLINK_ReadMemEx(0x20001A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A7C) - Data: 00 00 00 20  returns 0x04 (0000ms, 18381ms total)
T46B8 3011:758 JLINK_ReadMemEx(0x20001A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A80) - Data: 08 00 00 20  returns 0x04 (0000ms, 18381ms total)
T46B8 3011:758 JLINK_ReadMemEx(0x20001A38, 0x0006 Bytes, ..., Flags = 0x02000000) -- Read from C cache (6 bytes @ 0x20001A38) - Data: F9 50 CF 06 AC C6  returns 0x06 (0000ms, 18381ms total)
T46B8 3011:758 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0003ms, 18384ms total)
T46B8 3011:761 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 18386ms total)
T46B8 3011:763 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 18388ms total)
T46B8 3011:765 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC 4C 3E  returns 0x04 (0002ms, 18390ms total)
T46B8 3011:767 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18390ms total)
T46B8 3011:767 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 18392ms total)
T46B8 3011:769 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 18392ms total)
T46B8 3011:769 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0001ms, 18393ms total)
T46B8 3011:770 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:770 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:770 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:770 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18393ms total)
T46B8 3011:771 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 18393ms total)
T46B8 3011:771 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:771 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 90 04 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:772 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 4C 26 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:773 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18393ms total)
T46B8 3011:774 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18393ms total)
T46B8 3011:778 JLINK_ReadMemEx(0x0800B228, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800B200) -- Updating C cache (128 bytes @ 0x0800B200) -- Read from C cache (60 bytes @ 0x0800B228) - Data: 06 28 03 DA 00 20 C0 43 13 B0 F0 BD 68 46 40 78 ...  returns 0x3C (0004ms, 18397ms total)
T46B8 3011:782 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 18397ms total)
T46B8 3011:782 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0000ms, 18397ms total)
T46B8 3011:782 JLINK_ReadMemEx(0x0800B22A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22A) - Data: 03 DA  returns 0x02 (0000ms, 18397ms total)
T46B8 3011:782 JLINK_ReadMemEx(0x0800B22C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800B22C) - Data: 00 20 C0 43 13 B0 F0 BD 68 46 40 78 01 02 68 46 ...  returns 0x3C (0000ms, 18397ms total)
T46B8 3011:782 JLINK_ReadMemEx(0x0800B22C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B22C) - Data: 00 20  returns 0x02 (0000ms, 18397ms total)
T47EC 3011:919 JLINK_ReadMemEx(0x0800B228, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800B228) - Data: 06 28  returns 0x02 (0000ms, 18397ms total)
T47EC 3011:919 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800B228) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 18398ms total)
T47EC 3011:920 JLINK_ReadReg(R15 (PC))  returns 0x0800B22A (0000ms, 18398ms total)
T47EC 3011:920 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x00000064 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x00000065 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x00000066 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x00000067 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x00000068 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000069 (0000ms, 18398ms total)
T47EC 3011:920 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x0000006A (0000ms, 18398ms total)
T47EC 3011:920 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 18405ms total)
T47EC 3012:028 JLINK_IsHalted()  returns TRUE (0004ms, 18410ms total)
T47EC 3012:032 JLINK_Halt()  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_IsHalted()  returns TRUE (0000ms, 18406ms total)
T47EC 3012:032 JLINK_IsHalted()  returns TRUE (0000ms, 18406ms total)
T47EC 3012:032 JLINK_IsHalted()  returns TRUE (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000064)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000065)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000066)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000067)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000068)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x00000069)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ClrBPEx(BPHandle = 0x0000006A)  returns 0x00 (0000ms, 18406ms total)
T47EC 3012:032 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 18407ms total)
T47EC 3012:033 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 18408ms total)
T47EC 3012:034 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R1)  returns 0x403CE5ED (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R2)  returns 0xEA641F26 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R3)  returns 0x409018FE (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R4)  returns 0x0800C2D0 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R13 (SP))  returns 0x20001A98 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R14)  returns 0x0800599F (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(R15 (PC))  returns 0x08005B0A (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(MSP)  returns 0x20001A98 (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18409ms total)
T47EC 3012:035 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18409ms total)
T46B8 3012:036 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A80) -- Updating C cache (64 bytes @ 0x20001A80) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0001ms, 18410ms total)
T46B8 3012:037 JLINK_ReadMemEx(0x20001AA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AA8) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18410ms total)
T46B8 3012:037 JLINK_ReadMemEx(0x20001AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AAC) - Data: 15 82 00 08  returns 0x04 (0000ms, 18410ms total)
T46B8 3012:037 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001AC0) -- Updating C cache (64 bytes @ 0x20001AC0) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0002ms, 18412ms total)
T46B8 3012:039 JLINK_ReadMemEx(0x20001AC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC4) - Data: D0 C2 00 08  returns 0x04 (0000ms, 18412ms total)
T46B8 3012:039 JLINK_ReadMemEx(0x20001AC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001AC8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18412ms total)
T46B8 3012:039 JLINK_ReadMemEx(0x20001ACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001ACC) - Data: B7 BE 00 08  returns 0x04 (0000ms, 18412ms total)
T46B8 3012:040 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 18413ms total)
T46B8 3012:041 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 18415ms total)
T46B8 3012:043 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 18417ms total)
T46B8 3012:045 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: CD CC 4C 3E  returns 0x04 (0002ms, 18419ms total)
T46B8 3012:047 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18419ms total)
T46B8 3012:047 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 18421ms total)
T46B8 3012:049 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:049 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:049 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:049 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 90 04 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:050 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 4C 26 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 8C 04 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 3C 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:051 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18421ms total)
T46B8 3012:052 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18421ms total)
T46B8 3012:055 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 18421ms total)
T46B8 3012:055 JLINK_ReadMemEx(0x08005B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from flash cache (60 bytes @ 0x08005B0C) - Data: 04 B0 10 BD 2D C1 00 08 09 C1 00 08 89 C1 00 08 ...  returns 0x3C (0000ms, 18421ms total)
T46B8 3012:055 JLINK_ReadMemEx(0x08005B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from flash cache (2 bytes @ 0x08005B0C) - Data: 04 B0  returns 0x02 (0000ms, 18421ms total)
T47EC 3013:415 JLINK_ReadMemEx(0x08005B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A - Data: 00 20  returns 0x02 (0000ms, 18421ms total)
T47EC 3013:415 JLINK_Step() -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- Merging zombie BP[2]: 0x2000 @ 0x08005B0A -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 18423ms total)
T47EC 3013:417 JLINK_ReadReg(R15 (PC))  returns 0x08005B0C (0000ms, 18423ms total)
T47EC 3013:417 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x08009074, Type = 0xFFFFFFF2)  returns 0x0000006B (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x08008210, Type = 0xFFFFFFF2)  returns 0x0000006C (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x08005B0A, Type = 0xFFFFFFF2)  returns 0x0000006D (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x080081E4, Type = 0xFFFFFFF2)  returns 0x0000006E (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x0800BEFC, Type = 0xFFFFFFF2)  returns 0x0000006F (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x08005FAE, Type = 0xFFFFFFF2)  returns 0x00000070 (0000ms, 18423ms total)
T47EC 3013:417 JLINK_SetBPEx(Addr = 0x0800B228, Type = 0xFFFFFFF2)  returns 0x00000071 (0000ms, 18423ms total)
T47EC 3013:417 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 18432ms total)
T47EC 3013:527 JLINK_IsHalted()  returns TRUE (0004ms, 18436ms total)
T47EC 3013:531 JLINK_Halt()  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_IsHalted()  returns TRUE (0000ms, 18432ms total)
T47EC 3013:531 JLINK_IsHalted()  returns TRUE (0000ms, 18432ms total)
T47EC 3013:531 JLINK_IsHalted()  returns TRUE (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ReadReg(R15 (PC))  returns 0x0800BEFC (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x0000006B)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x0000006C)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x0000006D)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x0000006E)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x0000006F)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x00000070)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ClrBPEx(BPHandle = 0x00000071)  returns 0x00 (0000ms, 18432ms total)
T47EC 3013:531 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 18433ms total)
T47EC 3013:532 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 18434ms total)
T47EC 3013:533 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R1)  returns 0x000C0000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R2)  returns 0xFF000000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R4)  returns 0x200000EC (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R12)  returns 0x40013824 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R13 (SP))  returns 0x20001AD0 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R14)  returns 0x080099A9 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(R15 (PC))  returns 0x0800BEFC (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(MSP)  returns 0x20001AD0 (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 18435ms total)
T47EC 3013:534 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 18435ms total)
T46B8 3013:536 JLINK_ReadMemEx(0x2000006B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000006B) - Data: 00  returns 0x01 (0001ms, 18436ms total)
T46B8 3013:537 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0002ms, 18438ms total)
T46B8 3013:539 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 18441ms total)
T46B8 3013:542 JLINK_ReadMemEx(0x20000130, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000130) - Data: 9A 99 99 3E  returns 0x04 (0002ms, 18443ms total)
T46B8 3013:544 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18443ms total)
T46B8 3013:544 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000010) - Data: 1E  returns 0x01 (0002ms, 18445ms total)
T46B8 3013:546 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:546 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0000ms, 18445ms total)
T46B8 3013:547 JLINK_ReadMemEx(0x20000124, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000124) - Data: 00 00 00 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:547 JLINK_ReadMemEx(0x20000086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000086) - Data: 00 00  returns 0x02 (0000ms, 18445ms total)
T46B8 3013:547 JLINK_ReadMemEx(0x2000009C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000009C) - Data: 00 00 00 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:547 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x2000006C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006C) - Data: 00  returns 0x01 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x200000A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x2000011C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000011C) - Data: C0 07 06 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x20000118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000118) - Data: 95 32 00 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x200000A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000088) - Data: 00 00  returns 0x02 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 10 03 06 00  returns 0x04 (0000ms, 18445ms total)
T46B8 3013:548 JLINK_ReadMemEx(0x2000010A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010A) - Data: 50 00  returns 0x02 (0001ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x2000010C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000010C) - Data: 14 00  returns 0x02 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x2000007A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007A) - Data: 00  returns 0x01 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x20000100, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000100) - Data: 00 00  returns 0x02 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x20000102, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000102) - Data: 01 01  returns 0x02 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x20000068, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000068) - Data: 00  returns 0x01 (0000ms, 18446ms total)
T46B8 3013:549 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 18446ms total)
T46B8 3017:925 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE000ED90) -- CPU_ReadMem(4 bytes @ 0xE000ED94) -- Start of preparing flash programming -- Calculating RAM usage -- RAM usage = 6308 Bytes -- Preserving CPU registers -- Preparing memory -- Preparing target -- Preserving target RAM temporarily used for programming -- Downloading RAMCode -- Not first flash download, checking target RAM skipped -- Preparing RAMCode -- End of preparing flash programming -- Read from flash cache (128 bytes @ 0x08009000)
 -- Programming range 0x08009000 - 0x0800907F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08008200) -- Programming range 0x08008200 - 0x0800827F (  1 Sector, 128 Bytes) -- Read from flash cache (128 bytes @ 0x08005B00) -- Programming range 0x08005B00 - 0x08005B7F (  1 Sector, 128 Bytes) -- Start of restoring -- Restoring RAMCode -- Restoring target memory -- Restore target -- Restore memory -- Restoring CPU registers -- End of restoring -- CPU_WriteMem(4 bytes @ 0xE0002008)
 -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0325ms, 18771ms total)
T46B8 3017:925  (0325ms, 18771ms total)
T46B8 3017:925 Closed (0325ms, 18771ms total)