chen
2025-03-14 2043cda8d7d195b06378e3de781078525eb4d3c5
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
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
 
T6F84 000:103 SEGGER J-Link V6.30d Log File (0001ms, 0024ms total)
T6F84 000:103 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0024ms total)
T6F84 000:103 Logging started @ 2025-03-14 16:09 (0001ms, 0024ms total)
T6F84 000:104 JLINK_SetWarnOutHandler(...) (0000ms, 0024ms total)
T6F84 000:104 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 (0010ms, 0034ms total)
T6F84 000:104 WEBSRV Webserver running on local port 19080 (0010ms, 0034ms total)
T6F84 000:104   returns O.K. (0010ms, 0034ms total)
T6F84 000:114 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0034ms total)
T6F84 000:114 JLINK_TIF_GetAvailable(...) (0000ms, 0034ms total)
T6F84 000:114 JLINK_SetErrorOutHandler(...) (0000ms, 0034ms total)
T6F84 000:114 JLINK_ExecCommand("ProjectFile = "D:\project_chen\anbang\ChinaUWBProject\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0155ms, 0189ms total)
T6F84 000:269 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0007ms, 0196ms total)
T6F84 000:276 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetFirmwareString(...) (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetCompileDateTime() (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetFirmwareString(...) (0000ms, 0196ms total)
T6F84 000:276 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0196ms total)
T6F84 000:276 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0000ms, 0196ms total)
T6F84 000:276 JLINK_SetSpeed(10000) (0001ms, 0197ms total)
T6F84 000:277 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)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: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- 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] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0117ms, 0314ms total)
T6F84 000:395 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0314ms total)
T6F84 000:395 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0314ms total)
T6F84 000:395 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0314ms total)
T6F84 000:395 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0314ms total)
T6F84 000:395 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0314ms total)
T6F84 000:395 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, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0315ms total)
T6F84 000:396 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 (0000ms, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0315ms total)
T6F84 000:396 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0001ms, 0316ms total)
T6F84 000:397 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0316ms total)
T6F84 000:397 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0316ms total)
T6F84 000:397 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0000ms, 0316ms total)
T6F84 000:397 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0316ms total)
T6F84 000:397 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0316ms total)
T6F84 000:397 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) (0068ms, 0384ms total)
T6F84 000:465 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0384ms total)
T6F84 000:465 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0384ms total)
T6F84 000:465 JLINK_Halt()  returns 0x00 (0000ms, 0384ms total)
T6F84 000:465 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0000ms, 0384ms total)
T6F84 000:465 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0385ms total)
T6F84 000:466 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0385ms total)
T6F84 000:466 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0386ms total)
T6F84 000:467 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0386ms total)
T6F84 000:467 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0386ms total)
T6F84 000:467 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0386ms total)
T6F84 000:467 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0386ms total)
T6F84 000:467 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0000ms, 0386ms total)
T6F84 000:467 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0386ms total)
T6F84 000:467 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0386ms total)
T6F84 000:561 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0386ms total)
T6F84 000:561 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) (0068ms, 0454ms total)
T6F84 000:629 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0454ms total)
T6F84 000:629 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0454ms total)
T6F84 000:629 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0455ms total)
T6F84 000:630 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0455ms total)
T6F84 000:630 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0456ms total)
T6F84 000:631 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0457ms total)
T6F84 000:632 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0458ms total)
T6F84 000:633 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 0458ms total)
T6F84 000:633 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0459ms total)
T6F84 000:634 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0460ms total)
T6F84 000:635 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0460ms total)
T6F84 000:635 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0461ms total)
T6F84 000:636 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0462ms total)
T6F84 000:637 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0462ms total)
T6F84 000:637 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0463ms total)
T6F84 000:638 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0464ms total)
T6F84 000:639 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0464ms total)
T6F84 000:639 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0465ms total)
T6F84 000:640 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0466ms total)
T6F84 000:641 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0466ms total)
T6F84 000:641 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0467ms total)
T6F84 000:642 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0468ms total)
T6F84 000:643 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0468ms total)
T6F84 002:734 JLINK_ReadReg(R0)  returns 0x00000003 (0001ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R2)  returns 0x00000018 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R3)  returns 0x00000018 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R5)  returns 0x0000005D (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R6)  returns 0x00000006 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R7)  returns 0x00000004 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R14)  returns 0x00001E75 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0469ms total)
T6F84 002:735 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0470ms total)
T6F84 002:736 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0470ms total)
T6F84 002:736 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0471ms total)
T6F84 002:789 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0471ms total)
T6F84 002:789 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0472ms total)
T6F84 002:790 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0472ms total)
T6F84 002:862 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: AB E0 B4 04  returns 0x04 (0000ms, 0472ms total)
T6F84 002:862 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: AB E0 B4 04  returns 0x04 (0001ms, 0473ms total)
T6F84 002:863 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: AB E0 B4 04  returns 0x04 (0000ms, 0473ms total)
T577C 002:950 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0474ms total)
T577C 002:951 JLINK_SetBPEx(Addr = 0x00008740, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0474ms total)
T577C 002:951 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0003ms, 0477ms total)
T577C 003:056 JLINK_IsHalted()  returns TRUE (0003ms, 0480ms total)
T577C 003:059 JLINK_Halt()  returns 0x00 (0000ms, 0477ms total)
T577C 003:059 JLINK_IsHalted()  returns TRUE (0000ms, 0477ms total)
T577C 003:059 JLINK_IsHalted()  returns TRUE (0000ms, 0477ms total)
T577C 003:059 JLINK_IsHalted()  returns TRUE (0000ms, 0477ms total)
T577C 003:059 JLINK_ReadReg(R15 (PC))  returns 0x00008740 (0000ms, 0477ms total)
T577C 003:059 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0477ms total)
T577C 003:059 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0477ms total)
T577C 003:059 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0478ms total)
T577C 003:060 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0478ms total)
T577C 003:060 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R0)  returns 0x00008741 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R1)  returns 0x0201C774 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R3)  returns 0x0000CF19 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R4)  returns 0x0000EB50 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R6)  returns 0x0000EB50 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R14)  returns 0x00000B75 (0000ms, 0479ms total)
T577C 003:061 JLINK_ReadReg(R15 (PC))  returns 0x00008740 (0001ms, 0480ms total)
T577C 003:062 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0480ms total)
T577C 003:062 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0480ms total)
T577C 003:062 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0480ms total)
T577C 003:062 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0480ms total)
T6F84 003:074 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0481ms total)
T6F84 003:076 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 00 00 00 00  returns 0x04 (0000ms, 0481ms total)
T6F84 003:078 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 0481ms total)
T6F84 003:081 JLINK_ReadMemEx(0x00008640, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00008640) -- Updating C cache (64 bytes @ 0x00008640) -- Read from C cache (60 bytes @ 0x00008640) - Data: 51 18 1D 46 03 98 19 50 00 F0 2C FA 01 46 70 7A ...  returns 0x3C (0001ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008640, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008640) - Data: 51 18  returns 0x02 (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008642, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008642) - Data: 1D 46  returns 0x02 (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008642, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008642) - Data: 1D 46  returns 0x02 (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008644, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008644) - Data: 03 98 19 50 00 F0 2C FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008644, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008644) - Data: 03 98  returns 0x02 (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008644, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008644) - Data: 03 98 19 50 00 F0 2C FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008644, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008644) - Data: 03 98  returns 0x02 (0000ms, 0482ms total)
T6F84 003:082 JLINK_ReadMemEx(0x00008646, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008646) - Data: 19 50  returns 0x02 (0001ms, 0483ms total)
T6F84 003:083 JLINK_ReadMemEx(0x00008646, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008646) - Data: 19 50  returns 0x02 (0000ms, 0483ms total)
T6F84 003:083 JLINK_ReadMemEx(0x00008648, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00008680) -- Updating C cache (64 bytes @ 0x00008680) -- Read from C cache (60 bytes @ 0x00008648) - Data: 00 F0 2C FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0001ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008648, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008648) - Data: 00 F0  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008648, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008648) - Data: 00 F0 2C FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008648, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008648) - Data: 00 F0  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x0000864A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000864A) - Data: 2C FA  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x0000864C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000864C) - Data: 01 46 70 7A 00 19 02 04 3E 46 0C D0 80 B2 C0 00 ...  returns 0x3C (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x0000864C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000864C) - Data: 01 46  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x0000864E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000864E) - Data: 70 7A  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x0000864E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000864E) - Data: 70 7A  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008650, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008650) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008650, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008650) - Data: 00 19  returns 0x02 (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008650, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008650) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0484ms total)
T6F84 003:084 JLINK_ReadMemEx(0x00008650, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008650) - Data: 00 19  returns 0x02 (0001ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008652, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008652) - Data: 02 04  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008652, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008652) - Data: 02 04  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008654, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008654) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008654, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008654) - Data: 3E 46  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008654, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008654) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008654, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008654) - Data: 3E 46  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008656, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008656) - Data: 0C D0  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008656, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008656) - Data: 0C D0  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008658, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008658) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008658, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008658) - Data: 80 B2  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008658, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008658) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x00008658, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008658) - Data: 80 B2  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x0000865A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865A) - Data: C0 00  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x0000865A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865A) - Data: C0 00  returns 0x02 (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x0000865C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000865C) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F7 F7 34 FD ...  returns 0x3C (0000ms, 0485ms total)
T6F84 003:085 JLINK_ReadMemEx(0x0000865C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865C) - Data: 00 29  returns 0x02 (0001ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000865C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000865C) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F7 F7 34 FD ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000865C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865C) - Data: 00 29  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000865E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865E) - Data: 00 D1  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000865E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000865E) - Data: 00 D1  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008660, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008660) - Data: 80 1E 02 9F A5 21 49 00 F7 F7 34 FD 1F 21 01 40 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008660, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008660) - Data: 80 1E  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008660, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008660) - Data: 80 1E 02 9F A5 21 49 00 F7 F7 34 FD 1F 21 01 40 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008660, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008660) - Data: 80 1E  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008662, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008662) - Data: 02 9F  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008662, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008662) - Data: 02 9F  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008664, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008664) - Data: A5 21 49 00 F7 F7 34 FD 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008664, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008664) - Data: A5 21  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008664, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008664) - Data: A5 21 49 00 F7 F7 34 FD 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008664, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008664) - Data: A5 21  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008666, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008666) - Data: 49 00  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008666, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008666) - Data: 49 00  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008668, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008668) - Data: F7 F7 34 FD 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008668, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008668) - Data: F7 F7  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008668, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008668) - Data: F7 F7 34 FD 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x00008668, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008668) - Data: F7 F7  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000866A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000866A) - Data: 34 FD  returns 0x02 (0000ms, 0486ms total)
T6F84 003:086 JLINK_ReadMemEx(0x0000866C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000866C) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0001ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x0000866C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000866C) - Data: 1F 21  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x0000866E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000866E) - Data: 01 40  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x0000866E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000866E) - Data: 01 40  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008670, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008670) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008670, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008670) - Data: 01 E0  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008670, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008670) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008670, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008670) - Data: 01 E0  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008672, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008672) - Data: 00 21  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008672, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008672) - Data: 00 21  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008674, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008674) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008674, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008674) - Data: 02 9F  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008674, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008674) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008674, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008674) - Data: 02 9F  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008676, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008676) - Data: 38 01  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008676, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008676) - Data: 38 01  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008678, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008678) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008678, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008678) - Data: 28 18  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008678, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008678) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x00008678, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008678) - Data: 28 18  returns 0x02 (0000ms, 0487ms total)
T6F84 003:087 JLINK_ReadMemEx(0x0000867A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867A) - Data: 42 79  returns 0x02 (0001ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867A) - Data: 42 79  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000867C) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867C) - Data: 83 79  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000867C) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867C) - Data: 83 79  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867E) - Data: 1B 02  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x0000867E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000867E) - Data: 1B 02  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008680, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008680) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008680, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008680) - Data: 9A 18  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008680, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008680) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008680, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008680) - Data: 9A 18  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008682, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008682) - Data: C3 79  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008682, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008682) - Data: C3 79  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008684, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008684) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008684, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008684) - Data: 1B 04  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008684, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008684) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008684, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008684) - Data: 1B 04  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008686, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008686) - Data: D2 18  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008686, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008686) - Data: D2 18  returns 0x02 (0000ms, 0488ms total)
T6F84 003:088 JLINK_ReadMemEx(0x00008688, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000086C0) -- Updating C cache (64 bytes @ 0x000086C0) -- Read from C cache (60 bytes @ 0x00008688) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0001ms, 0489ms total)
T6F84 003:089 JLINK_ReadMemEx(0x00008688, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008688) - Data: 2C 4B  returns 0x02 (0001ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008688, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008688) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008688, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008688) - Data: 2C 4B  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868A) - Data: 13 40  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868A) - Data: 13 40  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000868C) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868C) - Data: 43 71  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000868C) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868C) - Data: 43 71  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868E) - Data: 09 04  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x0000868E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000868E) - Data: 09 04  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008690, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008690) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008690, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008690) - Data: 59 18  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008690, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008690) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008690, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008690) - Data: 59 18  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008692, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008692) - Data: 09 0C  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008692, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008692) - Data: 09 0C  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008694, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008694) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008694, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008694) - Data: C1 71  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008694, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008694) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008694, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008694) - Data: C1 71  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008696, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008696) - Data: 00 2C  returns 0x02 (0000ms, 0490ms total)
T6F84 003:090 JLINK_ReadMemEx(0x00008696, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008696) - Data: 00 2C  returns 0x02 (0001ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x00008698, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008698) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x00008698, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008698) - Data: 20 D0  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x00008698, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008698) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x00008698, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008698) - Data: 20 D0  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869A) - Data: 15 48  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869A) - Data: 15 48  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000869C) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869C) - Data: 35 46  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000869C) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869C) - Data: 35 46  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869E) - Data: 06 46  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x0000869E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000869E) - Data: 06 46  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A0) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A0) - Data: 00 7B  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A0) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A0) - Data: 00 7B  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A2) - Data: 00 9B  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A2) - Data: 00 9B  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A4) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A4) - Data: 43 43  returns 0x02 (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A4) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0491ms total)
T6F84 003:091 JLINK_ReadMemEx(0x000086A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A4) - Data: 43 43  returns 0x02 (0001ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A6) - Data: F1 7A  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A6) - Data: F1 7A  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A8) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A8) - Data: 0A 01  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086A8) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086A8) - Data: 0A 01  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AA) - Data: 06 9F  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AA) - Data: 06 9F  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086AC) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AC) - Data: 3A 43  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086AC) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AC) - Data: 3A 43  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AE) - Data: D2 18  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086AE) - Data: D2 18  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B0) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B0) - Data: 41 18  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B0) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B0) - Data: 41 18  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B2) - Data: 8B 00  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B2) - Data: 8B 00  returns 0x02 (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B4) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0492ms total)
T6F84 003:092 JLINK_ReadMemEx(0x000086B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B4) - Data: D2 18  returns 0x02 (0001ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B4) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B4) - Data: D2 18  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B6) - Data: 05 9B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B6) - Data: 05 9B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B8) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B8) - Data: 4B 43  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086B8) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086B8) - Data: 4B 43  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BA) - Data: D1 18  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BA) - Data: D1 18  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086BC) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BC) - Data: 72 7B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086BC) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BC) - Data: 72 7B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BE) - Data: 07 9B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086BE) - Data: 07 9B  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086C0) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C0) - Data: 53 43  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086C0) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C0) - Data: 53 43  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C2) - Data: C9 18  returns 0x02 (0000ms, 0493ms total)
T6F84 003:093 JLINK_ReadMemEx(0x000086C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C2) - Data: C9 18  returns 0x02 (0001ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086C4) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C4) - Data: 40 19  returns 0x02 (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086C4) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C4) - Data: 40 19  returns 0x02 (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C6) - Data: 1C 4A  returns 0x02 (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C6) - Data: 1C 4A  returns 0x02 (0000ms, 0494ms total)
T6F84 003:094 JLINK_ReadMemEx(0x000086C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00008700) -- Updating C cache (64 bytes @ 0x00008700) -- Read from C cache (60 bytes @ 0x000086C8) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0001ms, 0495ms total)
T6F84 003:095 JLINK_ReadMemEx(0x000086C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C8) - Data: 12 88  returns 0x02 (0000ms, 0495ms total)
T6F84 003:095 JLINK_ReadMemEx(0x000086C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086C8) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0001ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086C8) - Data: 12 88  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CA) - Data: 42 43  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CA) - Data: 42 43  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086CC) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F7 F7 26 FD ...  returns 0x3C (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CC) - Data: 88 18  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086CC) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F7 F7 26 FD ...  returns 0x3C (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CC) - Data: 88 18  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CE) - Data: 01 99  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086CE) - Data: 01 99  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D0) - Data: 88 42 03 D0 01 99 22 46 F7 F7 26 FD 09 B0 F0 BD ...  returns 0x3C (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D0) - Data: 88 42  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D0) - Data: 88 42 03 D0 01 99 22 46 F7 F7 26 FD 09 B0 F0 BD ...  returns 0x3C (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D0) - Data: 88 42  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D2) - Data: 03 D0  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D2) - Data: 03 D0  returns 0x02 (0000ms, 0496ms total)
T6F84 003:096 JLINK_ReadMemEx(0x000086D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D4) - Data: 01 99 22 46 F7 F7 26 FD 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0001ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D4) - Data: 01 99  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D4) - Data: 01 99 22 46 F7 F7 26 FD 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D4) - Data: 01 99  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D6) - Data: 22 46  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D6) - Data: 22 46  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D8) - Data: F7 F7 26 FD 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D8) - Data: F7 F7  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086D8) - Data: F7 F7 26 FD 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086D8) - Data: F7 F7  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086DA) - Data: 26 FD  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086DC) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 02 F0 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086DC) - Data: 09 B0  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086DE) - Data: F0 BD  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086DE) - Data: F0 BD  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E0) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 B7 F9 C0 46 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E0) - Data: FF 22  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E0) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 B7 F9 C0 46 ...  returns 0x3C (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E0) - Data: FF 22  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E2) - Data: 5C 32  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E2) - Data: 5C 32  returns 0x02 (0000ms, 0497ms total)
T6F84 003:097 JLINK_ReadMemEx(0x000086E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E4) - Data: 03 48 04 A1 09 A3 02 F0 B7 F9 C0 46 E4 B1 01 02 ...  returns 0x3C (0001ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E4) - Data: 03 48  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E4) - Data: 03 48 04 A1 09 A3 02 F0 B7 F9 C0 46 E4 B1 01 02 ...  returns 0x3C (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E4) - Data: 03 48  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E6) - Data: 04 A1  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E6) - Data: 04 A1  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E8) - Data: 09 A3 02 F0 B7 F9 C0 46 E4 B1 01 02 8E DE 00 00 ...  returns 0x3C (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E8) - Data: 09 A3  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086E8) - Data: 09 A3 02 F0 B7 F9 C0 46 E4 B1 01 02 8E DE 00 00 ...  returns 0x3C (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086E8) - Data: 09 A3  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086EA) - Data: 02 F0  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086EA) - Data: 02 F0  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086EC) - Data: B7 F9 C0 46 E4 B1 01 02 8E DE 00 00 6D 61 63 5F ...  returns 0x3C (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086EC) - Data: B7 F9  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086EE) - Data: C0 46  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000086F0) - Data: E4 B1 01 02 8E DE 00 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x000086F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000086F0) - Data: E4 B1  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x0000873E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000873E) - Data: E0 00  returns 0x02 (0000ms, 0498ms total)
T6F84 003:098 JLINK_ReadMemEx(0x00008740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00008740) -- Updating C cache (64 bytes @ 0x00008740) -- Read from C cache (60 bytes @ 0x00008740) - Data: FC F7 CE FE 05 20 00 25 29 46 FF F7 81 F8 06 20 ...  returns 0x3C (0001ms, 0499ms total)
T6F84 003:099 JLINK_ReadMemEx(0x00008740, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008740) - Data: FC F7  returns 0x02 (0001ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008740, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008740) - Data: FC F7 CE FE 05 20 00 25 29 46 FF F7 81 F8 06 20 ...  returns 0x3C (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008740, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008740) - Data: FC F7  returns 0x02 (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008742, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008742) - Data: CE FE  returns 0x02 (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008744, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00008744) - Data: 05 20 00 25 29 46 FF F7 81 F8 06 20 29 46 FF F7 ...  returns 0x3C (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008744, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008744) - Data: 05 20  returns 0x02 (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008746) - Data: 00 25  returns 0x02 (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008746) - Data: 00 25  returns 0x02 (0000ms, 0500ms total)
T6F84 003:100 JLINK_ReadMemEx(0x00008748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00008780) -- Updating C cache (64 bytes @ 0x00008780) -- Read from C cache (60 bytes @ 0x00008748) - Data: 29 46 FF F7 81 F8 06 20 29 46 FF F7 7D F8 0A 20 ...  returns 0x3C (0001ms, 0501ms total)
T6F84 003:101 JLINK_ReadMemEx(0x00008748, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00008748) - Data: 29 46  returns 0x02 (0000ms, 0501ms total)
T6F84 003:794 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0002ms, 0503ms total)
T6F84 003:796 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) (0067ms, 0570ms total)
T6F84 003:863 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0570ms total)
T6F84 003:863 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0570ms total)
T6F84 003:866 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0571ms total)
T6F84 003:867 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0571ms total)
T6F84 003:867 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0572ms total)
T6F84 003:868 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0573ms total)
T6F84 003:869 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0573ms total)
T6F84 003:869 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0574ms total)
T6F84 003:870 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0575ms total)
T6F84 003:871 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0575ms total)
T6F84 003:871 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0576ms total)
T6F84 003:872 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0577ms total)
T6F84 003:873 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0578ms total)
T6F84 003:874 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0578ms total)
T6F84 003:874 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0580ms total)
T6F84 003:876 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0580ms total)
T6F84 003:876 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0580ms total)
T6F84 003:876 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0581ms total)
T6F84 003:877 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0582ms total)
T6F84 003:878 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0582ms total)
T6F84 003:878 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0583ms total)
T6F84 003:879 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0002ms, 0585ms total)
T6F84 003:881 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0585ms total)
T6F84 003:904 JLINK_ReadReg(R0)  returns 0x00008741 (0000ms, 0585ms total)
T6F84 003:904 JLINK_ReadReg(R1)  returns 0x0201C774 (0001ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R3)  returns 0x0000CF19 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R4)  returns 0x0000EB50 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R6)  returns 0x0000EB50 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R14)  returns 0x00000B75 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0586ms total)
T6F84 003:905 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0587ms total)
T6F84 003:907 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 00 00 00 00  returns 0x04 (0000ms, 0587ms total)
T6F84 003:910 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 0587ms total)
T577C 004:210 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0589ms total)
T577C 004:211 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0003ms, 0592ms total)
T577C 004:315 JLINK_IsHalted()  returns FALSE (0000ms, 0592ms total)
T577C 004:416 JLINK_IsHalted()  returns FALSE (0000ms, 0592ms total)
T577C 004:517 JLINK_IsHalted()  returns FALSE (0000ms, 0592ms total)
T577C 004:618 JLINK_IsHalted()  returns FALSE (0000ms, 0592ms total)
T577C 004:719 JLINK_IsHalted()  returns FALSE (0000ms, 0592ms total)
T6F84 004:833 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0593ms total)
T6F84 004:835 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0593ms total)
T6F84 004:838 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0594ms total)
T577C 004:839 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T577C 004:941 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T577C 005:041 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T577C 005:143 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T577C 005:244 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T6F84 005:356 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0595ms total)
T6F84 005:358 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0595ms total)
T6F84 005:360 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B7 37 16 05  returns 0x04 (0000ms, 0595ms total)
T577C 005:361 JLINK_IsHalted()  returns FALSE (0001ms, 0596ms total)
T577C 005:463 JLINK_IsHalted()  returns FALSE (0000ms, 0595ms total)
T577C 005:564 JLINK_IsHalted()  returns FALSE (0000ms, 0595ms total)
T577C 005:665 JLINK_IsHalted()  returns FALSE (0000ms, 0595ms total)
T577C 005:766 JLINK_IsHalted()  returns FALSE (0000ms, 0595ms total)
T6F84 005:878 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0596ms total)
T6F84 005:879 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0597ms total)
T6F84 005:881 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B7 37 16 05  returns 0x04 (0001ms, 0598ms total)
T577C 005:883 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T577C 005:984 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T577C 006:085 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T577C 006:186 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T577C 006:287 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T6F84 006:401 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0599ms total)
T6F84 006:403 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0599ms total)
T6F84 006:404 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 3D 91 86 0C  returns 0x04 (0001ms, 0600ms total)
T577C 006:406 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T577C 006:507 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T577C 006:609 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T577C 006:710 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T577C 006:811 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T6F84 006:923 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0601ms total)
T6F84 006:925 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0601ms total)
T6F84 006:927 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 3D 91 86 0C  returns 0x04 (0000ms, 0601ms total)
T577C 006:928 JLINK_IsHalted()  returns FALSE (0001ms, 0602ms total)
T577C 007:029 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T577C 007:130 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T577C 007:231 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T577C 007:332 JLINK_IsHalted()  returns FALSE (0001ms, 0602ms total)
T6F84 007:444 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0601ms total)
T6F84 007:446 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0602ms total)
T6F84 007:448 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 1F F7 13  returns 0x04 (0001ms, 0603ms total)
T577C 007:449 JLINK_IsHalted()  returns FALSE (0001ms, 0604ms total)
T577C 007:551 JLINK_IsHalted()  returns FALSE (0000ms, 0603ms total)
T577C 007:652 JLINK_IsHalted()  returns FALSE (0000ms, 0603ms total)
T577C 007:753 JLINK_IsHalted()  returns FALSE (0000ms, 0603ms total)
T577C 007:854 JLINK_IsHalted()  returns FALSE (0000ms, 0603ms total)
T6F84 007:967 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0603ms total)
T6F84 007:968 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0604ms total)
T6F84 007:970 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 51 9D 67 1B  returns 0x04 (0001ms, 0605ms total)
T577C 007:972 JLINK_IsHalted()  returns FALSE (0001ms, 0606ms total)
T577C 008:075 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T577C 008:176 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T577C 008:277 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T577C 008:378 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T6F84 008:490 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0606ms total)
T6F84 008:492 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0606ms total)
T6F84 008:493 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 51 9D 67 1B  returns 0x04 (0001ms, 0607ms total)
T577C 008:496 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T577C 008:599 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T577C 008:700 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T577C 008:801 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T577C 008:902 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T6F84 009:016 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0608ms total)
T6F84 009:017 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0608ms total)
T6F84 009:018 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 0D D8 22  returns 0x04 (0000ms, 0608ms total)
T577C 009:020 JLINK_IsHalted()  returns FALSE (0001ms, 0609ms total)
T577C 009:122 JLINK_IsHalted()  returns FALSE (0000ms, 0608ms total)
T577C 009:223 JLINK_IsHalted()  returns FALSE (0000ms, 0608ms total)
T577C 009:324 JLINK_IsHalted()  returns FALSE (0000ms, 0608ms total)
T577C 009:425 JLINK_IsHalted()  returns FALSE (0000ms, 0608ms total)
T6F84 009:535 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0609ms total)
T6F84 009:536 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0610ms total)
T6F84 009:538 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 0D D8 22  returns 0x04 (0000ms, 0610ms total)
T577C 009:539 JLINK_IsHalted()  returns FALSE (0001ms, 0611ms total)
T577C 009:641 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T577C 009:743 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T577C 009:843 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T577C 009:944 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T6F84 010:057 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0610ms total)
T6F84 010:058 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0611ms total)
T6F84 010:061 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B1 7E 48 2A  returns 0x04 (0001ms, 0612ms total)
T577C 010:063 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T577C 010:165 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T577C 010:265 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T577C 010:366 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T577C 010:468 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T6F84 010:583 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0612ms total)
T6F84 010:583 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0002ms, 0614ms total)
T6F84 010:586 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B1 7E 48 2A  returns 0x04 (0000ms, 0614ms total)
T577C 010:587 JLINK_IsHalted()  returns FALSE (0001ms, 0615ms total)
T577C 010:688 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T577C 010:789 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T577C 010:890 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T577C 010:992 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T6F84 011:104 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0614ms total)
T6F84 011:105 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0615ms total)
T6F84 011:107 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: F5 0B B9 31  returns 0x04 (0000ms, 0615ms total)
T577C 011:108 JLINK_IsHalted()  returns FALSE (0001ms, 0616ms total)
T577C 011:210 JLINK_IsHalted()  returns FALSE (0000ms, 0615ms total)
T577C 011:311 JLINK_IsHalted()  returns FALSE (0000ms, 0615ms total)
T577C 011:412 JLINK_IsHalted()  returns FALSE (0000ms, 0615ms total)
T577C 011:513 JLINK_IsHalted()  returns FALSE (0000ms, 0615ms total)
T6F84 011:624 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0615ms total)
T6F84 011:625 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0616ms total)
T6F84 011:628 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: F5 0B B9 31  returns 0x04 (0001ms, 0617ms total)
T577C 011:630 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T577C 011:731 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T577C 011:832 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T577C 011:933 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T577C 012:035 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T6F84 012:148 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0617ms total)
T6F84 012:149 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0618ms total)
T6F84 012:151 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 5F 88 29 39  returns 0x04 (0000ms, 0618ms total)
T577C 012:153 JLINK_IsHalted()  returns FALSE (0000ms, 0618ms total)
T577C 012:254 JLINK_IsHalted()  returns FALSE (0000ms, 0618ms total)
T577C 012:355 JLINK_IsHalted()  returns FALSE (0000ms, 0618ms total)
T577C 012:456 JLINK_IsHalted()  returns FALSE (0000ms, 0618ms total)
T577C 012:557 JLINK_IsHalted()  returns FALSE (0000ms, 0618ms total)
T6F84 012:669 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0618ms total)
T6F84 012:670 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0619ms total)
T6F84 012:672 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 5F 88 29 39  returns 0x04 (0000ms, 0619ms total)
T577C 012:673 JLINK_IsHalted()  returns FALSE (0001ms, 0620ms total)
T577C 012:775 JLINK_IsHalted()  returns FALSE (0000ms, 0619ms total)
T577C 012:877 JLINK_IsHalted()  returns FALSE (0000ms, 0619ms total)
T577C 012:978 JLINK_IsHalted()  returns FALSE (0000ms, 0619ms total)
T577C 013:079 JLINK_IsHalted()  returns FALSE (0000ms, 0619ms total)
T6F84 013:123 JLINK_ReadMemEx(0x0000A7F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F0) - Data: F6 F7  returns 0x02 (0000ms, 0619ms total)
T6F84 013:123 JLINK_ReadMemEx(0x0000A7F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F2) - Data: 0A FF  returns 0x02 (0001ms, 0620ms total)
T6F84 013:124 JLINK_ReadMemEx(0x0000A7F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F4) - Data: 08 48  returns 0x02 (0000ms, 0620ms total)
T6F84 013:124 JLINK_ReadMemEx(0x0000A7F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F6) - Data: 42 68  returns 0x02 (0001ms, 0621ms total)
T6F84 013:125 JLINK_ReadMemEx(0x0000A7F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F6) - Data: 42 68  returns 0x02 (0000ms, 0621ms total)
T6F84 013:125 JLINK_ReadMemEx(0x0000A7F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F8) - Data: 00 20  returns 0x02 (0000ms, 0621ms total)
T6F84 013:125 JLINK_ReadMemEx(0x0000A7F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7F8) - Data: 00 20  returns 0x02 (0002ms, 0623ms total)
T6F84 013:127 JLINK_ReadMemEx(0x0000A7FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7FA) - Data: 01 46  returns 0x02 (0000ms, 0623ms total)
T6F84 013:127 JLINK_ReadMemEx(0x0000A7FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7FA) - Data: 01 46  returns 0x02 (0000ms, 0623ms total)
T6F84 013:127 JLINK_ReadMemEx(0x0000A7FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A7FC) - Data: 02 F0  returns 0x02 (0001ms, 0624ms total)
T6F84 013:193 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0624ms total)
T6F84 013:194 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0625ms total)
T6F84 013:196 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B9 06 9A 40  returns 0x04 (0000ms, 0625ms total)
T577C 013:199 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T577C 013:300 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T577C 013:401 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T577C 013:502 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T577C 013:603 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T6F84 013:713 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0626ms total)
T6F84 013:715 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0626ms total)
T6F84 013:717 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B9 06 9A 40  returns 0x04 (0000ms, 0626ms total)
T577C 013:718 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T577C 013:820 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T577C 013:921 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T577C 014:022 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T577C 014:123 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T6F84 014:236 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0627ms total)
T6F84 014:238 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0628ms total)
T6F84 014:240 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 85 0A 48  returns 0x04 (0000ms, 0628ms total)
T577C 014:241 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T577C 014:342 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T577C 014:443 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T577C 014:545 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T577C 014:645 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T6F84 014:756 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0628ms total)
T6F84 014:757 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0629ms total)
T6F84 014:759 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 85 0A 48  returns 0x04 (0001ms, 0630ms total)
T577C 014:760 JLINK_IsHalted()  returns FALSE (0001ms, 0631ms total)
T577C 014:861 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T577C 014:962 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T577C 015:063 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T577C 015:164 JLINK_IsHalted()  returns FALSE (0001ms, 0631ms total)
T6F84 015:275 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0631ms total)
T6F84 015:277 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0632ms total)
T6F84 015:279 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: CD 11 7B 4F  returns 0x04 (0000ms, 0632ms total)
T577C 015:283 JLINK_IsHalted()  returns FALSE (0000ms, 0632ms total)
T577C 015:385 JLINK_IsHalted()  returns FALSE (0000ms, 0632ms total)
T577C 015:487 JLINK_IsHalted()  returns FALSE (0000ms, 0632ms total)
T577C 015:588 JLINK_IsHalted()  returns FALSE (0000ms, 0632ms total)
T577C 015:689 JLINK_IsHalted()  returns FALSE (0000ms, 0632ms total)
T6F84 015:803 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0633ms total)
T6F84 015:804 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0634ms total)
T6F84 015:806 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: CD 11 7B 4F  returns 0x04 (0000ms, 0634ms total)
T577C 015:807 JLINK_IsHalted()  returns FALSE (0001ms, 0635ms total)
T577C 015:909 JLINK_IsHalted()  returns FALSE (0000ms, 0634ms total)
T577C 016:011 JLINK_IsHalted()  returns FALSE (0000ms, 0634ms total)
T577C 016:112 JLINK_IsHalted()  returns FALSE (0000ms, 0634ms total)
T577C 016:213 JLINK_IsHalted()  returns FALSE (0000ms, 0634ms total)
T6F84 016:324 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0635ms total)
T6F84 016:326 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0635ms total)
T6F84 016:327 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 13 AE EB 56  returns 0x04 (0001ms, 0636ms total)
T577C 016:329 JLINK_IsHalted()  returns FALSE (0001ms, 0637ms total)
T577C 016:430 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T577C 016:531 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T577C 016:632 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T577C 016:733 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T6F84 016:845 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0636ms total)
T6F84 016:846 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0637ms total)
T6F84 016:848 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 13 AE EB 56  returns 0x04 (0000ms, 0637ms total)
T577C 016:849 JLINK_IsHalted()  returns FALSE (0001ms, 0638ms total)
T577C 016:951 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T577C 017:052 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T577C 017:153 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T577C 017:254 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T6F84 017:276 JLINK_SetBPEx(Addr = 0x00001800, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0001ms, 0638ms total)
T6F84 017:368 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0639ms total)
T6F84 017:369 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0640ms total)
T6F84 017:371 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 F3 5B 5E  returns 0x04 (0001ms, 0641ms total)
T577C 017:373 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T577C 017:475 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T577C 017:576 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T577C 017:676 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T577C 017:778 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T6F84 017:890 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0642ms total)
T6F84 017:892 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0642ms total)
T6F84 017:893 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 07 F3 5B 5E  returns 0x04 (0002ms, 0644ms total)
T577C 017:896 JLINK_IsHalted()  returns FALSE (0000ms, 0644ms total)
T577C 017:997 JLINK_IsHalted()  returns TRUE (0003ms, 0647ms total)
T577C 018:000 JLINK_Halt()  returns 0x00 (0000ms, 0644ms total)
T577C 018:000 JLINK_IsHalted()  returns TRUE (0000ms, 0644ms total)
T577C 018:000 JLINK_IsHalted()  returns TRUE (0000ms, 0644ms total)
T577C 018:000 JLINK_IsHalted()  returns TRUE (0001ms, 0645ms total)
T577C 018:001 JLINK_ReadReg(R15 (PC))  returns 0x00001800 (0000ms, 0644ms total)
T577C 018:001 JLINK_ReadReg(XPSR)  returns 0x01000014 (0000ms, 0644ms total)
T577C 018:001 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0644ms total)
T577C 018:001 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0644ms total)
T577C 018:001 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0645ms total)
T577C 018:002 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R2)  returns 0x07FF7F7F (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R4)  returns 0x0201B30A (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R5)  returns 0x02019620 (0000ms, 0645ms total)
T577C 018:002 JLINK_ReadReg(R6)  returns 0x02019698 (0001ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R7)  returns 0x00000021 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R13 (SP))  returns 0x0202F6C8 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R14)  returns 0x0000CE63 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(R15 (PC))  returns 0x00001800 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(XPSR)  returns 0x01000014 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(MSP)  returns 0x0202F6C8 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0646ms total)
T577C 018:003 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0646ms total)
T6F84 018:005 JLINK_ReadMemEx(0x0202F6DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6DC) - Data: 11 17 00 00  returns 0x04 (0001ms, 0647ms total)
T6F84 018:006 JLINK_ReadMemEx(0x0202F6CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6CC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0647ms total)
T6F84 018:006 JLINK_ReadMemEx(0x0202F6D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6D0) - Data: CA 97 01 02  returns 0x04 (0001ms, 0648ms total)
T6F84 018:007 JLINK_ReadMemEx(0x0202F6D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6D4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0648ms total)
T6F84 018:007 JLINK_ReadMemEx(0x0202F6D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6D8) - Data: 20 96 01 02  returns 0x04 (0001ms, 0649ms total)
T6F84 018:008 JLINK_ReadMemEx(0x0202F6DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6DC) - Data: 11 17 00 00  returns 0x04 (0000ms, 0649ms total)
T6F84 018:008 JLINK_ReadMemEx(0x0202F704, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F704) - Data: F5 A7 00 00  returns 0x04 (0001ms, 0650ms total)
T6F84 018:009 JLINK_ReadMemEx(0x0202F6F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6F4) - Data: 60 F7 02 02  returns 0x04 (0000ms, 0650ms total)
T6F84 018:009 JLINK_ReadMemEx(0x0202F6F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6F8) - Data: CB 00 00 00  returns 0x04 (0001ms, 0651ms total)
T6F84 018:010 JLINK_ReadMemEx(0x0202F6FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6FC) - Data: 5D 8A 55 92  returns 0x04 (0000ms, 0651ms total)
T6F84 018:010 JLINK_ReadMemEx(0x0202F700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F700) - Data: 20 96 01 02  returns 0x04 (0001ms, 0652ms total)
T6F84 018:011 JLINK_ReadMemEx(0x0202F704, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F704) - Data: F5 A7 00 00  returns 0x04 (0000ms, 0652ms total)
T6F84 018:011 JLINK_ReadMemEx(0x0202F71C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F71C) - Data: 99 25 00 00  returns 0x04 (0000ms, 0652ms total)
T6F84 018:012 JLINK_ReadMemEx(0x0202F70C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F70C) - Data: 03 00 00 00  returns 0x04 (0000ms, 0652ms total)
T6F84 018:012 JLINK_ReadMemEx(0x0202F710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F710) - Data: 28 A0 00 50  returns 0x04 (0001ms, 0653ms total)
T6F84 018:013 JLINK_ReadMemEx(0x0202F714, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F714) - Data: 28 00 00 00  returns 0x04 (0000ms, 0653ms total)
T6F84 018:013 JLINK_ReadMemEx(0x0202F718, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F718) - Data: 00 80 00 00  returns 0x04 (0001ms, 0654ms total)
T6F84 018:014 JLINK_ReadMemEx(0x0202F71C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F71C) - Data: 99 25 00 00  returns 0x04 (0000ms, 0654ms total)
T6F84 018:016 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 1F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0655ms total)
T6F84 018:032 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0001ms, 0656ms total)
T6F84 018:033 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0000ms, 0656ms total)
T6F84 018:053 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0001ms, 0657ms total)
T6F84 018:054 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0000ms, 0657ms total)
T6F84 018:070 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0658ms total)
T6F84 018:071 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0658ms total)
T6F84 018:086 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0658ms total)
T6F84 018:086 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0658ms total)
T6F84 018:102 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0658ms total)
T6F84 018:102 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0659ms total)
T6F84 018:132 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0001ms, 0660ms total)
T6F84 018:133 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0000ms, 0660ms total)
T6F84 018:149 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0660ms total)
T6F84 018:149 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0661ms total)
T6F84 018:164 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0662ms total)
T6F84 018:165 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0662ms total)
T6F84 018:181 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 1F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0663ms total)
T6F84 018:197 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0001ms, 0664ms total)
T6F84 018:198 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0000ms, 0664ms total)
T6F84 018:217 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0664ms total)
T6F84 018:217 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0665ms total)
T6F84 018:232 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 1F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0666ms total)
T6F84 018:248 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0000ms, 0666ms total)
T6F84 018:248 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0001ms, 0667ms total)
T6F84 018:276 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0668ms total)
T6F84 018:277 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0669ms total)
T6F84 018:291 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0669ms total)
T6F84 018:291 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0670ms total)
T6F84 018:306 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0670ms total)
T6F84 018:306 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0671ms total)
T6F84 018:319 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0671ms total)
T6F84 018:319 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0672ms total)
T6F84 018:333 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0672ms total)
T6F84 018:333 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0673ms total)
T6F84 018:351 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0673ms total)
T6F84 018:351 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0674ms total)
T6F84 018:365 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0675ms total)
T6F84 018:382 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0676ms total)
T6F84 018:412 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0676ms total)
T6F84 018:412 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0676ms total)
T6F84 018:412 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0677ms total)
T6F84 018:426 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0001ms, 0678ms total)
T6F84 018:427 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: CB 18 C7 65  returns 0x04 (0000ms, 0678ms total)
T6F84 018:444 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A3 7E CC 65  returns 0x04 (0000ms, 0678ms total)
T6F84 018:445 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0000ms, 0678ms total)
T6F84 018:445 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 0B C3 CD 65  returns 0x04 (0001ms, 0679ms total)
T6F84 018:459 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0679ms total)
T6F84 018:459 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 0680ms total)
T6F84 018:461 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 0680ms total)
T6F84 018:461 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0681ms total)
T6F84 018:462 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0681ms total)
T6F84 018:462 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0682ms total)
T6F84 018:463 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0683ms total)
T6F84 018:464 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0683ms total)
T6F84 018:465 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0683ms total)
T6F84 018:465 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0684ms total)
T6F84 018:469 JLINK_ReadMemEx(0x000017F4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000017C0) -- Updating C cache (128 bytes @ 0x000017C0) -- Read from C cache (60 bytes @ 0x000017F4) - Data: AB 6B 28 21 01 22 20 46 0B F0 0A FB 69 8A 72 18 ...  returns 0x3C (0001ms, 0685ms total)
T6F84 018:470 JLINK_ReadMemEx(0x000017F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017F4) - Data: AB 6B  returns 0x02 (0001ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017F6) - Data: 28 21  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017F6) - Data: 28 21  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000017F8) - Data: 01 22 20 46 0B F0 0A FB 69 8A 72 18 00 21 D1 55 ...  returns 0x3C (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017F8) - Data: 01 22  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000017F8) - Data: 01 22 20 46 0B F0 0A FB 69 8A 72 18 00 21 D1 55 ...  returns 0x3C (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017F8) - Data: 01 22  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017FA) - Data: 20 46  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017FA) - Data: 20 46  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000017FC) - Data: 0B F0 0A FB 69 8A 72 18 00 21 D1 55 E8 70 08 46 ...  returns 0x3C (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017FC) - Data: 0B F0  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000017FC) - Data: 0B F0 0A FB 69 8A 72 18 00 21 D1 55 E8 70 08 46 ...  returns 0x3C (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017FC) - Data: 0B F0  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x000017FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000017FE) - Data: 0A FB  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x00001800, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001800) - Data: 69 8A 72 18 00 21 D1 55 E8 70 08 46 01 B0 F0 BD ...  returns 0x3C (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x00001800, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001800) - Data: 69 8A  returns 0x02 (0000ms, 0686ms total)
T6F84 018:471 JLINK_ReadMemEx(0x00001802, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001802) - Data: 72 18  returns 0x02 (0002ms, 0688ms total)
T6F84 018:473 JLINK_ReadMemEx(0x00001802, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001802) - Data: 72 18  returns 0x02 (0000ms, 0688ms total)
T6F84 018:473 JLINK_ReadMemEx(0x00001804, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001804) - Data: 00 21 D1 55 E8 70 08 46 01 B0 F0 BD 0A B3 01 02 ...  returns 0x3C (0000ms, 0688ms total)
T6F84 018:473 JLINK_ReadMemEx(0x00001804, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001804) - Data: 00 21  returns 0x02 (0000ms, 0688ms total)
T577C 027:853 JLINK_ReadMemEx(0x00001800, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001800) - Data: 69 8A  returns 0x02 (0000ms, 0688ms total)
T577C 027:853 JLINK_Step() -- Read from C cache (2 bytes @ 0x00001800) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00 (0007ms, 0695ms total)
T577C 027:860 JLINK_ReadReg(R15 (PC))  returns 0x00001802 (0000ms, 0695ms total)
T577C 027:860 JLINK_ReadReg(XPSR)  returns 0x01000014 (0000ms, 0695ms total)
T577C 027:860 JLINK_SetBPEx(Addr = 0x00001800, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 0695ms total)
T577C 027:860 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0002ms, 0697ms total)
T577C 027:963 JLINK_IsHalted()  returns TRUE (0003ms, 0700ms total)
T577C 027:966 JLINK_Halt()  returns 0x00 (0000ms, 0697ms total)
T577C 027:966 JLINK_IsHalted()  returns TRUE (0000ms, 0697ms total)
T577C 027:966 JLINK_IsHalted()  returns TRUE (0000ms, 0697ms total)
T577C 027:966 JLINK_IsHalted()  returns TRUE (0000ms, 0697ms total)
T577C 027:966 JLINK_ReadReg(R15 (PC))  returns 0x00001800 (0000ms, 0697ms total)
T577C 027:966 JLINK_ReadReg(XPSR)  returns 0x01000014 (0000ms, 0697ms total)
T577C 027:966 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 0697ms total)
T577C 027:966 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0698ms total)
T577C 027:967 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0698ms total)
T577C 027:967 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R2)  returns 0x07FF7F7F (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R4)  returns 0x0201B30A (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R5)  returns 0x02019620 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R6)  returns 0x02019698 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R7)  returns 0x00000021 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R13 (SP))  returns 0x0202F6D0 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R14)  returns 0x0000CE63 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(R15 (PC))  returns 0x00001800 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(XPSR)  returns 0x01000014 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(MSP)  returns 0x0202F6D0 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0699ms total)
T577C 027:968 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0699ms total)
T6F84 027:969 JLINK_ReadMemEx(0x0202F6E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6E4) - Data: 11 17 00 00  returns 0x04 (0001ms, 0700ms total)
T6F84 027:970 JLINK_ReadMemEx(0x0202F6D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6D4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0701ms total)
T6F84 027:971 JLINK_ReadMemEx(0x0202F6D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6D8) - Data: CA 97 01 02  returns 0x04 (0000ms, 0701ms total)
T6F84 027:971 JLINK_ReadMemEx(0x0202F6DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6DC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0701ms total)
T6F84 027:971 JLINK_ReadMemEx(0x0202F6E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6E0) - Data: 20 96 01 02  returns 0x04 (0001ms, 0702ms total)
T6F84 027:972 JLINK_ReadMemEx(0x0202F6E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6E4) - Data: 11 17 00 00  returns 0x04 (0000ms, 0702ms total)
T6F84 027:972 JLINK_ReadMemEx(0x0202F70C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F70C) - Data: F5 A7 00 00  returns 0x04 (0001ms, 0703ms total)
T6F84 027:973 JLINK_ReadMemEx(0x0202F6FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F6FC) - Data: 68 F7 02 02  returns 0x04 (0000ms, 0703ms total)
T6F84 027:973 JLINK_ReadMemEx(0x0202F700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F700) - Data: 60 01 00 00  returns 0x04 (0001ms, 0704ms total)
T6F84 027:974 JLINK_ReadMemEx(0x0202F704, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F704) - Data: D7 6F 51 5C  returns 0x04 (0000ms, 0704ms total)
T6F84 027:974 JLINK_ReadMemEx(0x0202F708, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F708) - Data: 20 96 01 02  returns 0x04 (0001ms, 0705ms total)
T6F84 027:975 JLINK_ReadMemEx(0x0202F70C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F70C) - Data: F5 A7 00 00  returns 0x04 (0001ms, 0706ms total)
T6F84 027:976 JLINK_ReadMemEx(0x0202F724, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F724) - Data: 99 25 00 00  returns 0x04 (0000ms, 0706ms total)
T6F84 027:977 JLINK_ReadMemEx(0x0202F714, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F714) - Data: 03 00 00 00  returns 0x04 (0000ms, 0706ms total)
T6F84 027:978 JLINK_ReadMemEx(0x0202F718, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F718) - Data: 28 A0 00 50  returns 0x04 (0000ms, 0707ms total)
T6F84 027:978 JLINK_ReadMemEx(0x0202F71C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F71C) - Data: 28 00 00 00  returns 0x04 (0000ms, 0707ms total)
T6F84 027:979 JLINK_ReadMemEx(0x0202F720, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F720) - Data: 00 80 00 00  returns 0x04 (0000ms, 0708ms total)
T6F84 027:979 JLINK_ReadMemEx(0x0202F724, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F724) - Data: 99 25 00 00  returns 0x04 (0000ms, 0708ms total)
T6F84 027:981 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0709ms total)
T6F84 027:982 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0000ms, 0709ms total)
T6F84 027:983 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0000ms, 0709ms total)
T6F84 027:984 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0709ms total)
T6F84 027:985 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0709ms total)
T6F84 027:985 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0709ms total)
T6F84 027:987 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0001ms, 0710ms total)
T6F84 027:990 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0710ms total)
T6F84 027:991 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0711ms total)
T6F84 027:993 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0712ms total)
T6F84 027:994 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0000ms, 0712ms total)
T6F84 027:995 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0712ms total)
T6F84 027:996 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0712ms total)
T6F84 027:996 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0001ms, 0713ms total)
T6F84 027:997 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0714ms total)
T6F84 027:998 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0714ms total)
T6F84 027:998 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0715ms total)
T6F84 027:999 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T6F84 027:999 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0716ms total)
T6F84 028:000 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0716ms total)
T6F84 028:001 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0717ms total)
T6F84 028:002 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0718ms total)
T6F84 028:003 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0718ms total)
T6F84 028:003 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0719ms total)
T6F84 028:005 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0000ms, 0719ms total)
T6F84 028:007 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 81 60 31 B0  returns 0x04 (0000ms, 0719ms total)
T6F84 028:008 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0001ms, 0720ms total)
T6F84 028:009 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 0721ms total)
T6F84 028:010 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 0721ms total)
T6F84 028:010 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0722ms total)
T6F84 028:011 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0722ms total)
T6F84 028:011 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0723ms total)
T6F84 030:444 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0723ms total)
T6F84 030:444 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) (0067ms, 0790ms total)
T6F84 030:511 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0790ms total)
T6F84 030:511 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0790ms total)
T6F84 030:515 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0791ms total)
T6F84 030:516 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0791ms total)
T6F84 030:516 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0792ms total)
T6F84 030:517 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0793ms total)
T6F84 030:518 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0793ms total)
T6F84 030:518 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0794ms total)
T6F84 030:519 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0002ms, 0796ms total)
T6F84 030:521 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0796ms total)
T6F84 030:521 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0796ms total)
T6F84 030:521 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0797ms total)
T6F84 030:522 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0798ms total)
T6F84 030:523 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0798ms total)
T6F84 030:523 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0799ms total)
T6F84 030:524 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0800ms total)
T6F84 030:525 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0800ms total)
T6F84 030:525 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0801ms total)
T6F84 030:526 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0802ms total)
T6F84 030:527 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0802ms total)
T6F84 030:527 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0803ms total)
T6F84 030:528 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0804ms total)
T6F84 030:529 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R2)  returns 0x07FF7F7F (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R4)  returns 0x0201B30A (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R5)  returns 0x02019620 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R6)  returns 0x02019698 (0000ms, 0804ms total)
T6F84 030:544 JLINK_ReadReg(R7)  returns 0x00000021 (0000ms, 0804ms total)
T6F84 030:545 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R14)  returns 0x0000CE63 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0805ms total)
T6F84 030:545 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0806ms total)
T6F84 030:546 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0000ms, 0806ms total)
T6F84 030:547 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0001ms, 0807ms total)
T6F84 030:548 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0807ms total)
T6F84 030:548 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0808ms total)
T6F84 030:549 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0808ms total)
T6F84 030:550 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0000ms, 0808ms total)
T6F84 030:553 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0808ms total)
T6F84 030:553 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0809ms total)
T6F84 030:554 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0810ms total)
T6F84 030:555 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0000ms, 0810ms total)
T6F84 030:555 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0811ms total)
T6F84 030:556 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 29 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0812ms total)
T6F84 030:557 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0000ms, 0812ms total)
T6F84 030:557 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0813ms total)
T6F84 030:558 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0813ms total)
T6F84 030:558 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0814ms total)
T6F84 030:559 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0814ms total)
T6F84 030:559 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0815ms total)
T6F84 030:560 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0815ms total)
T6F84 030:561 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0815ms total)
T6F84 030:561 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 0817ms total)
T6F84 030:563 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0817ms total)
T6F84 030:563 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0818ms total)
T6F84 030:565 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: BE 16 2C B0  returns 0x04 (0000ms, 0818ms total)
T6F84 030:565 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 81 60 31 B0  returns 0x04 (0001ms, 0819ms total)
T6F84 030:568 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: FE C0 32 B0  returns 0x04 (0001ms, 0820ms total)
T6F84 030:570 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0820ms total)
T6F84 030:570 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0821ms total)
T6F84 030:571 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0821ms total)
T6F84 030:571 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0822ms total)
T6F84 030:572 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0822ms total)
T577C 031:023 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0823ms total)
T577C 031:024 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0004ms, 0827ms total)
T577C 031:128 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T577C 031:229 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T577C 031:331 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T577C 031:431 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T577C 031:533 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T6F84 031:634 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0828ms total)
T6F84 031:635 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 00 00 00 00  returns 0x04 (0001ms, 0829ms total)
T6F84 031:636 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 00 00 00 00  returns 0x04 (0000ms, 0829ms total)
T6F84 031:637 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0829ms total)
T6F84 031:638 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0830ms total)
T6F84 031:639 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0830ms total)
T6F84 031:640 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 00 00 00 00  returns 0x04 (0001ms, 0831ms total)
T6F84 031:643 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 00  returns 0x01 (0000ms, 0831ms total)
T6F84 031:643 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 00  returns 0x01 (0001ms, 0832ms total)
T6F84 031:644 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0833ms total)
T6F84 031:645 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 00 00 00 00  returns 0x04 (0001ms, 0834ms total)
T6F84 031:646 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 00 00  returns 0x02 (0001ms, 0835ms total)
T6F84 031:647 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0836ms total)
T6F84 031:648 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 00 00 00 00  returns 0x04 (0000ms, 0836ms total)
T6F84 031:649 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0836ms total)
T6F84 031:649 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0837ms total)
T6F84 031:650 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0837ms total)
T6F84 031:650 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0838ms total)
T6F84 031:651 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0838ms total)
T6F84 031:651 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0838ms total)
T6F84 031:652 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0839ms total)
T6F84 031:653 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0840ms total)
T6F84 031:654 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0840ms total)
T6F84 031:654 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0840ms total)
T6F84 031:655 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 00 00 00 00  returns 0x04 (0001ms, 0841ms total)
T6F84 031:656 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0842ms total)
T6F84 031:657 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 00 00 00 00  returns 0x04 (0000ms, 0842ms total)
T6F84 031:657 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 0843ms total)
T6F84 031:658 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 0843ms total)
T6F84 031:658 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0844ms total)
T6F84 031:659 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0844ms total)
T6F84 031:659 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 00 00  returns 0x02 (0001ms, 0845ms total)
T577C 031:660 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T577C 031:762 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T577C 031:862 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T577C 031:963 JLINK_IsHalted()  returns FALSE (0001ms, 0846ms total)
T577C 032:065 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T6F84 032:168 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0846ms total)
T6F84 032:170 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0846ms total)
T6F84 032:171 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0000ms, 0846ms total)
T6F84 032:171 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0847ms total)
T6F84 032:172 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0848ms total)
T6F84 032:173 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0848ms total)
T6F84 032:174 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0000ms, 0848ms total)
T6F84 032:176 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0849ms total)
T6F84 032:177 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0850ms total)
T6F84 032:178 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0851ms total)
T6F84 032:179 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0001ms, 0852ms total)
T6F84 032:181 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0853ms total)
T6F84 032:182 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0854ms total)
T6F84 032:184 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0854ms total)
T6F84 032:185 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0854ms total)
T6F84 032:185 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0854ms total)
T6F84 032:185 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0855ms total)
T6F84 032:186 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0855ms total)
T6F84 032:186 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0856ms total)
T6F84 032:187 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0856ms total)
T6F84 032:188 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0856ms total)
T6F84 032:188 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 0858ms total)
T6F84 032:190 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0858ms total)
T6F84 032:190 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0858ms total)
T6F84 032:192 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0000ms, 0858ms total)
T6F84 032:193 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B5 1F 7E 06  returns 0x04 (0000ms, 0858ms total)
T6F84 032:194 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0858ms total)
T6F84 032:196 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0858ms total)
T6F84 032:196 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0859ms total)
T6F84 032:197 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0859ms total)
T6F84 032:197 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0859ms total)
T6F84 032:197 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0860ms total)
T577C 032:198 JLINK_IsHalted()  returns FALSE (0001ms, 0861ms total)
T577C 032:299 JLINK_IsHalted()  returns FALSE (0001ms, 0861ms total)
T577C 032:400 JLINK_IsHalted()  returns FALSE (0001ms, 0861ms total)
T577C 032:502 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T577C 032:603 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T6F84 032:705 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0861ms total)
T6F84 032:706 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0861ms total)
T6F84 032:707 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0000ms, 0861ms total)
T6F84 032:707 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0862ms total)
T6F84 032:708 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0862ms total)
T6F84 032:708 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0863ms total)
T6F84 032:710 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0000ms, 0863ms total)
T6F84 032:712 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0863ms total)
T6F84 032:712 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0864ms total)
T6F84 032:713 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0865ms total)
T6F84 032:714 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0865ms total)
T6F84 032:714 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0866ms total)
T6F84 032:715 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2D 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0867ms total)
T6F84 032:716 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0000ms, 0867ms total)
T6F84 032:716 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0868ms total)
T6F84 032:717 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0868ms total)
T6F84 032:717 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0869ms total)
T6F84 032:718 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0869ms total)
T6F84 032:718 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0870ms total)
T6F84 032:719 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0870ms total)
T6F84 032:720 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0870ms total)
T6F84 032:721 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0871ms total)
T6F84 032:722 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0871ms total)
T6F84 032:722 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0872ms total)
T6F84 032:725 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 0F D6 78 06  returns 0x04 (0001ms, 0873ms total)
T6F84 032:726 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: B5 1F 7E 06  returns 0x04 (0001ms, 0874ms total)
T6F84 032:727 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 4F 80 7F 06  returns 0x04 (0001ms, 0875ms total)
T6F84 032:728 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0875ms total)
T6F84 032:728 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0876ms total)
T6F84 032:729 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0876ms total)
T6F84 032:729 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0877ms total)
T6F84 032:730 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0878ms total)
T577C 032:731 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T577C 032:832 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T577C 032:933 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T577C 033:034 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T577C 033:135 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T6F84 033:238 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0879ms total)
T6F84 033:239 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0000ms, 0879ms total)
T6F84 033:240 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0000ms, 0879ms total)
T6F84 033:240 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0880ms total)
T6F84 033:241 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0881ms total)
T6F84 033:242 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0881ms total)
T6F84 033:243 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0001ms, 0882ms total)
T6F84 033:245 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0883ms total)
T6F84 033:246 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0883ms total)
T6F84 033:246 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0884ms total)
T6F84 033:247 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0000ms, 0884ms total)
T6F84 033:248 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0884ms total)
T6F84 033:248 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0885ms total)
T6F84 033:249 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0001ms, 0886ms total)
T6F84 033:250 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0886ms total)
T6F84 033:250 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0887ms total)
T6F84 033:251 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0887ms total)
T6F84 033:251 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0888ms total)
T6F84 033:252 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0888ms total)
T6F84 033:252 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0889ms total)
T6F84 033:254 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0889ms total)
T6F84 033:254 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0003ms, 0892ms total)
T6F84 033:257 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0892ms total)
T6F84 033:257 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0893ms total)
T6F84 033:258 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0000ms, 0893ms total)
T6F84 033:258 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 09 AD EE 0D  returns 0x04 (0000ms, 0893ms total)
T6F84 033:259 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0000ms, 0893ms total)
T6F84 033:260 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0893ms total)
T6F84 033:260 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 0893ms total)
T6F84 033:261 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0894ms total)
T6F84 033:261 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0894ms total)
T6F84 033:261 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0895ms total)
T577C 033:262 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T577C 033:364 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T577C 033:465 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T577C 033:567 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T577C 033:668 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T6F84 033:771 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0896ms total)
T6F84 033:772 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0001ms, 0897ms total)
T6F84 033:773 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0000ms, 0897ms total)
T6F84 033:774 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0897ms total)
T6F84 033:775 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0897ms total)
T6F84 033:775 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0898ms total)
T6F84 033:776 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0001ms, 0899ms total)
T6F84 033:778 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0900ms total)
T6F84 033:779 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0900ms total)
T6F84 033:779 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0901ms total)
T6F84 033:780 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0000ms, 0901ms total)
T6F84 033:781 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0901ms total)
T6F84 033:781 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2E 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0902ms total)
T6F84 033:782 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0001ms, 0903ms total)
T6F84 033:783 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0904ms total)
T6F84 033:784 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0904ms total)
T6F84 033:784 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0905ms total)
T6F84 033:785 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0905ms total)
T6F84 033:785 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0906ms total)
T6F84 033:786 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0906ms total)
T6F84 033:787 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0907ms total)
T6F84 033:788 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0908ms total)
T6F84 033:789 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0908ms total)
T6F84 033:789 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0909ms total)
T6F84 033:791 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 5E 63 E9 0D  returns 0x04 (0000ms, 0909ms total)
T6F84 033:791 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 09 AD EE 0D  returns 0x04 (0001ms, 0910ms total)
T6F84 033:792 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 9E 0D F0 0D  returns 0x04 (0001ms, 0911ms total)
T6F84 033:793 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0911ms total)
T6F84 033:793 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0912ms total)
T6F84 033:794 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0912ms total)
T6F84 033:794 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0913ms total)
T6F84 033:795 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0913ms total)
T577C 033:795 JLINK_IsHalted()  returns FALSE (0001ms, 0914ms total)
T577C 033:897 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T577C 033:998 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T577C 034:099 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T577C 034:200 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T6F84 034:303 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0914ms total)
T6F84 034:304 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0001ms, 0915ms total)
T6F84 034:305 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0000ms, 0915ms total)
T6F84 034:306 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0915ms total)
T6F84 034:306 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0916ms total)
T6F84 034:307 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0916ms total)
T6F84 034:308 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0001ms, 0917ms total)
T6F84 034:312 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0917ms total)
T6F84 034:312 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0918ms total)
T6F84 034:313 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0919ms total)
T6F84 034:314 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0919ms total)
T6F84 034:314 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0920ms total)
T6F84 034:315 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0921ms total)
T6F84 034:316 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0921ms total)
T6F84 034:316 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0921ms total)
T6F84 034:316 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0922ms total)
T6F84 034:317 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0922ms total)
T6F84 034:317 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0923ms total)
T6F84 034:318 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0923ms total)
T6F84 034:318 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0924ms total)
T6F84 034:319 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0925ms total)
T6F84 034:320 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0926ms total)
T6F84 034:321 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0927ms total)
T6F84 034:322 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0927ms total)
T6F84 034:323 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0000ms, 0927ms total)
T6F84 034:323 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A7 1C 5F 15  returns 0x04 (0002ms, 0929ms total)
T6F84 034:326 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0929ms total)
T6F84 034:327 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0929ms total)
T6F84 034:327 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0930ms total)
T6F84 034:328 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0930ms total)
T6F84 034:328 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0931ms total)
T6F84 034:329 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0931ms total)
T577C 034:329 JLINK_IsHalted()  returns FALSE (0001ms, 0932ms total)
T577C 034:431 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T577C 034:532 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T577C 034:633 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T577C 034:734 JLINK_IsHalted()  returns FALSE (0001ms, 0932ms total)
T6F84 034:836 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0932ms total)
T6F84 034:837 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0932ms total)
T6F84 034:838 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0000ms, 0932ms total)
T6F84 034:838 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0933ms total)
T6F84 034:840 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0934ms total)
T6F84 034:841 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0934ms total)
T6F84 034:842 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0001ms, 0935ms total)
T6F84 034:844 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0936ms total)
T6F84 034:845 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0936ms total)
T6F84 034:845 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0938ms total)
T6F84 034:847 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0938ms total)
T6F84 034:847 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0939ms total)
T6F84 034:848 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 2F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0940ms total)
T6F84 034:849 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0940ms total)
T6F84 034:849 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0941ms total)
T6F84 034:850 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0941ms total)
T6F84 034:850 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0942ms total)
T6F84 034:851 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0942ms total)
T6F84 034:851 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0943ms total)
T6F84 034:852 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0943ms total)
T6F84 034:853 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0943ms total)
T6F84 034:853 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 0945ms total)
T6F84 034:855 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0945ms total)
T6F84 034:855 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0946ms total)
T6F84 034:857 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: E3 D2 59 15  returns 0x04 (0001ms, 0947ms total)
T6F84 034:858 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A7 1C 5F 15  returns 0x04 (0000ms, 0947ms total)
T6F84 034:859 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 23 7D 60 15  returns 0x04 (0000ms, 0947ms total)
T6F84 034:859 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 0948ms total)
T6F84 034:860 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 0948ms total)
T6F84 034:861 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0948ms total)
T6F84 034:861 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0948ms total)
T6F84 034:861 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0949ms total)
T577C 034:862 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T577C 034:963 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T577C 035:064 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T577C 035:165 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T577C 035:266 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T6F84 035:368 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0950ms total)
T6F84 035:369 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0000ms, 0950ms total)
T6F84 035:371 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0000ms, 0950ms total)
T6F84 035:371 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0951ms total)
T6F84 035:372 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0951ms total)
T6F84 035:372 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0951ms total)
T6F84 035:375 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0000ms, 0951ms total)
T6F84 035:377 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0951ms total)
T6F84 035:377 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 0952ms total)
T6F84 035:378 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0952ms total)
T6F84 035:379 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0000ms, 0953ms total)
T6F84 035:379 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0954ms total)
T6F84 035:380 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0954ms total)
T6F84 035:380 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0001ms, 0955ms total)
T6F84 035:381 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0955ms total)
T6F84 035:381 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0956ms total)
T6F84 035:382 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0956ms total)
T6F84 035:382 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0956ms total)
T6F84 035:382 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 0957ms total)
T6F84 035:383 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0957ms total)
T6F84 035:385 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0958ms total)
T6F84 035:386 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0959ms total)
T6F84 035:387 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0960ms total)
T6F84 035:388 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0960ms total)
T6F84 035:389 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0000ms, 0960ms total)
T6F84 035:390 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: FB 9A CF 1C  returns 0x04 (0000ms, 0960ms total)
T6F84 035:390 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0001ms, 0961ms total)
T6F84 035:391 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0961ms total)
T6F84 035:391 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0962ms total)
T6F84 035:392 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0962ms total)
T6F84 035:392 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0963ms total)
T6F84 035:393 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0963ms total)
T577C 035:394 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T577C 035:495 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T577C 035:595 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T577C 035:696 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T577C 035:797 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T6F84 035:899 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0964ms total)
T6F84 035:900 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0001ms, 0965ms total)
T6F84 035:901 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0000ms, 0965ms total)
T6F84 035:902 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0965ms total)
T6F84 035:902 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0966ms total)
T6F84 035:903 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0966ms total)
T6F84 035:904 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0001ms, 0967ms total)
T6F84 035:906 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 0967ms total)
T6F84 035:906 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0967ms total)
T6F84 035:906 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0968ms total)
T6F84 035:907 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0001ms, 0969ms total)
T6F84 035:908 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0969ms total)
T6F84 035:908 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 30 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0971ms total)
T6F84 035:910 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0000ms, 0971ms total)
T6F84 035:910 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0972ms total)
T6F84 035:911 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0972ms total)
T6F84 035:911 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0973ms total)
T6F84 035:912 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0973ms total)
T6F84 035:912 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0973ms total)
T6F84 035:912 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0002ms, 0975ms total)
T6F84 035:914 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0976ms total)
T6F84 035:915 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 0977ms total)
T6F84 035:916 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 0978ms total)
T6F84 035:917 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 0978ms total)
T6F84 035:918 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 55 51 CA 1C  returns 0x04 (0001ms, 0979ms total)
T6F84 035:919 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: FB 9A CF 1C  returns 0x04 (0000ms, 0979ms total)
T6F84 035:919 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 95 FB D0 1C  returns 0x04 (0000ms, 0979ms total)
T6F84 035:921 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0979ms total)
T6F84 035:921 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0980ms total)
T6F84 035:922 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0980ms total)
T6F84 035:922 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0980ms total)
T6F84 035:922 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 0981ms total)
T577C 035:923 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T577C 036:024 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T577C 036:125 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T577C 036:226 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T577C 036:327 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T6F84 036:431 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 31 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0982ms total)
T6F84 036:432 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: C2 88 41 24  returns 0x04 (0001ms, 0983ms total)
T6F84 036:433 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 82 DE 3A 24  returns 0x04 (0001ms, 0984ms total)
T6F84 036:434 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0984ms total)
T6F84 036:435 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0984ms total)
T6F84 036:435 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 0985ms total)
T6F84 036:437 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 82 DE 3A 24  returns 0x04 (0000ms, 0985ms total)
T6F84 036:438 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 0986ms total)
T6F84 036:439 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 0986ms total)
T6F84 036:439 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 31 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0987ms total)
T6F84 036:440 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: C2 88 41 24  returns 0x04 (0000ms, 0987ms total)
T6F84 036:441 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0987ms total)
T6F84 036:441 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 31 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0988ms total)
T6F84 036:442 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: C2 88 41 24  returns 0x04 (0001ms, 0989ms total)
T6F84 036:443 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 0989ms total)
T6F84 036:443 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0990ms total)
T6F84 036:444 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0990ms total)
T6F84 036:444 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 0991ms total)
T6F84 036:445 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 0991ms total)
T6F84 036:445 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0992ms total)
T6F84 036:447 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0992ms total)
T6F84 036:447 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 0994ms total)
T6F84 036:449 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 0994ms total)
T6F84 036:449 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 0995ms total)
T6F84 036:450 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 82 DE 3A 24  returns 0x04 (0001ms, 0996ms total)
T6F84 036:451 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 4B 28 40 24  returns 0x04 (0001ms, 0997ms total)
T6F84 036:452 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: C2 88 41 24  returns 0x04 (0000ms, 0997ms total)
T6F84 036:453 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 0997ms total)
T6F84 036:453 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0998ms total)
T6F84 036:454 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 0999ms total)
T6F84 036:455 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 0999ms total)
T6F84 036:455 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 0999ms total)
T577C 036:455 JLINK_IsHalted()  returns FALSE (0001ms, 1000ms total)
T577C 036:557 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T577C 036:658 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T577C 036:760 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T577C 036:860 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T6F84 036:962 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 31 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1000ms total)
T6F84 036:963 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: C2 88 41 24  returns 0x04 (0000ms, 1000ms total)
T6F84 036:964 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0000ms, 1000ms total)
T6F84 036:965 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1000ms total)
T6F84 036:965 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1001ms total)
T6F84 036:966 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1001ms total)
T6F84 036:967 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0001ms, 1002ms total)
T6F84 036:969 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1003ms total)
T6F84 036:970 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1003ms total)
T6F84 036:970 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 32 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1004ms total)
T6F84 036:971 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0001ms, 1005ms total)
T6F84 036:973 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1005ms total)
T6F84 036:973 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 32 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1006ms total)
T6F84 036:974 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0001ms, 1007ms total)
T6F84 036:975 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1008ms total)
T6F84 036:976 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1008ms total)
T6F84 036:976 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1008ms total)
T6F84 036:976 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1009ms total)
T6F84 036:977 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1009ms total)
T6F84 036:977 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1010ms total)
T6F84 036:979 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1010ms total)
T6F84 036:979 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1011ms total)
T6F84 036:980 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1012ms total)
T6F84 036:981 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1012ms total)
T6F84 036:982 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0001ms, 1013ms total)
T6F84 036:983 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: C9 97 B0 2B  returns 0x04 (0001ms, 1014ms total)
T6F84 036:984 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0001ms, 1015ms total)
T6F84 036:986 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1015ms total)
T6F84 036:986 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1016ms total)
T6F84 036:987 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1016ms total)
T6F84 036:987 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1017ms total)
T6F84 036:988 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1017ms total)
T577C 036:988 JLINK_IsHalted()  returns FALSE (0001ms, 1018ms total)
T577C 037:090 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T577C 037:190 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T577C 037:291 JLINK_IsHalted()  returns FALSE (0001ms, 1018ms total)
T577C 037:393 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T6F84 037:495 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 32 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1018ms total)
T6F84 037:496 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0000ms, 1018ms total)
T6F84 037:497 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0000ms, 1019ms total)
T6F84 037:497 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1020ms total)
T6F84 037:498 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T6F84 037:499 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1021ms total)
T6F84 037:500 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0001ms, 1022ms total)
T6F84 037:502 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1023ms total)
T6F84 037:503 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1023ms total)
T6F84 037:503 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 32 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1024ms total)
T6F84 037:504 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0000ms, 1024ms total)
T6F84 037:505 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1024ms total)
T6F84 037:505 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 32 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1025ms total)
T6F84 037:506 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0001ms, 1026ms total)
T6F84 037:507 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1026ms total)
T6F84 037:507 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1027ms total)
T6F84 037:508 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1027ms total)
T6F84 037:508 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1028ms total)
T6F84 037:509 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1028ms total)
T6F84 037:509 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1029ms total)
T6F84 037:511 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1029ms total)
T6F84 037:511 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1030ms total)
T6F84 037:512 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1031ms total)
T6F84 037:513 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1031ms total)
T6F84 037:514 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 05 4E AB 2B  returns 0x04 (0000ms, 1031ms total)
T6F84 037:515 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: C9 97 B0 2B  returns 0x04 (0000ms, 1031ms total)
T6F84 037:515 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 45 F8 B1 2B  returns 0x04 (0001ms, 1032ms total)
T6F84 037:516 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1033ms total)
T6F84 037:517 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1033ms total)
T6F84 037:517 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1034ms total)
T6F84 037:518 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1034ms total)
T6F84 037:518 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1035ms total)
T577C 037:519 JLINK_IsHalted()  returns FALSE (0001ms, 1036ms total)
T577C 037:621 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T577C 037:722 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T577C 037:823 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T577C 037:925 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T6F84 038:028 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1036ms total)
T6F84 038:029 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0000ms, 1036ms total)
T6F84 038:029 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0001ms, 1037ms total)
T6F84 038:030 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1038ms total)
T6F84 038:031 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1038ms total)
T6F84 038:031 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1039ms total)
T6F84 038:033 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0000ms, 1039ms total)
T6F84 038:035 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1041ms total)
T6F84 038:036 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1041ms total)
T6F84 038:036 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1042ms total)
T6F84 038:037 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0000ms, 1042ms total)
T6F84 038:038 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1042ms total)
T6F84 038:038 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1043ms total)
T6F84 038:039 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0001ms, 1044ms total)
T6F84 038:040 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1044ms total)
T6F84 038:040 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1045ms total)
T6F84 038:041 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1045ms total)
T6F84 038:041 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1045ms total)
T6F84 038:041 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0002ms, 1047ms total)
T6F84 038:043 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1047ms total)
T6F84 038:044 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1047ms total)
T6F84 038:044 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1049ms total)
T6F84 038:046 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1049ms total)
T6F84 038:046 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1049ms total)
T6F84 038:047 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0001ms, 1050ms total)
T6F84 038:048 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: F7 24 21 33  returns 0x04 (0001ms, 1051ms total)
T6F84 038:050 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0000ms, 1051ms total)
T6F84 038:051 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1051ms total)
T6F84 038:051 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1051ms total)
T6F84 038:051 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1052ms total)
T6F84 038:052 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1052ms total)
T6F84 038:052 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1053ms total)
T577C 038:053 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T577C 038:154 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T577C 038:255 JLINK_IsHalted()  returns FALSE (0001ms, 1054ms total)
T577C 038:356 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T577C 038:457 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T6F84 038:558 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1055ms total)
T6F84 038:560 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0000ms, 1055ms total)
T6F84 038:560 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0001ms, 1056ms total)
T6F84 038:561 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1057ms total)
T6F84 038:562 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1057ms total)
T6F84 038:562 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1058ms total)
T6F84 038:566 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0000ms, 1058ms total)
T6F84 038:568 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1058ms total)
T6F84 038:568 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1059ms total)
T6F84 038:569 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1059ms total)
T6F84 038:569 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0001ms, 1060ms total)
T6F84 038:570 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1061ms total)
T6F84 038:571 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 33 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1061ms total)
T6F84 038:571 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0001ms, 1062ms total)
T6F84 038:572 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1062ms total)
T6F84 038:573 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1063ms total)
T6F84 038:573 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1063ms total)
T6F84 038:573 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1064ms total)
T6F84 038:574 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1064ms total)
T6F84 038:574 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1065ms total)
T6F84 038:575 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1066ms total)
T6F84 038:576 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1067ms total)
T6F84 038:577 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1068ms total)
T6F84 038:578 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1068ms total)
T6F84 038:580 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 33 DB 1B 33  returns 0x04 (0000ms, 1068ms total)
T6F84 038:580 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: F7 24 21 33  returns 0x04 (0001ms, 1069ms total)
T6F84 038:581 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 73 85 22 33  returns 0x04 (0001ms, 1070ms total)
T6F84 038:582 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1070ms total)
T6F84 038:582 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1071ms total)
T6F84 038:583 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1071ms total)
T6F84 038:583 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0002ms, 1073ms total)
T6F84 038:585 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1073ms total)
T577C 038:585 JLINK_IsHalted()  returns FALSE (0001ms, 1074ms total)
T577C 038:686 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T577C 038:787 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T577C 038:888 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T577C 038:989 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T6F84 039:092 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1075ms total)
T6F84 039:094 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0000ms, 1075ms total)
T6F84 039:094 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0001ms, 1076ms total)
T6F84 039:095 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T6F84 039:096 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T6F84 039:096 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T6F84 039:097 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0001ms, 1077ms total)
T6F84 039:099 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1078ms total)
T6F84 039:100 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1078ms total)
T6F84 039:100 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1079ms total)
T6F84 039:101 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0000ms, 1079ms total)
T6F84 039:102 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1079ms total)
T6F84 039:102 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1080ms total)
T6F84 039:103 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0001ms, 1081ms total)
T6F84 039:104 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1081ms total)
T6F84 039:104 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1082ms total)
T6F84 039:105 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1082ms total)
T6F84 039:105 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1083ms total)
T6F84 039:106 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1083ms total)
T6F84 039:106 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1084ms total)
T6F84 039:109 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1084ms total)
T6F84 039:109 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1086ms total)
T6F84 039:111 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1086ms total)
T6F84 039:111 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1086ms total)
T6F84 039:111 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0002ms, 1088ms total)
T6F84 039:113 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 63 94 91 3A  returns 0x04 (0001ms, 1089ms total)
T6F84 039:114 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0000ms, 1089ms total)
T6F84 039:115 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1089ms total)
T6F84 039:115 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1090ms total)
T6F84 039:116 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1090ms total)
T6F84 039:116 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1091ms total)
T6F84 039:117 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1091ms total)
T577C 039:117 JLINK_IsHalted()  returns FALSE (0001ms, 1092ms total)
T577C 039:219 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T577C 039:320 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T577C 039:422 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T577C 039:523 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T6F84 039:628 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1092ms total)
T6F84 039:629 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0000ms, 1092ms total)
T6F84 039:629 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0001ms, 1093ms total)
T6F84 039:630 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1093ms total)
T6F84 039:631 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1093ms total)
T6F84 039:631 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1094ms total)
T6F84 039:633 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0000ms, 1094ms total)
T6F84 039:635 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1094ms total)
T6F84 039:635 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1095ms total)
T6F84 039:636 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1095ms total)
T6F84 039:636 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0001ms, 1096ms total)
T6F84 039:637 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1097ms total)
T6F84 039:638 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 34 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1097ms total)
T6F84 039:639 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0000ms, 1097ms total)
T6F84 039:640 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1097ms total)
T6F84 039:640 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1098ms total)
T6F84 039:641 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1098ms total)
T6F84 039:641 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1099ms total)
T6F84 039:642 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1099ms total)
T6F84 039:642 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1100ms total)
T6F84 039:643 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1101ms total)
T6F84 039:644 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1102ms total)
T6F84 039:645 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1103ms total)
T6F84 039:646 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1103ms total)
T6F84 039:647 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 9F 4A 8C 3A  returns 0x04 (0000ms, 1103ms total)
T6F84 039:648 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 63 94 91 3A  returns 0x04 (0000ms, 1103ms total)
T6F84 039:648 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: DF F4 92 3A  returns 0x04 (0001ms, 1104ms total)
T6F84 039:649 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1105ms total)
T6F84 039:650 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1105ms total)
T6F84 039:650 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1105ms total)
T6F84 039:650 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1106ms total)
T6F84 039:651 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1106ms total)
T577C 039:652 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T577C 039:753 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T577C 039:854 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T577C 039:956 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T577C 040:057 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T6F84 040:159 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1108ms total)
T6F84 040:160 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0000ms, 1108ms total)
T6F84 040:161 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0000ms, 1108ms total)
T6F84 040:161 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1109ms total)
T6F84 040:162 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1110ms total)
T6F84 040:163 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1110ms total)
T6F84 040:164 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0000ms, 1110ms total)
T6F84 040:166 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1110ms total)
T6F84 040:166 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1111ms total)
T6F84 040:167 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1112ms total)
T6F84 040:168 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0000ms, 1112ms total)
T6F84 040:169 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1112ms total)
T6F84 040:169 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1113ms total)
T6F84 040:170 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0001ms, 1114ms total)
T6F84 040:171 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1114ms total)
T6F84 040:171 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1115ms total)
T6F84 040:172 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1115ms total)
T6F84 040:172 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1116ms total)
T6F84 040:173 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1116ms total)
T6F84 040:173 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1117ms total)
T6F84 040:174 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1118ms total)
T6F84 040:175 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1119ms total)
T6F84 040:176 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1119ms total)
T6F84 040:176 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1120ms total)
T6F84 040:178 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0000ms, 1120ms total)
T6F84 040:178 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: C1 12 02 42  returns 0x04 (0001ms, 1121ms total)
T6F84 040:179 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0001ms, 1122ms total)
T6F84 040:180 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1122ms total)
T6F84 040:180 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1123ms total)
T6F84 040:181 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1123ms total)
T6F84 040:181 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1124ms total)
T6F84 040:182 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1124ms total)
T577C 040:182 JLINK_IsHalted()  returns FALSE (0001ms, 1125ms total)
T577C 040:284 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T577C 040:386 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T577C 040:486 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T577C 040:587 JLINK_IsHalted()  returns FALSE (0001ms, 1125ms total)
T6F84 040:689 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1125ms total)
T6F84 040:690 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0000ms, 1125ms total)
T6F84 040:690 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0001ms, 1126ms total)
T6F84 040:691 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1127ms total)
T6F84 040:692 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1127ms total)
T6F84 040:692 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1128ms total)
T6F84 040:695 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0000ms, 1128ms total)
T6F84 040:697 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1129ms total)
T6F84 040:698 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1129ms total)
T6F84 040:698 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1130ms total)
T6F84 040:699 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0001ms, 1131ms total)
T6F84 040:700 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1132ms total)
T6F84 040:701 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 35 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1132ms total)
T6F84 040:701 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0001ms, 1133ms total)
T6F84 040:702 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1134ms total)
T6F84 040:703 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1134ms total)
T6F84 040:703 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1135ms total)
T6F84 040:704 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1135ms total)
T6F84 040:704 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1136ms total)
T6F84 040:705 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1136ms total)
T6F84 040:706 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1136ms total)
T6F84 040:706 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1138ms total)
T6F84 040:708 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1138ms total)
T6F84 040:708 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1138ms total)
T6F84 040:709 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: F7 C8 FC 41  returns 0x04 (0001ms, 1139ms total)
T6F84 040:711 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: C1 12 02 42  returns 0x04 (0000ms, 1139ms total)
T6F84 040:712 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 37 73 03 42  returns 0x04 (0000ms, 1139ms total)
T6F84 040:712 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1140ms total)
T6F84 040:713 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1140ms total)
T6F84 040:713 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1141ms total)
T6F84 040:714 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1142ms total)
T6F84 040:715 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1142ms total)
T577C 040:715 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T577C 040:816 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T577C 040:917 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T577C 041:018 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T577C 041:119 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T6F84 041:226 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1142ms total)
T6F84 041:227 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0000ms, 1142ms total)
T6F84 041:227 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0001ms, 1143ms total)
T6F84 041:228 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1144ms total)
T6F84 041:229 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1144ms total)
T6F84 041:229 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1145ms total)
T6F84 041:231 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0000ms, 1145ms total)
T6F84 041:232 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1146ms total)
T6F84 041:233 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1146ms total)
T6F84 041:233 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1147ms total)
T6F84 041:234 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0001ms, 1148ms total)
T6F84 041:235 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1148ms total)
T6F84 041:236 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1148ms total)
T6F84 041:236 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0001ms, 1149ms total)
T6F84 041:237 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1150ms total)
T6F84 041:238 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1150ms total)
T6F84 041:238 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1151ms total)
T6F84 041:239 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1151ms total)
T6F84 041:239 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1151ms total)
T6F84 041:239 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1152ms total)
T6F84 041:241 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1152ms total)
T6F84 041:241 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1153ms total)
T6F84 041:242 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1154ms total)
T6F84 041:243 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1154ms total)
T6F84 041:244 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0000ms, 1154ms total)
T6F84 041:244 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: D3 90 72 49  returns 0x04 (0001ms, 1155ms total)
T6F84 041:245 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0001ms, 1156ms total)
T6F84 041:246 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1157ms total)
T6F84 041:247 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1157ms total)
T6F84 041:247 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1158ms total)
T6F84 041:248 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1158ms total)
T6F84 041:248 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1159ms total)
T577C 041:249 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T577C 041:350 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T577C 041:451 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T577C 041:552 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T577C 041:653 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T6F84 041:755 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1160ms total)
T6F84 041:756 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0001ms, 1161ms total)
T6F84 041:757 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0000ms, 1161ms total)
T6F84 041:758 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1161ms total)
T6F84 041:759 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1161ms total)
T6F84 041:759 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T6F84 041:760 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0001ms, 1163ms total)
T6F84 041:762 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1164ms total)
T6F84 041:763 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1164ms total)
T6F84 041:763 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1165ms total)
T6F84 041:764 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0000ms, 1165ms total)
T6F84 041:765 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1165ms total)
T6F84 041:765 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 36 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1166ms total)
T6F84 041:766 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0001ms, 1167ms total)
T6F84 041:767 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1168ms total)
T6F84 041:768 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1168ms total)
T6F84 041:768 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1169ms total)
T6F84 041:769 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1169ms total)
T6F84 041:769 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1170ms total)
T6F84 041:770 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1170ms total)
T6F84 041:771 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1170ms total)
T6F84 041:772 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1171ms total)
T6F84 041:773 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1171ms total)
T6F84 041:773 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1172ms total)
T6F84 041:774 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 2D 47 6D 49  returns 0x04 (0001ms, 1173ms total)
T6F84 041:775 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: D3 90 72 49  returns 0x04 (0001ms, 1174ms total)
T6F84 041:776 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 6D F1 73 49  returns 0x04 (0000ms, 1174ms total)
T6F84 041:777 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1174ms total)
T6F84 041:777 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1175ms total)
T6F84 041:778 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1175ms total)
T6F84 041:778 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T6F84 041:779 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1176ms total)
T577C 041:779 JLINK_IsHalted()  returns FALSE (0001ms, 1177ms total)
T577C 041:881 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T577C 041:983 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T577C 042:083 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T577C 042:185 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T6F84 042:287 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1177ms total)
T6F84 042:288 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0000ms, 1177ms total)
T6F84 042:288 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0001ms, 1178ms total)
T6F84 042:289 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1179ms total)
T6F84 042:290 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1179ms total)
T6F84 042:290 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1180ms total)
T6F84 042:294 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0000ms, 1180ms total)
T6F84 042:296 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1180ms total)
T6F84 042:296 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1181ms total)
T6F84 042:297 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1181ms total)
T6F84 042:297 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0001ms, 1182ms total)
T6F84 042:298 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1183ms total)
T6F84 042:299 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1184ms total)
T6F84 042:300 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0000ms, 1184ms total)
T6F84 042:300 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1185ms total)
T6F84 042:301 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1185ms total)
T6F84 042:301 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1186ms total)
T6F84 042:302 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1186ms total)
T6F84 042:302 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1187ms total)
T6F84 042:303 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1187ms total)
T6F84 042:304 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1187ms total)
T6F84 042:305 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1188ms total)
T6F84 042:306 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1188ms total)
T6F84 042:306 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1189ms total)
T6F84 042:308 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0001ms, 1190ms total)
T6F84 042:309 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 1D 0F E3 50  returns 0x04 (0001ms, 1191ms total)
T6F84 042:310 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0000ms, 1191ms total)
T6F84 042:311 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1191ms total)
T6F84 042:311 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1192ms total)
T6F84 042:312 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1192ms total)
T6F84 042:312 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1192ms total)
T6F84 042:312 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1193ms total)
T577C 042:313 JLINK_IsHalted()  returns FALSE (0001ms, 1194ms total)
T577C 042:414 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T577C 042:515 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T577C 042:615 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T577C 042:716 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T6F84 042:820 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1193ms total)
T6F84 042:820 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0001ms, 1194ms total)
T6F84 042:821 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0001ms, 1195ms total)
T6F84 042:822 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1196ms total)
T6F84 042:823 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1196ms total)
T6F84 042:823 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1197ms total)
T6F84 042:825 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0000ms, 1197ms total)
T6F84 042:826 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1198ms total)
T6F84 042:827 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1199ms total)
T6F84 042:828 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1199ms total)
T6F84 042:828 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0001ms, 1200ms total)
T6F84 042:829 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1200ms total)
T6F84 042:830 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 37 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1200ms total)
T6F84 042:830 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0001ms, 1201ms total)
T6F84 042:831 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1202ms total)
T6F84 042:832 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1202ms total)
T6F84 042:832 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1203ms total)
T6F84 042:833 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1203ms total)
T6F84 042:833 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1204ms total)
T6F84 042:834 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1204ms total)
T6F84 042:836 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1204ms total)
T6F84 042:836 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1206ms total)
T6F84 042:838 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1206ms total)
T6F84 042:838 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1207ms total)
T6F84 042:839 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: 71 C5 DD 50  returns 0x04 (0001ms, 1208ms total)
T6F84 042:840 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 1D 0F E3 50  returns 0x04 (0001ms, 1209ms total)
T6F84 042:841 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: B1 6F E4 50  returns 0x04 (0000ms, 1209ms total)
T6F84 042:842 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1209ms total)
T6F84 042:842 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1210ms total)
T6F84 042:843 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1210ms total)
T6F84 042:843 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1211ms total)
T6F84 042:844 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1212ms total)
T577C 042:845 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T577C 042:946 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T577C 043:047 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T577C 043:148 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T577C 043:249 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T6F84 043:351 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1213ms total)
T6F84 043:352 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1213ms total)
T6F84 043:353 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0000ms, 1213ms total)
T6F84 043:353 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1214ms total)
T6F84 043:354 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1214ms total)
T6F84 043:354 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1215ms total)
T6F84 043:356 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0000ms, 1215ms total)
T6F84 043:357 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1216ms total)
T6F84 043:358 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1216ms total)
T6F84 043:358 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1217ms total)
T6F84 043:359 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0001ms, 1218ms total)
T6F84 043:361 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1218ms total)
T6F84 043:361 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1219ms total)
T6F84 043:362 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1219ms total)
T6F84 043:363 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1219ms total)
T6F84 043:363 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1220ms total)
T6F84 043:364 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1220ms total)
T6F84 043:364 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1221ms total)
T6F84 043:365 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1221ms total)
T6F84 043:365 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1221ms total)
T6F84 043:367 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1221ms total)
T6F84 043:367 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1222ms total)
T6F84 043:368 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1223ms total)
T6F84 043:369 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1223ms total)
T6F84 043:370 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0001ms, 1224ms total)
T6F84 043:371 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 79 8D 53 58  returns 0x04 (0001ms, 1225ms total)
T6F84 043:372 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0001ms, 1226ms total)
T6F84 043:373 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1226ms total)
T6F84 043:373 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1227ms total)
T6F84 043:374 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1227ms total)
T6F84 043:374 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1228ms total)
T6F84 043:375 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1229ms total)
T577C 043:376 JLINK_IsHalted()  returns FALSE (0001ms, 1230ms total)
T577C 043:477 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T577C 043:578 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T6F84 043:675 JLINK_SetBPEx(Addr = 0x0000BD3E, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000004 (0001ms, 1230ms total)
T577C 043:680 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T577C 043:781 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T6F84 043:883 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1231ms total)
T6F84 043:884 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1231ms total)
T6F84 043:885 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0000ms, 1231ms total)
T6F84 043:886 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1231ms total)
T6F84 043:886 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1232ms total)
T6F84 043:887 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1232ms total)
T6F84 043:889 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0000ms, 1232ms total)
T6F84 043:890 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1233ms total)
T6F84 043:891 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1233ms total)
T6F84 043:891 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1234ms total)
T6F84 043:892 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1234ms total)
T6F84 043:893 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1235ms total)
T6F84 043:894 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 38 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1236ms total)
T6F84 043:895 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1236ms total)
T6F84 043:896 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1236ms total)
T6F84 043:896 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1237ms total)
T6F84 043:897 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1237ms total)
T6F84 043:897 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1238ms total)
T6F84 043:898 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1238ms total)
T6F84 043:898 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1239ms total)
T6F84 043:899 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1240ms total)
T6F84 043:900 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1241ms total)
T6F84 043:901 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1242ms total)
T6F84 043:902 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1242ms total)
T6F84 043:903 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: B5 43 4E 58  returns 0x04 (0001ms, 1243ms total)
T6F84 043:904 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 79 8D 53 58  returns 0x04 (0000ms, 1243ms total)
T6F84 043:905 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: F5 ED 54 58  returns 0x04 (0000ms, 1243ms total)
T6F84 043:905 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1244ms total)
T6F84 043:906 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1244ms total)
T6F84 043:906 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1245ms total)
T6F84 043:907 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1245ms total)
T6F84 043:907 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1245ms total)
T577C 043:907 JLINK_IsHalted()  returns FALSE (0001ms, 1246ms total)
T577C 044:009 JLINK_IsHalted()  returns TRUE (0003ms, 1248ms total)
T577C 044:012 JLINK_Halt()  returns 0x00 (0000ms, 1245ms total)
T577C 044:012 JLINK_IsHalted()  returns TRUE (0000ms, 1245ms total)
T577C 044:012 JLINK_IsHalted()  returns TRUE (0000ms, 1245ms total)
T577C 044:012 JLINK_IsHalted()  returns TRUE (0000ms, 1245ms total)
T577C 044:012 JLINK_ReadReg(R15 (PC))  returns 0x0000BD3E (0000ms, 1245ms total)
T577C 044:012 JLINK_ReadReg(XPSR)  returns 0x61000014 (0000ms, 1245ms total)
T577C 044:012 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 1245ms total)
T577C 044:013 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 1246ms total)
T577C 044:013 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1247ms total)
T577C 044:014 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R0)  returns 0x5FCE9ACB (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R1)  returns 0x02019620 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R2)  returns 0x02019570 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R4)  returns 0x0202F770 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R6)  returns 0x020801C0 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R7)  returns 0x00008000 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1247ms total)
T577C 044:014 JLINK_ReadReg(R10)  returns 0x00000000 (0001ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(R13 (SP))  returns 0x0202F728 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(R14)  returns 0x0000BD39 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(R15 (PC))  returns 0x0000BD3E (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(XPSR)  returns 0x61000014 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(MSP)  returns 0x0202F728 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1248ms total)
T577C 044:015 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1248ms total)
T6F84 044:016 JLINK_ReadMemEx(0x0202F72C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F72C) - Data: B9 23 00 00  returns 0x04 (0000ms, 1248ms total)
T6F84 044:017 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 00 00 00 00  returns 0x04 (0001ms, 1249ms total)
T6F84 044:018 JLINK_ReadMemEx(0x0202F72C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F72C) - Data: B9 23 00 00  returns 0x04 (0000ms, 1249ms total)
T6F84 044:018 JLINK_ReadMemEx(0x0202F730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F730) - Data: 00 00 02 00  returns 0x04 (0001ms, 1250ms total)
T6F84 044:019 JLINK_ReadMemEx(0x0202F730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F730) - Data: 00 00 02 00  returns 0x04 (0000ms, 1250ms total)
T6F84 044:019 JLINK_ReadMemEx(0x0202F730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F730) - Data: 00 00 02 00  returns 0x04 (0000ms, 1250ms total)
T6F84 044:019 JLINK_ReadMemEx(0x0202F730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F730) - Data: 00 00 02 00  returns 0x04 (0001ms, 1251ms total)
T6F84 044:020 JLINK_ReadMemEx(0x0202F730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F730) - Data: 00 00 02 00  returns 0x04 (0000ms, 1251ms total)
T6F84 044:023 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1251ms total)
T6F84 044:023 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1252ms total)
T6F84 044:024 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0001ms, 1253ms total)
T6F84 044:025 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T6F84 044:026 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1254ms total)
T6F84 044:026 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T6F84 044:028 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0000ms, 1255ms total)
T6F84 044:032 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1255ms total)
T6F84 044:032 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1256ms total)
T6F84 044:033 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1257ms total)
T6F84 044:034 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0000ms, 1257ms total)
T6F84 044:035 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1257ms total)
T6F84 044:035 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1258ms total)
T6F84 044:036 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0000ms, 1258ms total)
T6F84 044:037 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1258ms total)
T6F84 044:037 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1259ms total)
T6F84 044:038 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1259ms total)
T6F84 044:038 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1259ms total)
T6F84 044:038 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1260ms total)
T6F84 044:039 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1260ms total)
T6F84 044:040 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1260ms total)
T6F84 044:041 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1262ms total)
T6F84 044:042 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1262ms total)
T6F84 044:042 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1263ms total)
T6F84 044:043 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0001ms, 1264ms total)
T6F84 044:044 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A1 0B C4 5F  returns 0x04 (0001ms, 1265ms total)
T6F84 044:045 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0000ms, 1265ms total)
T6F84 044:046 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1265ms total)
T6F84 044:046 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1265ms total)
T6F84 044:046 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1266ms total)
T6F84 044:047 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1266ms total)
T6F84 044:047 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1266ms total)
T6F84 044:051 JLINK_ReadMemEx(0x0000BD3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BD00) -- Updating C cache (64 bytes @ 0x0000BD00) -- Read from C cache (2 bytes @ 0x0000BD3A) - Data: 88 62  returns 0x02 (0002ms, 1268ms total)
T6F84 044:053 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BD40) -- Updating C cache (64 bytes @ 0x0000BD40) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0001ms, 1269ms total)
T6F84 044:054 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0000ms, 1269ms total)
T6F84 044:054 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0000ms, 1269ms total)
T6F84 044:054 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0001ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3E) - Data: 08 6E  returns 0x02 (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3E) - Data: 08 6E  returns 0x02 (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD40) - Data: 40 1C 08 66 10 BD C0 46 20 96 01 02 10 B5 01 24 ...  returns 0x3C (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD40) - Data: 40 1C  returns 0x02 (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD40) - Data: 40 1C 08 66 10 BD C0 46 20 96 01 02 10 B5 01 24 ...  returns 0x3C (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD40) - Data: 40 1C  returns 0x02 (0000ms, 1270ms total)
T6F84 044:055 JLINK_ReadMemEx(0x0000BD42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD42) - Data: 08 66  returns 0x02 (0000ms, 1270ms total)
T6F84 045:916 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1270ms total)
T6F84 045:916 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) (0067ms, 1337ms total)
T6F84 045:983 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1337ms total)
T6F84 045:983 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1337ms total)
T6F84 045:987 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 1338ms total)
T6F84 045:988 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 1338ms total)
T6F84 045:988 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 1339ms total)
T6F84 045:989 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 1340ms total)
T6F84 045:990 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 1341ms total)
T6F84 045:991 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 1341ms total)
T6F84 045:991 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 1342ms total)
T6F84 045:992 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 1343ms total)
T6F84 045:993 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 1343ms total)
T6F84 045:993 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 1344ms total)
T6F84 045:994 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 1345ms total)
T6F84 045:995 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 1345ms total)
T6F84 045:995 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 1346ms total)
T6F84 045:996 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 1347ms total)
T6F84 045:997 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 1347ms total)
T6F84 045:997 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 1348ms total)
T6F84 045:998 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 1349ms total)
T6F84 045:999 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 1349ms total)
T6F84 045:999 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 1350ms total)
T6F84 046:000 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 1351ms total)
T6F84 046:001 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R0)  returns 0x5FCE9ACB (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R1)  returns 0x02019620 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R2)  returns 0x02019570 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R4)  returns 0x0202F770 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R6)  returns 0x020801C0 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R7)  returns 0x00008000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 1351ms total)
T6F84 046:016 JLINK_ReadReg(R14)  returns 0x0000BD39 (0000ms, 1351ms total)
T6F84 046:017 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1352ms total)
T6F84 046:017 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1353ms total)
T6F84 046:018 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0001ms, 1354ms total)
T6F84 046:019 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T6F84 046:020 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1356ms total)
T6F84 046:021 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1356ms total)
T6F84 046:022 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0000ms, 1356ms total)
T6F84 046:023 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1356ms total)
T6F84 046:023 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1357ms total)
T6F84 046:024 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1358ms total)
T6F84 046:025 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0000ms, 1358ms total)
T6F84 046:025 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1359ms total)
T6F84 046:026 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1359ms total)
T6F84 046:026 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0002ms, 1361ms total)
T6F84 046:028 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1361ms total)
T6F84 046:028 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1361ms total)
T6F84 046:028 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1362ms total)
T6F84 046:029 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1362ms total)
T6F84 046:029 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1363ms total)
T6F84 046:030 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1363ms total)
T6F84 046:030 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1364ms total)
T6F84 046:031 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1365ms total)
T6F84 046:032 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1366ms total)
T6F84 046:033 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1366ms total)
T6F84 046:035 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0001ms, 1367ms total)
T6F84 046:036 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A1 0B C4 5F  returns 0x04 (0001ms, 1368ms total)
T6F84 046:037 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1369ms total)
T6F84 046:038 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1369ms total)
T6F84 046:038 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1370ms total)
T6F84 046:039 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1370ms total)
T6F84 046:039 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1371ms total)
T6F84 046:040 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1371ms total)
T6F84 049:149 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1371ms total)
T6F84 049:149 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) (0066ms, 1437ms total)
T6F84 049:215 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1437ms total)
T6F84 049:215 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R0)  returns 0x5FCE9ACB (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R1)  returns 0x02019620 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R2)  returns 0x02019570 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R4)  returns 0x0202F770 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R6)  returns 0x020801C0 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R7)  returns 0x00008000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R14)  returns 0x0000BD39 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1437ms total)
T6F84 049:231 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1438ms total)
T6F84 049:232 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1439ms total)
T6F84 049:233 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0000ms, 1439ms total)
T6F84 049:233 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1440ms total)
T6F84 049:234 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1440ms total)
T6F84 049:234 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T6F84 049:236 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0000ms, 1441ms total)
T6F84 049:238 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1441ms total)
T6F84 049:238 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1442ms total)
T6F84 049:239 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1442ms total)
T6F84 049:239 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1443ms total)
T6F84 049:240 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1443ms total)
T6F84 049:240 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 39 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1444ms total)
T6F84 049:241 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0001ms, 1445ms total)
T6F84 049:242 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1445ms total)
T6F84 049:242 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1446ms total)
T6F84 049:243 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1446ms total)
T6F84 049:243 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1447ms total)
T6F84 049:244 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0000ms, 1447ms total)
T6F84 049:244 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1448ms total)
T6F84 049:245 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T6F84 049:246 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0001ms, 1450ms total)
T6F84 049:247 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0001ms, 1451ms total)
T6F84 049:248 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1451ms total)
T6F84 049:249 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: FB C1 BE 5F  returns 0x04 (0000ms, 1451ms total)
T6F84 049:249 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: A1 0B C4 5F  returns 0x04 (0001ms, 1452ms total)
T6F84 049:250 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: 3B 6C C5 5F  returns 0x04 (0000ms, 1452ms total)
T6F84 049:251 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0000ms, 1453ms total)
T6F84 049:251 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 1454ms total)
T6F84 049:252 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1454ms total)
T6F84 049:252 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1455ms total)
T6F84 049:253 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1455ms total)
T577C 049:869 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 1456ms total)
T577C 049:870 JLINK_SetBPEx(Addr = 0x0000BD3E, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 1456ms total)
T577C 049:870 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0004ms, 1460ms total)
T577C 049:975 JLINK_IsHalted()  returns TRUE (0003ms, 1463ms total)
T577C 049:978 JLINK_Halt()  returns 0x00 (0000ms, 1460ms total)
T577C 049:978 JLINK_IsHalted()  returns TRUE (0000ms, 1460ms total)
T577C 049:978 JLINK_IsHalted()  returns TRUE (0000ms, 1460ms total)
T577C 049:978 JLINK_IsHalted()  returns TRUE (0000ms, 1460ms total)
T577C 049:978 JLINK_ReadReg(R15 (PC))  returns 0x0000BD3E (0000ms, 1460ms total)
T577C 049:978 JLINK_ReadReg(XPSR)  returns 0x61000014 (0000ms, 1460ms total)
T577C 049:978 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 1460ms total)
T577C 049:978 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1461ms total)
T577C 049:979 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 1461ms total)
T577C 049:979 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R0)  returns 0x003FE473 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R1)  returns 0x02019620 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R2)  returns 0x02019570 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R4)  returns 0x0202F768 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R6)  returns 0x020801C0 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R7)  returns 0x00008000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1462ms total)
T577C 049:980 JLINK_ReadReg(R13 (SP))  returns 0x0202F720 (0001ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(R14)  returns 0x0000BD39 (0000ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(R15 (PC))  returns 0x0000BD3E (0000ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(XPSR)  returns 0x61000014 (0000ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(MSP)  returns 0x0202F720 (0000ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1463ms total)
T577C 049:981 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1463ms total)
T6F84 049:982 JLINK_ReadMemEx(0x0202F724, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F724) - Data: B9 23 00 00  returns 0x04 (0000ms, 1463ms total)
T6F84 049:983 JLINK_ReadMemEx(0x0202F720, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F720) - Data: 00 00 00 00  returns 0x04 (0001ms, 1464ms total)
T6F84 049:984 JLINK_ReadMemEx(0x0202F724, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F724) - Data: B9 23 00 00  returns 0x04 (0000ms, 1464ms total)
T6F84 049:984 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 20 96 01 02  returns 0x04 (0001ms, 1465ms total)
T6F84 049:985 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 20 96 01 02  returns 0x04 (0000ms, 1465ms total)
T6F84 049:985 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 20 96 01 02  returns 0x04 (0001ms, 1466ms total)
T6F84 049:986 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 20 96 01 02  returns 0x04 (0000ms, 1466ms total)
T6F84 049:986 JLINK_ReadMemEx(0x0202F728, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F728) - Data: 20 96 01 02  returns 0x04 (0001ms, 1467ms total)
T6F84 049:993 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1468ms total)
T6F84 049:994 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0001ms, 1469ms total)
T6F84 049:995 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0000ms, 1469ms total)
T6F84 049:995 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1470ms total)
T6F84 049:996 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1471ms total)
T6F84 049:997 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1471ms total)
T6F84 049:998 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0000ms, 1471ms total)
T6F84 050:000 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0000ms, 1471ms total)
T6F84 050:000 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0001ms, 1472ms total)
T6F84 050:001 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1472ms total)
T6F84 050:001 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0001ms, 1473ms total)
T6F84 050:002 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1474ms total)
T6F84 050:003 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1475ms total)
T6F84 050:004 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0000ms, 1475ms total)
T6F84 050:004 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T6F84 050:005 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1476ms total)
T6F84 050:005 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1477ms total)
T6F84 050:006 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T6F84 050:006 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1478ms total)
T6F84 050:007 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1478ms total)
T6F84 050:008 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1478ms total)
T6F84 050:008 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1480ms total)
T6F84 050:010 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1480ms total)
T6F84 050:010 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1481ms total)
T6F84 050:012 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0000ms, 1481ms total)
T6F84 050:013 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 51 55 35 00  returns 0x04 (0000ms, 1481ms total)
T6F84 050:013 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0001ms, 1482ms total)
T6F84 050:014 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 1483ms total)
T6F84 050:015 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0000ms, 1483ms total)
T6F84 050:015 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0000ms, 1483ms total)
T6F84 050:015 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0001ms, 1484ms total)
T6F84 050:016 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0000ms, 1484ms total)
T6F84 050:020 JLINK_ReadMemEx(0x0000BD3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BD00) -- Updating C cache (64 bytes @ 0x0000BD00) -- Read from C cache (2 bytes @ 0x0000BD3A) - Data: 88 62  returns 0x02 (0001ms, 1485ms total)
T6F84 050:021 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BD40) -- Updating C cache (64 bytes @ 0x0000BD40) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0001ms, 1486ms total)
T6F84 050:022 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0000ms, 1486ms total)
T6F84 050:022 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0001ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3E) - Data: 08 6E  returns 0x02 (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3E) - Data: 08 6E  returns 0x02 (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD40) - Data: 40 1C 08 66 10 BD C0 46 20 96 01 02 10 B5 01 24 ...  returns 0x3C (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD40) - Data: 40 1C  returns 0x02 (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD40) - Data: 40 1C 08 66 10 BD C0 46 20 96 01 02 10 B5 01 24 ...  returns 0x3C (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD40) - Data: 40 1C  returns 0x02 (0000ms, 1487ms total)
T6F84 050:023 JLINK_ReadMemEx(0x0000BD42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD42) - Data: 08 66  returns 0x02 (0000ms, 1487ms total)
T6F84 050:671 JLINK_ReadMemEx(0x0201966C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201966C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3A) - Data: 88 62  returns 0x02 (0000ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0000ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0000ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BD3C) - Data: C8 61 08 6E 40 1C 08 66 10 BD C0 46 20 96 01 02 ...  returns 0x3C (0000ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3C) - Data: C8 61  returns 0x02 (0000ms, 1488ms total)
T6F84 056:828 JLINK_ReadMemEx(0x0000BD3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BD3E) - Data: 08 6E  returns 0x02 (0000ms, 1488ms total)
T6F84 056:973 JLINK_ReadMemEx(0x02019648, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019648) - Data: 73 E4 3F 00  returns 0x04 (0001ms, 1489ms total)
T6F84 058:573 JLINK_ReadMemEx(0x02019648, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019648) - Data: 73 E4 3F 00  returns 0x04 (0001ms, 1490ms total)
T6F84 058:574 JLINK_ReadMemEx(0x02019648, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019648) - Data: 73 E4 3F 00  returns 0x04 (0000ms, 1490ms total)
T6F84 058:574 JLINK_ReadMemEx(0x02019648, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019648) - Data: 73 E4 3F 00  returns 0x04 (0001ms, 1491ms total)
T6F84 060:941 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1493ms total)
T6F84 060:943 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0000ms, 1493ms total)
T6F84 060:943 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0001ms, 1494ms total)
T6F84 060:944 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1494ms total)
T6F84 060:944 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T6F84 060:945 JLINK_ReadMemEx(0x020196BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196BA) - Data: 00  returns 0x01 (0000ms, 1495ms total)
T6F84 060:946 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0001ms, 1496ms total)
T6F84 060:948 JLINK_ReadMemEx(0x0201B279, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B279) - Data: 01  returns 0x01 (0001ms, 1497ms total)
T6F84 060:949 JLINK_ReadMemEx(0x0201B27A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201B27A) - Data: 10  returns 0x01 (0000ms, 1497ms total)
T6F84 060:949 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1499ms total)
T6F84 060:951 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0000ms, 1499ms total)
T6F84 060:951 JLINK_ReadMemEx(0x02019630, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019630) - Data: 01 10  returns 0x02 (0001ms, 1500ms total)
T6F84 060:952 JLINK_ReadMemEx(0x0201B274, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B274) - Data: 03 00 00 3F 64 01 10 06 01 20 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1501ms total)
T6F84 060:953 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0000ms, 1501ms total)
T6F84 060:953 JLINK_ReadMemEx(0x020196B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196B9) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T6F84 060:954 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1502ms total)
T6F84 060:954 JLINK_ReadMemEx(0x0201BEF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BEF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1503ms total)
T6F84 060:955 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1503ms total)
T6F84 060:955 JLINK_ReadMemEx(0x02019632, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019632) - Data: 00 00  returns 0x02 (0001ms, 1504ms total)
T6F84 060:956 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0000ms, 1504ms total)
T6F84 060:957 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1504ms total)
T6F84 060:957 JLINK_ReadMemEx(0x020196B9, 0x0019 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(25 bytes @ 0x020196B9) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x19 (0002ms, 1506ms total)
T6F84 060:959 JLINK_ReadMemEx(0x02019828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019828) - Data: 01 10 00 00  returns 0x04 (0000ms, 1506ms total)
T6F84 060:959 JLINK_ReadMemEx(0x02019734, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019734) - Data: 00 00  returns 0x02 (0001ms, 1507ms total)
T6F84 060:961 JLINK_ReadMemEx(0x02019654, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019654) - Data: A3 0B 30 00  returns 0x04 (0000ms, 1507ms total)
T6F84 060:961 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 51 55 35 00  returns 0x04 (0001ms, 1508ms total)
T6F84 060:962 JLINK_ReadMemEx(0x02019658, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019658) - Data: E3 B5 36 00  returns 0x04 (0001ms, 1509ms total)
T6F84 060:963 JLINK_ReadMemEx(0x02019648, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019648) - Data: 73 E4 3F 00  returns 0x04 (0001ms, 1510ms total)
T6F84 116:069 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0015ms, 1525ms total)
T6F84 116:069  (0015ms, 1525ms total)
T6F84 116:069 Closed (0015ms, 1525ms total)