chen
2024-12-11 ac55307242da6846c2b8fe4b710fb90feaa30978
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
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
 
T67BC 000:144 SEGGER J-Link V6.30d Log File (0001ms, 0045ms total)
T67BC 000:144 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0045ms total)
T67BC 000:144 Logging started @ 2024-12-11 17:13 (0001ms, 0045ms total)
T67BC 000:145 JLINK_SetWarnOutHandler(...) (0000ms, 0045ms total)
T67BC 000:145 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 (0030ms, 0075ms total)
T67BC 000:145 WEBSRV Webserver running on local port 19080 (0030ms, 0075ms total)
T67BC 000:145   returns O.K. (0030ms, 0075ms total)
T67BC 000:175 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0075ms total)
T67BC 000:175 JLINK_TIF_GetAvailable(...) (0001ms, 0076ms total)
T67BC 000:176 JLINK_SetErrorOutHandler(...) (0000ms, 0076ms total)
T67BC 000:176 JLINK_ExecCommand("ProjectFile = "D:\project chen\ChinaUWBProject_URT no UWB\ChinaUWBProject\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0162ms, 0238ms total)
T67BC 000:338 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0008ms, 0246ms total)
T67BC 000:346 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0246ms total)
T67BC 000:346 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0246ms total)
T67BC 000:346 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0246ms total)
T67BC 000:346 JLINK_GetFirmwareString(...) (0001ms, 0247ms total)
T67BC 000:347 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0247ms total)
T67BC 000:347 JLINK_GetCompileDateTime() (0000ms, 0247ms total)
T67BC 000:347 JLINK_GetFirmwareString(...) (0000ms, 0247ms total)
T67BC 000:347 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0247ms total)
T67BC 000:347 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0249ms total)
T67BC 000:349 JLINK_SetSpeed(10000) (0001ms, 0250ms total)
T67BC 000:350 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_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ 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 (0153ms, 0403ms total)
T67BC 000:503 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0403ms total)
T67BC 000:503 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0403ms total)
T67BC 000:503 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0403ms total)
T67BC 000:503 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 0404ms total)
T67BC 000:504 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0404ms total)
T67BC 000:504 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, 0405ms total)
T67BC 000:505 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0405ms total)
T67BC 000:505 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0405ms total)
T67BC 000:505 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0406ms total)
T67BC 000:506 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0406ms total)
T67BC 000:506 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0406ms total)
T67BC 000:506 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0406ms total)
T67BC 000:506 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0001ms, 0407ms total)
T67BC 000:507 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0407ms total)
T67BC 000:507 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0407ms total)
T67BC 000:507 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0408ms total)
T67BC 000:508 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0408ms total)
T67BC 000:508 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0408ms total)
T67BC 000:508 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) (0075ms, 0483ms total)
T67BC 000:583 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0483ms total)
T67BC 000:583 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0483ms total)
T67BC 000:583 JLINK_Halt()  returns 0x00 (0000ms, 0483ms total)
T67BC 000:583 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0484ms total)
T67BC 000:584 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0485ms total)
T67BC 000:585 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0486ms total)
T67BC 000:586 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0487ms total)
T67BC 000:587 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0487ms total)
T67BC 000:587 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0487ms total)
T67BC 000:587 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0487ms total)
T67BC 000:587 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0487ms total)
T67BC 000:587 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0488ms total)
T67BC 000:588 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0488ms total)
T67BC 000:588 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0488ms total)
T67BC 000:692 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0488ms total)
T67BC 000:692 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) (0075ms, 0563ms total)
T67BC 000:767 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0563ms total)
T67BC 000:767 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0563ms total)
T67BC 000:767 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 (0002ms, 0565ms total)
T67BC 000:769 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0566ms total)
T67BC 000:770 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0567ms total)
T67BC 000:772 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 (0002ms, 0569ms total)
T67BC 000:774 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0570ms total)
T67BC 000:775 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 0570ms total)
T67BC 000:775 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, 0572ms total)
T67BC 000:777 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0573ms total)
T67BC 000:778 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0574ms total)
T67BC 000:779 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0575ms total)
T67BC 000:780 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, 0576ms total)
T67BC 000:781 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0002ms, 0578ms total)
T67BC 000:783 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, 0579ms total)
T67BC 000:784 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0580ms total)
T67BC 000:785 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0581ms total)
T67BC 006:796 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0002ms, 0583ms total)
T67BC 006:798 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 (0002ms, 0585ms total)
T67BC 006:800 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0586ms total)
T67BC 006:801 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, 0587ms total)
T67BC 006:802 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0588ms total)
T67BC 006:803 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0589ms total)
T67BC 008:365 JLINK_ReadReg(R0)  returns 0x00000004 (0001ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R1)  returns 0x02019344 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R3)  returns 0x42000000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R4)  returns 0x02019508 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R5)  returns 0x00000078 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R7)  returns 0x3F800000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0590ms total)
T67BC 008:366 JLINK_ReadReg(R11)  returns 0x00000000 (0001ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(R14)  returns 0x00006EF1 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0591ms total)
T67BC 008:367 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0592ms total)
T67BC 008:368 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0593ms total)
T67BC 008:369 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0594ms total)
T67BC 008:379 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0595ms total)
T67BC 008:380 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0596ms total)
T67BC 008:381 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0597ms total)
T67BC 008:417 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0598ms total)
T67BC 008:418 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0599ms total)
T67BC 008:419 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0600ms total)
T67BC 008:473 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0002ms, 0602ms total)
T67BC 008:475 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0603ms total)
T67BC 008:476 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 0603ms total)
T67BC 008:488 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0604ms total)
T67BC 008:489 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0605ms total)
T67BC 008:490 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0606ms total)
T67BC 008:534 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0607ms total)
T67BC 008:535 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0608ms total)
T67BC 008:536 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0609ms total)
T67BC 008:587 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0610ms total)
T67BC 008:588 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0611ms total)
T67BC 008:589 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0612ms total)
T67BC 008:603 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0613ms total)
T67BC 008:604 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0614ms total)
T67BC 008:605 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0615ms total)
T67BC 008:635 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0616ms total)
T67BC 008:666 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0617ms total)
T67BC 008:667 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0618ms total)
T67BC 008:668 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0619ms total)
T67BC 008:700 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0620ms total)
T67BC 008:726 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0621ms total)
T67BC 008:727 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0622ms total)
T67BC 008:728 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0623ms total)
T67BC 008:730 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0624ms total)
T67BC 008:731 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0625ms total)
T67BC 008:732 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0002ms, 0627ms total)
T67BC 008:744 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0628ms total)
T67BC 008:745 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0629ms total)
T67BC 008:746 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0630ms total)
T67BC 008:750 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0631ms total)
T67BC 008:751 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0632ms total)
T67BC 008:752 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0633ms total)
T67BC 008:753 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0634ms total)
T67BC 008:754 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0635ms total)
T67BC 008:755 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0636ms total)
T96A8 008:994 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0637ms total)
T96A8 008:995 JLINK_SetBPEx(Addr = 0x00006DD4, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0637ms total)
T96A8 008:995 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) (0008ms, 0645ms total)
T96A8 009:103 JLINK_IsHalted()  returns TRUE (0004ms, 0649ms total)
T96A8 009:107 JLINK_Halt()  returns 0x00 (0000ms, 0645ms total)
T96A8 009:107 JLINK_IsHalted()  returns TRUE (0000ms, 0645ms total)
T96A8 009:107 JLINK_IsHalted()  returns TRUE (0000ms, 0645ms total)
T96A8 009:107 JLINK_IsHalted()  returns TRUE (0000ms, 0645ms total)
T96A8 009:107 JLINK_ReadReg(R15 (PC))  returns 0x00006DD4 (0000ms, 0645ms total)
T96A8 009:107 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0645ms total)
T96A8 009:107 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0645ms total)
T96A8 009:107 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0646ms total)
T96A8 009:108 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0647ms total)
T96A8 009:109 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0648ms total)
T96A8 009:110 JLINK_ReadReg(R0)  returns 0x00006DD5 (0000ms, 0648ms total)
T96A8 009:110 JLINK_ReadReg(R1)  returns 0x0201C048 (0000ms, 0648ms total)
T96A8 009:110 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0648ms total)
T96A8 009:110 JLINK_ReadReg(R3)  returns 0x00009751 (0001ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R4)  returns 0x0000A940 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R6)  returns 0x0000A940 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R14)  returns 0x00000CE1 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(R15 (PC))  returns 0x00006DD4 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0649ms total)
T96A8 009:111 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0649ms total)
T67BC 009:116 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0650ms total)
T67BC 009:117 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0651ms total)
T67BC 009:119 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0652ms total)
T67BC 009:121 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0653ms total)
T67BC 009:122 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0654ms total)
T67BC 009:124 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0655ms total)
T67BC 009:126 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0656ms total)
T67BC 009:128 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 00  returns 0x04 (0001ms, 0657ms total)
T67BC 009:130 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0658ms total)
T67BC 009:132 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0659ms total)
T67BC 009:133 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0660ms total)
T67BC 009:135 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0661ms total)
T67BC 009:136 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0662ms total)
T67BC 009:137 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0663ms total)
T67BC 009:138 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0664ms total)
T67BC 009:139 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0665ms total)
T67BC 009:144 JLINK_ReadMemEx(0x00006CD4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00006CC0) -- Updating C cache (128 bytes @ 0x00006CC0) -- Read from C cache (60 bytes @ 0x00006CD4) - Data: 01 A8 00 19 49 00 0F 4B 59 18 4A 8E 29 46 02 F0 ...  returns 0x3C (0002ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CD4) - Data: 01 A8  returns 0x02 (0000ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CD6) - Data: 00 19  returns 0x02 (0000ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CD6) - Data: 00 19  returns 0x02 (0000ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CD8) - Data: 49 00 0F 4B 59 18 4A 8E 29 46 02 F0 FD FC 04 19 ...  returns 0x3C (0000ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CD8) - Data: 49 00  returns 0x02 (0000ms, 0667ms total)
T67BC 009:146 JLINK_ReadMemEx(0x00006CD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CD8) - Data: 49 00 0F 4B 59 18 4A 8E 29 46 02 F0 FD FC 04 19 ...  returns 0x3C (0000ms, 0667ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CD8) - Data: 49 00  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDA) - Data: 0F 4B  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDA) - Data: 0F 4B  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CDC) - Data: 59 18 4A 8E 29 46 02 F0 FD FC 04 19 76 1C B1 B2 ...  returns 0x3C (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDC) - Data: 59 18  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CDC) - Data: 59 18 4A 8E 29 46 02 F0 FD FC 04 19 76 1C B1 B2 ...  returns 0x3C (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDC) - Data: 59 18  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDE) - Data: 4A 8E  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CDE) - Data: 4A 8E  returns 0x02 (0000ms, 0668ms total)
T67BC 009:147 JLINK_ReadMemEx(0x00006CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CE0) - Data: 29 46 02 F0 FD FC 04 19 76 1C B1 B2 38 6C 88 42 ...  returns 0x3C (0001ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE0) - Data: 29 46  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CE0) - Data: 29 46 02 F0 FD FC 04 19 76 1C B1 B2 38 6C 88 42 ...  returns 0x3C (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE0) - Data: 29 46  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE2) - Data: 02 F0  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE2) - Data: 02 F0  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CE4) - Data: FD FC 04 19 76 1C B1 B2 38 6C 88 42 F0 D8 03 20 ...  returns 0x3C (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE4) - Data: FD FC  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE6) - Data: 04 19  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CE8) - Data: 76 1C B1 B2 38 6C 88 42 F0 D8 03 20 0B A2 01 AB ...  returns 0x3C (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE8) - Data: 76 1C  returns 0x02 (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CE8) - Data: 76 1C B1 B2 38 6C 88 42 F0 D8 03 20 0B A2 01 AB ...  returns 0x3C (0000ms, 0669ms total)
T67BC 009:148 JLINK_ReadMemEx(0x00006CE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CE8) - Data: 76 1C  returns 0x02 (0001ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEA) - Data: B1 B2  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEA) - Data: B1 B2  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CEC) - Data: 38 6C 88 42 F0 D8 03 20 0B A2 01 AB 01 46 01 F0 ...  returns 0x3C (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEC) - Data: 38 6C  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CEC) - Data: 38 6C 88 42 F0 D8 03 20 0B A2 01 AB 01 46 01 F0 ...  returns 0x3C (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEC) - Data: 38 6C  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEE) - Data: 88 42  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CEE) - Data: 88 42  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF0) - Data: F0 D8 03 20 0B A2 01 AB 01 46 01 F0 CB FD 33 B0 ...  returns 0x3C (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF0) - Data: F0 D8  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF0) - Data: F0 D8 03 20 0B A2 01 AB 01 46 01 F0 CB FD 33 B0 ...  returns 0x3C (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF0) - Data: F0 D8  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF2) - Data: 03 20  returns 0x02 (0000ms, 0670ms total)
T67BC 009:149 JLINK_ReadMemEx(0x00006CF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF2) - Data: 03 20  returns 0x02 (0001ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF4) - Data: 0B A2 01 AB 01 46 01 F0 CB FD 33 B0 F0 BD C0 46 ...  returns 0x3C (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF4) - Data: 0B A2  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF4) - Data: 0B A2 01 AB 01 46 01 F0 CB FD 33 B0 F0 BD C0 46 ...  returns 0x3C (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF4) - Data: 0B A2  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF6) - Data: 01 AB  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF6) - Data: 01 AB  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF8) - Data: 01 46 01 F0 CB FD 33 B0 F0 BD C0 46 00 96 01 02 ...  returns 0x3C (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF8) - Data: 01 46  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CF8) - Data: 01 46 01 F0 CB FD 33 B0 F0 BD C0 46 00 96 01 02 ...  returns 0x3C (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CF8) - Data: 01 46  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CFA) - Data: 01 F0  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CFA) - Data: 01 F0  returns 0x02 (0000ms, 0671ms total)
T67BC 009:150 JLINK_ReadMemEx(0x00006CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006CFC) - Data: CB FD 33 B0 F0 BD C0 46 00 96 01 02 B3 B5 C4 DA ...  returns 0x3C (0001ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CFC) - Data: CB FD  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006CFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006CFE) - Data: 33 B0  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D00) - Data: F0 BD C0 46 00 96 01 02 B3 B5 C4 DA A3 BA 25 64 ...  returns 0x3C (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D00) - Data: F0 BD  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D00) - Data: F0 BD C0 46 00 96 01 02 B3 B5 C4 DA A3 BA 25 64 ...  returns 0x3C (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D00) - Data: F0 BD  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D02) - Data: C0 46  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D02) - Data: C0 46  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D04) - Data: 00 96 01 02 B3 B5 C4 DA A3 BA 25 64 20 C8 CB 20 ...  returns 0x3C (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D04) - Data: 00 96  returns 0x02 (0000ms, 0672ms total)
T67BC 009:151 JLINK_ReadMemEx(0x00006D2C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00006D40) -- Updating C cache (64 bytes @ 0x00006D40) -- Read from C cache (60 bytes @ 0x00006D2C) - Data: 12 4A 07 28 09 D8 80 00 0F 23 83 40 81 40 19 40 ...  returns 0x3C (0002ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D2C) - Data: 12 4A  returns 0x02 (0000ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D2E) - Data: 07 28  returns 0x02 (0000ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D2E) - Data: 07 28  returns 0x02 (0000ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D30) - Data: 09 D8 80 00 0F 23 83 40 81 40 19 40 10 68 98 43 ...  returns 0x3C (0000ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D30) - Data: 09 D8  returns 0x02 (0000ms, 0674ms total)
T67BC 009:153 JLINK_ReadMemEx(0x00006D30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D30) - Data: 09 D8 80 00 0F 23 83 40 81 40 19 40 10 68 98 43 ...  returns 0x3C (0001ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D30) - Data: 09 D8  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D32) - Data: 80 00  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D32) - Data: 80 00  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D34) - Data: 0F 23 83 40 81 40 19 40 10 68 98 43 08 43 10 60 ...  returns 0x3C (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D34) - Data: 0F 23  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D34) - Data: 0F 23 83 40 81 40 19 40 10 68 98 43 08 43 10 60 ...  returns 0x3C (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D34) - Data: 0F 23  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D36) - Data: 83 40  returns 0x02 (0000ms, 0675ms total)
T67BC 009:154 JLINK_ReadMemEx(0x00006D36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D36) - Data: 83 40  returns 0x02 (0000ms, 0675ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D38) - Data: 81 40 19 40 10 68 98 43 08 43 10 60 70 47 0F 28 ...  returns 0x3C (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D38) - Data: 81 40  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D38) - Data: 81 40 19 40 10 68 98 43 08 43 10 60 70 47 0F 28 ...  returns 0x3C (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D38) - Data: 81 40  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3A) - Data: 19 40  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3A) - Data: 19 40  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D3C) - Data: 10 68 98 43 08 43 10 60 70 47 0F 28 0A D8 80 00 ...  returns 0x3C (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3C) - Data: 10 68  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D3C) - Data: 10 68 98 43 08 43 10 60 70 47 0F 28 0A D8 80 00 ...  returns 0x3C (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3C) - Data: 10 68  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3E) - Data: 98 43  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D3E) - Data: 98 43  returns 0x02 (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D40) - Data: 08 43 10 60 70 47 0F 28 0A D8 80 00 20 38 0F 23 ...  returns 0x3C (0000ms, 0676ms total)
T67BC 009:155 JLINK_ReadMemEx(0x00006D40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D40) - Data: 08 43  returns 0x02 (0001ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D40) - Data: 08 43 10 60 70 47 0F 28 0A D8 80 00 20 38 0F 23 ...  returns 0x3C (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D40) - Data: 08 43  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D42) - Data: 10 60  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D42) - Data: 10 60  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D44) - Data: 70 47 0F 28 0A D8 80 00 20 38 0F 23 83 40 81 40 ...  returns 0x3C (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D44) - Data: 70 47  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D44) - Data: 70 47 0F 28 0A D8 80 00 20 38 0F 23 83 40 81 40 ...  returns 0x3C (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D44) - Data: 70 47  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D46) - Data: 0F 28  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D46) - Data: 0F 28  returns 0x02 (0000ms, 0677ms total)
T67BC 009:156 JLINK_ReadMemEx(0x00006D48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00006D80) -- Updating C cache (64 bytes @ 0x00006D80) -- Read from C cache (60 bytes @ 0x00006D48) - Data: 0A D8 80 00 20 38 0F 23 83 40 81 40 19 40 50 68 ...  returns 0x3C (0002ms, 0679ms total)
T67BC 009:158 JLINK_ReadMemEx(0x00006D48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D48) - Data: 0A D8  returns 0x02 (0000ms, 0679ms total)
T67BC 009:158 JLINK_ReadMemEx(0x00006D48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D48) - Data: 0A D8 80 00 20 38 0F 23 83 40 81 40 19 40 50 68 ...  returns 0x3C (0000ms, 0679ms total)
T67BC 009:158 JLINK_ReadMemEx(0x00006D48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D48) - Data: 0A D8  returns 0x02 (0000ms, 0679ms total)
T67BC 009:158 JLINK_ReadMemEx(0x00006D4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4A) - Data: 80 00  returns 0x02 (0001ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4A) - Data: 80 00  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D4C) - Data: 20 38 0F 23 83 40 81 40 19 40 50 68 98 43 08 43 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4C) - Data: 20 38  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D4C) - Data: 20 38 0F 23 83 40 81 40 19 40 50 68 98 43 08 43 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4C) - Data: 20 38  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4E) - Data: 0F 23  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D4E) - Data: 0F 23  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D50) - Data: 83 40 81 40 19 40 50 68 98 43 08 43 50 60 70 47 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D50) - Data: 83 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D50) - Data: 83 40 81 40 19 40 50 68 98 43 08 43 50 60 70 47 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D50) - Data: 83 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D52) - Data: 81 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D52) - Data: 81 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D54) - Data: 19 40 50 68 98 43 08 43 50 60 70 47 80 00 40 38 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D54) - Data: 19 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D54) - Data: 19 40 50 68 98 43 08 43 50 60 70 47 80 00 40 38 ...  returns 0x3C (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D54) - Data: 19 40  returns 0x02 (0000ms, 0680ms total)
T67BC 009:159 JLINK_ReadMemEx(0x00006D56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D56) - Data: 50 68  returns 0x02 (0001ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D56) - Data: 50 68  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D58) - Data: 98 43 08 43 50 60 70 47 80 00 40 38 0F 23 83 40 ...  returns 0x3C (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D58) - Data: 98 43  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D58) - Data: 98 43 08 43 50 60 70 47 80 00 40 38 0F 23 83 40 ...  returns 0x3C (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D58) - Data: 98 43  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5A) - Data: 08 43  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5A) - Data: 08 43  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D5C) - Data: 50 60 70 47 80 00 40 38 0F 23 83 40 81 40 19 40 ...  returns 0x3C (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5C) - Data: 50 60  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D5C) - Data: 50 60 70 47 80 00 40 38 0F 23 83 40 81 40 19 40 ...  returns 0x3C (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5C) - Data: 50 60  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5E) - Data: 70 47  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D5E) - Data: 70 47  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D60) - Data: 80 00 40 38 0F 23 83 40 81 40 19 40 90 68 98 43 ...  returns 0x3C (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D60) - Data: 80 00  returns 0x02 (0000ms, 0681ms total)
T67BC 009:160 JLINK_ReadMemEx(0x00006D60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D60) - Data: 80 00 40 38 0F 23 83 40 81 40 19 40 90 68 98 43 ...  returns 0x3C (0001ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D60) - Data: 80 00  returns 0x02 (0000ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D62) - Data: 40 38  returns 0x02 (0000ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D62) - Data: 40 38  returns 0x02 (0000ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D64) - Data: 0F 23 83 40 81 40 19 40 90 68 98 43 08 43 90 60 ...  returns 0x3C (0000ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D64) - Data: 0F 23  returns 0x02 (0000ms, 0682ms total)
T67BC 009:161 JLINK_ReadMemEx(0x00006D64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D64) - Data: 0F 23 83 40 81 40 19 40 90 68 98 43 08 43 90 60 ...  returns 0x3C (0000ms, 0682ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D64) - Data: 0F 23  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D66) - Data: 83 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D66) - Data: 83 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D68) - Data: 81 40 19 40 90 68 98 43 08 43 90 60 70 47 C0 46 ...  returns 0x3C (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D68) - Data: 81 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D68) - Data: 81 40 19 40 90 68 98 43 08 43 90 60 70 47 C0 46 ...  returns 0x3C (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D68) - Data: 81 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6A) - Data: 19 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6A) - Data: 19 40  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D6C) - Data: 90 68 98 43 08 43 90 60 70 47 C0 46 34 00 00 40 ...  returns 0x3C (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6C) - Data: 90 68  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D6C) - Data: 90 68 98 43 08 43 90 60 70 47 C0 46 34 00 00 40 ...  returns 0x3C (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6C) - Data: 90 68  returns 0x02 (0000ms, 0683ms total)
T67BC 009:162 JLINK_ReadMemEx(0x00006D6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6E) - Data: 98 43  returns 0x02 (0001ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D6E) - Data: 98 43  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D70) - Data: 08 43 90 60 70 47 C0 46 34 00 00 40 F0 B5 43 07 ...  returns 0x3C (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D70) - Data: 08 43  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D70) - Data: 08 43 90 60 70 47 C0 46 34 00 00 40 F0 B5 43 07 ...  returns 0x3C (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D70) - Data: 08 43  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D72) - Data: 90 60  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D72) - Data: 90 60  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D74) - Data: 70 47 C0 46 34 00 00 40 F0 B5 43 07 DC 0E 07 26 ...  returns 0x3C (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D74) - Data: 70 47  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D74) - Data: 70 47 C0 46 34 00 00 40 F0 B5 43 07 DC 0E 07 26 ...  returns 0x3C (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D74) - Data: 70 47  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D76) - Data: C0 46  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D76) - Data: C0 46  returns 0x02 (0000ms, 0684ms total)
T67BC 009:163 JLINK_ReadMemEx(0x00006D78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D78) - Data: 34 00 00 40 F0 B5 43 07 DC 0E 07 26 A6 40 C3 08 ...  returns 0x3C (0001ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D78) - Data: 34 00  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D7C) - Data: F0 B5 43 07 DC 0E 07 26 A6 40 C3 08 9D 00 0E 4B ...  returns 0x3C (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D7C) - Data: F0 B5  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D7E) - Data: 43 07  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D7E) - Data: 43 07  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D80) - Data: DC 0E 07 26 A6 40 C3 08 9D 00 0E 4B EF 18 7D 68 ...  returns 0x3C (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D80) - Data: DC 0E  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D80) - Data: DC 0E 07 26 A6 40 C3 08 9D 00 0E 4B EF 18 7D 68 ...  returns 0x3C (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D80) - Data: DC 0E  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D82) - Data: 07 26  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D82) - Data: 07 26  returns 0x02 (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D84) - Data: A6 40 C3 08 9D 00 0E 4B EF 18 7D 68 B5 43 3E 1D ...  returns 0x3C (0000ms, 0685ms total)
T67BC 009:164 JLINK_ReadMemEx(0x00006D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D84) - Data: A6 40  returns 0x02 (0001ms, 0686ms total)
T67BC 009:165 JLINK_ReadMemEx(0x00006D84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D84) - Data: A6 40 C3 08 9D 00 0E 4B EF 18 7D 68 B5 43 3E 1D ...  returns 0x3C (0000ms, 0686ms total)
T67BC 009:165 JLINK_ReadMemEx(0x00006D84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D84) - Data: A6 40  returns 0x02 (0000ms, 0686ms total)
T67BC 009:165 JLINK_ReadMemEx(0x00006D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D86) - Data: C3 08  returns 0x02 (0000ms, 0686ms total)
T67BC 009:165 JLINK_ReadMemEx(0x00006D86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D86) - Data: C3 08  returns 0x02 (0000ms, 0686ms total)
T67BC 009:165 JLINK_ReadMemEx(0x00006D88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00006DC0) -- Updating C cache (64 bytes @ 0x00006DC0) -- Read from C cache (60 bytes @ 0x00006D88) - Data: 9D 00 0E 4B EF 18 7D 68 B5 43 3E 1D 00 29 08 D0 ...  returns 0x3C (0001ms, 0687ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D88) - Data: 9D 00  returns 0x02 (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D88) - Data: 9D 00 0E 4B EF 18 7D 68 B5 43 3E 1D 00 29 08 D0 ...  returns 0x3C (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D88) - Data: 9D 00  returns 0x02 (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8A) - Data: 0E 4B  returns 0x02 (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8A) - Data: 0E 4B  returns 0x02 (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D8C) - Data: EF 18 7D 68 B5 43 3E 1D 00 29 08 D0 35 60 01 22 ...  returns 0x3C (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8C) - Data: EF 18  returns 0x02 (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D8C) - Data: EF 18 7D 68 B5 43 3E 1D 00 29 08 D0 35 60 01 22 ...  returns 0x3C (0000ms, 0688ms total)
T67BC 009:167 JLINK_ReadMemEx(0x00006D8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8C) - Data: EF 18  returns 0x02 (0001ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8E) - Data: 7D 68  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D8E) - Data: 7D 68  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D90) - Data: B5 43 3E 1D 00 29 08 D0 35 60 01 22 82 40 01 29 ...  returns 0x3C (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D90) - Data: B5 43  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D90) - Data: B5 43 3E 1D 00 29 08 D0 35 60 01 22 82 40 01 29 ...  returns 0x3C (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D90) - Data: B5 43  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D92) - Data: 3E 1D  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D92) - Data: 3E 1D  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D94) - Data: 00 29 08 D0 35 60 01 22 82 40 01 29 0C D1 18 68 ...  returns 0x3C (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D94) - Data: 00 29  returns 0x02 (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D94) - Data: 00 29 08 D0 35 60 01 22 82 40 01 29 0C D1 18 68 ...  returns 0x3C (0000ms, 0689ms total)
T67BC 009:168 JLINK_ReadMemEx(0x00006D94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D94) - Data: 00 29  returns 0x02 (0001ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D96) - Data: 08 D0  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D96) - Data: 08 D0  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D98) - Data: 35 60 01 22 82 40 01 29 0C D1 18 68 10 43 18 60 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D98) - Data: 35 60  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D98) - Data: 35 60 01 22 82 40 01 29 0C D1 18 68 10 43 18 60 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D98) - Data: 35 60  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9A) - Data: 01 22  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9A) - Data: 01 22  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D9C) - Data: 82 40 01 29 0C D1 18 68 10 43 18 60 F0 BD 01 21 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9C) - Data: 82 40  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006D9C) - Data: 82 40 01 29 0C D1 18 68 10 43 18 60 F0 BD 01 21 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9C) - Data: 82 40  returns 0x02 (0000ms, 0690ms total)
T67BC 009:169 JLINK_ReadMemEx(0x00006D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9E) - Data: 01 29  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006D9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006D9E) - Data: 01 29  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA0) - Data: 0C D1 18 68 10 43 18 60 F0 BD 01 21 81 40 18 68 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA0) - Data: 0C D1  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA0) - Data: 0C D1 18 68 10 43 18 60 F0 BD 01 21 81 40 18 68 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA0) - Data: 0C D1  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA2) - Data: 18 68  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA2) - Data: 18 68  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA4) - Data: 10 43 18 60 F0 BD 01 21 81 40 18 68 88 43 18 60 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA4) - Data: 10 43  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA4) - Data: 10 43 18 60 F0 BD 01 21 81 40 18 68 88 43 18 60 ...  returns 0x3C (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA4) - Data: 10 43  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA6) - Data: 18 60  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA6) - Data: 18 60  returns 0x02 (0000ms, 0690ms total)
T67BC 009:170 JLINK_ReadMemEx(0x00006DA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA8) - Data: F0 BD 01 21 81 40 18 68 88 43 18 60 A2 40 15 43 ...  returns 0x3C (0001ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA8) - Data: F0 BD  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DA8) - Data: F0 BD 01 21 81 40 18 68 88 43 18 60 A2 40 15 43 ...  returns 0x3C (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DA8) - Data: F0 BD  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAA) - Data: 01 21  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAA) - Data: 01 21  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DAC) - Data: 81 40 18 68 88 43 18 60 A2 40 15 43 35 60 F0 BD ...  returns 0x3C (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAC) - Data: 81 40  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DAC) - Data: 81 40 18 68 88 43 18 60 A2 40 15 43 35 60 F0 BD ...  returns 0x3C (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAC) - Data: 81 40  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAE) - Data: 18 68  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DAE) - Data: 18 68  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB0) - Data: 88 43 18 60 A2 40 15 43 35 60 F0 BD 18 68 90 43 ...  returns 0x3C (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB0) - Data: 88 43  returns 0x02 (0000ms, 0691ms total)
T67BC 009:171 JLINK_ReadMemEx(0x00006DB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB0) - Data: 88 43 18 60 A2 40 15 43 35 60 F0 BD 18 68 90 43 ...  returns 0x3C (0001ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB0) - Data: 88 43  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB2) - Data: 18 60  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB2) - Data: 18 60  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB4) - Data: A2 40 15 43 35 60 F0 BD 18 68 90 43 18 60 F0 BD ...  returns 0x3C (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB4) - Data: A2 40  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB4) - Data: A2 40 15 43 35 60 F0 BD 18 68 90 43 18 60 F0 BD ...  returns 0x3C (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB4) - Data: A2 40  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB6) - Data: 15 43  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB6) - Data: 15 43  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB8) - Data: 35 60 F0 BD 18 68 90 43 18 60 F0 BD 0C 01 00 40 ...  returns 0x3C (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB8) - Data: 35 60  returns 0x02 (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DB8) - Data: 35 60 F0 BD 18 68 90 43 18 60 F0 BD 0C 01 00 40 ...  returns 0x3C (0000ms, 0692ms total)
T67BC 009:172 JLINK_ReadMemEx(0x00006DB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DB8) - Data: 35 60  returns 0x02 (0000ms, 0692ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBA) - Data: F0 BD  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBA) - Data: F0 BD  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DBC) - Data: 18 68 90 43 18 60 F0 BD 0C 01 00 40 80 B5 01 20 ...  returns 0x3C (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBC) - Data: 18 68  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DBC) - Data: 18 68 90 43 18 60 F0 BD 0C 01 00 40 80 B5 01 20 ...  returns 0x3C (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBC) - Data: 18 68  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBE) - Data: 90 43  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DBE) - Data: 90 43  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DC0) - Data: 18 60 F0 BD 0C 01 00 40 80 B5 01 20 FE F7 9C FA ...  returns 0x3C (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC0) - Data: 18 60  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DC0) - Data: 18 60 F0 BD 0C 01 00 40 80 B5 01 20 FE F7 9C FA ...  returns 0x3C (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC0) - Data: 18 60  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC2) - Data: F0 BD  returns 0x02 (0000ms, 0693ms total)
T67BC 009:173 JLINK_ReadMemEx(0x00006DC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC2) - Data: F0 BD  returns 0x02 (0001ms, 0694ms total)
T67BC 009:174 JLINK_ReadMemEx(0x00006DC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DC4) - Data: 0C 01 00 40 80 B5 01 20 FE F7 9C FA 80 BD 00 00 ...  returns 0x3C (0000ms, 0694ms total)
T67BC 009:174 JLINK_ReadMemEx(0x00006DC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC4) - Data: 0C 01  returns 0x02 (0000ms, 0694ms total)
T67BC 009:174 JLINK_ReadMemEx(0x00006DC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00006E00) -- Updating C cache (64 bytes @ 0x00006E00) -- Read from C cache (60 bytes @ 0x00006DC8) - Data: 80 B5 01 20 FE F7 9C FA 80 BD 00 00 82 B0 FD F7 ...  returns 0x3C (0001ms, 0695ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DC8) - Data: 80 B5  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DCA) - Data: 01 20  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DCA) - Data: 01 20  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DCC) - Data: FE F7 9C FA 80 BD 00 00 82 B0 FD F7 73 FD 05 20 ...  returns 0x3C (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DCC) - Data: FE F7  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DCC) - Data: FE F7 9C FA 80 BD 00 00 82 B0 FD F7 73 FD 05 20 ...  returns 0x3C (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DCC) - Data: FE F7  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DCE) - Data: 9C FA  returns 0x02 (0000ms, 0696ms total)
T67BC 009:176 JLINK_ReadMemEx(0x00006DD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DD0) - Data: 80 BD 00 00 82 B0 FD F7 73 FD 05 20 00 24 21 46 ...  returns 0x3C (0001ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD0) - Data: 80 BD  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD2) - Data: 00 00  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD2) - Data: 00 00  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DD4) - Data: 82 B0 FD F7 73 FD 05 20 00 24 21 46 FF F7 A4 FF ...  returns 0x3C (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD4) - Data: 82 B0  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DD4) - Data: 82 B0 FD F7 73 FD 05 20 00 24 21 46 FF F7 A4 FF ...  returns 0x3C (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD4) - Data: 82 B0  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD6) - Data: FD F7  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD6) - Data: FD F7  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DD8) - Data: 73 FD 05 20 00 24 21 46 FF F7 A4 FF 06 20 21 46 ...  returns 0x3C (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DD8) - Data: 73 FD  returns 0x02 (0000ms, 0697ms total)
T67BC 009:177 JLINK_ReadMemEx(0x00006DDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DDA) - Data: 05 20  returns 0x02 (0001ms, 0698ms total)
T67BC 009:178 JLINK_ReadMemEx(0x00006DDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00006DDC) - Data: 00 24 21 46 FF F7 A4 FF 06 20 21 46 FF F7 A0 FF ...  returns 0x3C (0000ms, 0698ms total)
T67BC 009:178 JLINK_ReadMemEx(0x00006DDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006DDC) - Data: 00 24  returns 0x02 (0000ms, 0698ms total)
T67BC 017:337 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0699ms total)
T67BC 017:338 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) (0075ms, 0774ms total)
T67BC 017:413 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0774ms total)
T67BC 017:413 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0774ms total)
T67BC 017:416 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 (0002ms, 0776ms total)
T67BC 017:418 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0777ms total)
T67BC 017:419 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0778ms total)
T67BC 017:420 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, 0779ms total)
T67BC 017:421 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0780ms total)
T67BC 017:422 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0781ms total)
T67BC 017:423 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, 0783ms total)
T67BC 017:425 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0784ms total)
T67BC 017:426 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0785ms total)
T67BC 017:427 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0786ms total)
T67BC 017:428 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, 0787ms total)
T67BC 017:429 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0788ms total)
T67BC 017:430 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, 0790ms total)
T67BC 017:432 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0791ms total)
T67BC 017:433 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0792ms total)
T67BC 017:434 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0793ms total)
T67BC 017:435 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, 0794ms total)
T67BC 017:436 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0795ms total)
T67BC 017:437 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 (0002ms, 0797ms total)
T67BC 017:439 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0798ms total)
T67BC 017:440 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0799ms total)
T67BC 017:465 JLINK_ReadMemEx(0x000070A0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00007080) -- Updating C cache (128 bytes @ 0x00007080) -- Read from C cache (60 bytes @ 0x000070A0) - Data: 07 20 C0 06 08 18 11 49 40 18 50 60 00 2F 0E D0 ...  returns 0x3C (0004ms, 0803ms total)
T67BC 017:469 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 07 20  returns 0x02 (0000ms, 0803ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A2) - Data: C0 06  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A2) - Data: C0 06  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A4) - Data: 08 18 11 49 40 18 50 60 00 2F 0E D0 09 F0 94 F9 ...  returns 0x3C (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A4) - Data: 08 18  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A4) - Data: 08 18 11 49 40 18 50 60 00 2F 0E D0 09 F0 94 F9 ...  returns 0x3C (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A4) - Data: 08 18  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A6) - Data: 11 49  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A6) - Data: 11 49  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A8) - Data: 40 18 50 60 00 2F 0E D0 09 F0 94 F9 04 46 2A 68 ...  returns 0x3C (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A8) - Data: 40 18  returns 0x02 (0000ms, 0804ms total)
T67BC 017:470 JLINK_ReadMemEx(0x000070A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A8) - Data: 40 18 50 60 00 2F 0E D0 09 F0 94 F9 04 46 2A 68 ...  returns 0x3C (0001ms, 0805ms total)
T67BC 017:471 JLINK_ReadMemEx(0x000070A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A8) - Data: 40 18  returns 0x02 (0000ms, 0805ms total)
T67BC 017:471 JLINK_ReadMemEx(0x000070AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AA) - Data: 50 60  returns 0x02 (0000ms, 0805ms total)
T67BC 017:471 JLINK_ReadMemEx(0x000070AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AA) - Data: 50 60  returns 0x02 (0000ms, 0805ms total)
T67BC 017:471 JLINK_ReadMemEx(0x000070AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070AC) - Data: 00 2F 0E D0 09 F0 94 F9 04 46 2A 68 D0 69 80 07 ...  returns 0x3C (0000ms, 0805ms total)
T67BC 017:471 JLINK_ReadMemEx(0x000070AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AC) - Data: 00 2F  returns 0x02 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R0)  returns 0x00006DD5 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R1)  returns 0x0201C048 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R3)  returns 0x00009751 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R4)  returns 0x0000A940 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R6)  returns 0x0000A940 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R14)  returns 0x00000CE1 (0000ms, 0805ms total)
T67BC 017:634 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0001ms, 0806ms total)
T67BC 017:635 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0806ms total)
T67BC 017:635 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0806ms total)
T67BC 017:635 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0806ms total)
T67BC 017:635 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0806ms total)
T67BC 017:635 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0000ms, 0806ms total)
T67BC 017:635 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 0808ms total)
T67BC 017:637 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0809ms total)
T67BC 017:640 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0810ms total)
T67BC 017:641 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0811ms total)
T67BC 017:642 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0812ms total)
T67BC 017:643 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0813ms total)
T67BC 017:644 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 00  returns 0x04 (0001ms, 0814ms total)
T67BC 017:646 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0815ms total)
T67BC 017:648 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0815ms total)
T67BC 017:648 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0817ms total)
T67BC 017:651 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0818ms total)
T67BC 017:652 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0819ms total)
T67BC 017:654 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0820ms total)
T67BC 017:655 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0821ms total)
T67BC 017:656 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0822ms total)
T96A8 018:013 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0823ms total)
T96A8 018:014 JLINK_SetBPEx(Addr = 0x000070A0, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0823ms total)
T96A8 018:014 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) (0008ms, 0831ms total)
T96A8 018:122 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T96A8 018:224 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T96A8 018:325 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T96A8 018:427 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T96A8 018:529 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T67BC 018:633 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0832ms total)
T67BC 018:634 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0833ms total)
T67BC 018:635 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0834ms total)
T67BC 018:637 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0835ms total)
T67BC 018:638 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0836ms total)
T67BC 018:640 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 0837ms total)
T67BC 018:641 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0838ms total)
T67BC 018:642 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0839ms total)
T67BC 018:644 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0840ms total)
T67BC 018:646 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0841ms total)
T67BC 018:648 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0842ms total)
T67BC 018:650 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0000ms, 0842ms total)
T67BC 018:650 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0843ms total)
T67BC 018:651 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0844ms total)
T67BC 018:653 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 0846ms total)
T67BC 018:655 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0847ms total)
T96A8 018:656 JLINK_IsHalted()  returns FALSE (0001ms, 0848ms total)
T96A8 018:757 JLINK_IsHalted()  returns FALSE (0001ms, 0848ms total)
T96A8 018:859 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T96A8 018:961 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T96A8 019:062 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T67BC 019:168 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0848ms total)
T67BC 019:169 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0849ms total)
T67BC 019:170 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0850ms total)
T67BC 019:171 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0851ms total)
T67BC 019:172 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0852ms total)
T67BC 019:173 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0853ms total)
T67BC 019:175 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0854ms total)
T67BC 019:176 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0855ms total)
T67BC 019:177 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0856ms total)
T67BC 019:179 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0857ms total)
T67BC 019:182 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0858ms total)
T67BC 019:184 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0859ms total)
T67BC 019:185 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0860ms total)
T67BC 019:186 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0861ms total)
T67BC 019:187 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0862ms total)
T67BC 019:188 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0863ms total)
T96A8 019:189 JLINK_IsHalted()  returns FALSE (0001ms, 0864ms total)
T96A8 019:291 JLINK_IsHalted()  returns FALSE (0001ms, 0864ms total)
T96A8 019:392 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T96A8 019:493 JLINK_IsHalted()  returns FALSE (0001ms, 0864ms total)
T96A8 019:595 JLINK_IsHalted()  returns FALSE (0001ms, 0864ms total)
T67BC 019:702 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0864ms total)
T67BC 019:703 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0865ms total)
T67BC 019:704 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0866ms total)
T67BC 019:706 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0867ms total)
T67BC 019:707 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 0867ms total)
T67BC 019:708 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0869ms total)
T67BC 019:709 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0870ms total)
T67BC 019:710 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 0871ms total)
T67BC 019:713 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0872ms total)
T67BC 019:715 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0873ms total)
T67BC 019:716 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0875ms total)
T67BC 019:718 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0876ms total)
T67BC 019:719 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0877ms total)
T67BC 019:720 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0878ms total)
T67BC 019:721 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0879ms total)
T67BC 019:722 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0880ms total)
T96A8 019:723 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T96A8 019:824 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T96A8 019:926 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T96A8 020:028 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T96A8 020:130 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T67BC 020:234 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0881ms total)
T67BC 020:235 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0882ms total)
T67BC 020:236 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0883ms total)
T67BC 020:239 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 0883ms total)
T67BC 020:240 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 0884ms total)
T67BC 020:241 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0885ms total)
T67BC 020:242 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0886ms total)
T67BC 020:243 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 0887ms total)
T67BC 020:245 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0888ms total)
T67BC 020:246 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0889ms total)
T67BC 020:248 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0890ms total)
T67BC 020:249 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0891ms total)
T67BC 020:250 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0892ms total)
T67BC 020:251 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0893ms total)
T67BC 020:252 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0894ms total)
T67BC 020:253 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0895ms total)
T96A8 020:254 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T96A8 020:356 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T96A8 020:457 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T96A8 020:559 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T96A8 020:661 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T67BC 020:765 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0896ms total)
T67BC 020:766 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0897ms total)
T67BC 020:767 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0898ms total)
T67BC 020:769 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0899ms total)
T67BC 020:770 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0900ms total)
T67BC 020:771 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0901ms total)
T67BC 020:773 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0902ms total)
T67BC 020:774 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 40  returns 0x04 (0001ms, 0903ms total)
T67BC 020:777 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0904ms total)
T67BC 020:779 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0905ms total)
T67BC 020:780 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0906ms total)
T67BC 020:782 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0908ms total)
T67BC 020:783 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0909ms total)
T67BC 020:784 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0910ms total)
T67BC 020:785 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0911ms total)
T67BC 020:786 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0912ms total)
T96A8 020:787 JLINK_IsHalted()  returns FALSE (0001ms, 0913ms total)
T96A8 020:889 JLINK_IsHalted()  returns FALSE (0001ms, 0913ms total)
T96A8 020:991 JLINK_IsHalted()  returns FALSE (0001ms, 0913ms total)
T96A8 021:092 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T96A8 021:194 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T67BC 021:297 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0913ms total)
T67BC 021:298 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0914ms total)
T67BC 021:299 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0915ms total)
T67BC 021:301 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 0915ms total)
T67BC 021:301 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0002ms, 0917ms total)
T67BC 021:304 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 0917ms total)
T67BC 021:305 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0918ms total)
T67BC 021:306 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 40  returns 0x04 (0001ms, 0919ms total)
T67BC 021:307 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0921ms total)
T67BC 021:309 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0922ms total)
T67BC 021:310 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0924ms total)
T67BC 021:312 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0925ms total)
T67BC 021:313 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0926ms total)
T67BC 021:314 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0927ms total)
T67BC 021:316 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0928ms total)
T67BC 021:317 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0929ms total)
T96A8 021:318 JLINK_IsHalted()  returns FALSE (0001ms, 0930ms total)
T96A8 021:419 JLINK_IsHalted()  returns FALSE (0001ms, 0930ms total)
T96A8 021:520 JLINK_IsHalted()  returns FALSE (0001ms, 0930ms total)
T96A8 021:622 JLINK_IsHalted()  returns FALSE (0001ms, 0930ms total)
T96A8 021:723 JLINK_IsHalted()  returns FALSE (0001ms, 0930ms total)
T67BC 021:829 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0002ms, 0931ms total)
T67BC 021:831 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0932ms total)
T67BC 021:832 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0933ms total)
T67BC 021:834 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0934ms total)
T67BC 021:835 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0935ms total)
T67BC 021:836 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0936ms total)
T67BC 021:838 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0936ms total)
T67BC 021:838 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0001ms, 0937ms total)
T67BC 021:840 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0940ms total)
T67BC 021:842 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0941ms total)
T67BC 021:844 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0942ms total)
T67BC 021:845 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0943ms total)
T67BC 021:846 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0944ms total)
T67BC 021:847 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0945ms total)
T67BC 021:848 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0946ms total)
T67BC 021:849 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0947ms total)
T96A8 021:851 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T96A8 021:952 JLINK_IsHalted()  returns FALSE (0001ms, 0948ms total)
T96A8 022:054 JLINK_IsHalted()  returns FALSE (0001ms, 0948ms total)
T96A8 022:155 JLINK_IsHalted()  returns FALSE (0001ms, 0948ms total)
T96A8 022:257 JLINK_IsHalted()  returns FALSE (0001ms, 0948ms total)
T67BC 022:364 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0948ms total)
T67BC 022:365 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0949ms total)
T67BC 022:366 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0950ms total)
T67BC 022:368 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 0950ms total)
T67BC 022:368 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0951ms total)
T67BC 022:370 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 0951ms total)
T67BC 022:371 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0953ms total)
T67BC 022:372 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0001ms, 0954ms total)
T67BC 022:376 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0955ms total)
T67BC 022:378 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0956ms total)
T67BC 022:380 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0957ms total)
T67BC 022:382 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0958ms total)
T67BC 022:383 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0959ms total)
T67BC 022:384 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0960ms total)
T67BC 022:385 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0961ms total)
T67BC 022:386 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0962ms total)
T96A8 022:387 JLINK_IsHalted()  returns FALSE (0001ms, 0963ms total)
T96A8 022:489 JLINK_IsHalted()  returns FALSE (0001ms, 0963ms total)
T96A8 022:591 JLINK_IsHalted()  returns FALSE (0001ms, 0963ms total)
T96A8 022:693 JLINK_IsHalted()  returns FALSE (0001ms, 0963ms total)
T96A8 022:794 JLINK_IsHalted()  returns FALSE (0001ms, 0963ms total)
T67BC 022:897 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0963ms total)
T67BC 022:898 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0964ms total)
T67BC 022:899 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0965ms total)
T67BC 022:903 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0966ms total)
T67BC 022:904 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0967ms total)
T67BC 022:905 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0968ms total)
T67BC 022:907 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0969ms total)
T67BC 022:908 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0970ms total)
T67BC 022:909 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0972ms total)
T67BC 022:911 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0973ms total)
T67BC 022:912 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0975ms total)
T67BC 022:914 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0976ms total)
T67BC 022:915 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0977ms total)
T67BC 022:917 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0978ms total)
T67BC 022:918 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 0979ms total)
T67BC 022:919 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0980ms total)
T96A8 022:920 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T96A8 023:022 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T96A8 023:124 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T96A8 023:225 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T96A8 023:326 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T67BC 023:431 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0981ms total)
T67BC 023:432 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0982ms total)
T67BC 023:433 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0983ms total)
T67BC 023:435 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0002ms, 0985ms total)
T67BC 023:437 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 0986ms total)
T67BC 023:438 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 0987ms total)
T67BC 023:439 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0988ms total)
T67BC 023:440 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0989ms total)
T67BC 023:442 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0990ms total)
T67BC 023:443 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0991ms total)
T67BC 023:445 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0993ms total)
T67BC 023:448 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 0994ms total)
T67BC 023:449 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0995ms total)
T67BC 023:450 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 0996ms total)
T67BC 023:451 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 0996ms total)
T67BC 023:451 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 0997ms total)
T96A8 023:453 JLINK_IsHalted()  returns FALSE (0001ms, 0998ms total)
T96A8 023:555 JLINK_IsHalted()  returns FALSE (0001ms, 0998ms total)
T96A8 023:656 JLINK_IsHalted()  returns FALSE (0001ms, 0998ms total)
T96A8 023:758 JLINK_IsHalted()  returns FALSE (0001ms, 0998ms total)
T96A8 023:860 JLINK_IsHalted()  returns FALSE (0001ms, 0998ms total)
T67BC 023:969 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 0998ms total)
T67BC 023:970 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 0999ms total)
T67BC 023:971 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1000ms total)
T67BC 023:973 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1001ms total)
T67BC 023:974 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1002ms total)
T67BC 023:975 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1003ms total)
T67BC 023:977 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1004ms total)
T67BC 023:978 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1005ms total)
T67BC 023:980 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1006ms total)
T67BC 023:981 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1007ms total)
T67BC 023:983 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1008ms total)
T67BC 023:984 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1009ms total)
T67BC 023:985 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1010ms total)
T67BC 023:986 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1011ms total)
T67BC 023:987 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1012ms total)
T67BC 023:988 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1013ms total)
T96A8 023:989 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T96A8 024:091 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T96A8 024:193 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T96A8 024:294 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T96A8 024:396 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T67BC 024:500 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1014ms total)
T67BC 024:501 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 1016ms total)
T67BC 024:503 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1017ms total)
T67BC 024:506 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1018ms total)
T67BC 024:507 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1019ms total)
T67BC 024:508 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1020ms total)
T67BC 024:509 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1021ms total)
T67BC 024:510 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1022ms total)
T67BC 024:512 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1023ms total)
T67BC 024:513 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1024ms total)
T67BC 024:515 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1025ms total)
T67BC 024:516 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1026ms total)
T67BC 024:517 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1027ms total)
T67BC 024:518 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1028ms total)
T67BC 024:519 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1029ms total)
T67BC 024:520 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1030ms total)
T96A8 024:521 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T96A8 024:624 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T96A8 024:726 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T96A8 024:828 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T96A8 024:930 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T67BC 025:034 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1031ms total)
T67BC 025:036 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1033ms total)
T67BC 025:037 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1034ms total)
T67BC 025:039 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1035ms total)
T67BC 025:040 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1036ms total)
T67BC 025:041 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1037ms total)
T67BC 025:043 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1038ms total)
T67BC 025:044 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1039ms total)
T67BC 025:045 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1040ms total)
T67BC 025:047 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0002ms, 1042ms total)
T67BC 025:050 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1044ms total)
T67BC 025:052 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1045ms total)
T67BC 025:053 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1046ms total)
T67BC 025:054 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1047ms total)
T67BC 025:055 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1048ms total)
T67BC 025:056 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1049ms total)
T96A8 025:057 JLINK_IsHalted()  returns FALSE (0001ms, 1050ms total)
T96A8 025:160 JLINK_IsHalted()  returns FALSE (0001ms, 1050ms total)
T96A8 025:261 JLINK_IsHalted()  returns FALSE (0001ms, 1050ms total)
T96A8 025:362 JLINK_IsHalted()  returns FALSE (0001ms, 1050ms total)
T96A8 025:464 JLINK_IsHalted()  returns FALSE (0001ms, 1050ms total)
T67BC 025:568 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1050ms total)
T67BC 025:569 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1051ms total)
T67BC 025:570 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1052ms total)
T67BC 025:571 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1053ms total)
T67BC 025:572 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1054ms total)
T67BC 025:573 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1055ms total)
T67BC 025:575 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1056ms total)
T67BC 025:576 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1057ms total)
T67BC 025:577 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1058ms total)
T67BC 025:579 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1059ms total)
T67BC 025:581 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1060ms total)
T67BC 025:582 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1061ms total)
T67BC 025:583 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1062ms total)
T67BC 025:584 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1063ms total)
T67BC 025:585 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1064ms total)
T67BC 025:586 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1065ms total)
T96A8 025:587 JLINK_IsHalted()  returns FALSE (0001ms, 1066ms total)
T96A8 025:690 JLINK_IsHalted()  returns FALSE (0001ms, 1066ms total)
T96A8 025:791 JLINK_IsHalted()  returns FALSE (0001ms, 1066ms total)
T96A8 025:893 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T96A8 025:994 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T67BC 026:098 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1066ms total)
T67BC 026:099 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1067ms total)
T67BC 026:100 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1068ms total)
T67BC 026:103 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1069ms total)
T67BC 026:104 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1070ms total)
T67BC 026:105 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1071ms total)
T67BC 026:106 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1072ms total)
T67BC 026:107 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 41  returns 0x04 (0001ms, 1073ms total)
T67BC 026:109 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1074ms total)
T67BC 026:111 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1075ms total)
T67BC 026:113 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1076ms total)
T67BC 026:115 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1077ms total)
T67BC 026:116 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0000ms, 1077ms total)
T67BC 026:117 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 1077ms total)
T67BC 026:118 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1078ms total)
T67BC 026:119 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1079ms total)
T96A8 026:120 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T96A8 026:222 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T96A8 026:324 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T96A8 026:426 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T96A8 026:528 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T67BC 026:631 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1080ms total)
T67BC 026:632 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1081ms total)
T67BC 026:633 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1082ms total)
T67BC 026:635 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1083ms total)
T67BC 026:636 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1084ms total)
T67BC 026:637 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1085ms total)
T67BC 026:640 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0002ms, 1087ms total)
T67BC 026:642 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 10 41  returns 0x04 (0001ms, 1088ms total)
T67BC 026:645 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1089ms total)
T67BC 026:647 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1090ms total)
T67BC 026:648 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1091ms total)
T67BC 026:649 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1092ms total)
T67BC 026:650 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1093ms total)
T67BC 026:651 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1094ms total)
T67BC 026:652 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1095ms total)
T67BC 026:653 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1096ms total)
T96A8 026:654 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T96A8 026:757 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T96A8 026:858 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T96A8 026:960 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T96A8 027:063 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T67BC 027:168 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1097ms total)
T67BC 027:169 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1098ms total)
T67BC 027:170 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1099ms total)
T67BC 027:172 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1100ms total)
T67BC 027:173 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1101ms total)
T67BC 027:174 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1102ms total)
T67BC 027:176 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1103ms total)
T67BC 027:177 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 10 41  returns 0x04 (0001ms, 1104ms total)
T67BC 027:179 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1105ms total)
T67BC 027:181 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1106ms total)
T67BC 027:182 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1107ms total)
T67BC 027:183 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1108ms total)
T67BC 027:184 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1109ms total)
T67BC 027:186 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1110ms total)
T67BC 027:187 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1111ms total)
T67BC 027:188 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1112ms total)
T96A8 027:189 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T96A8 027:291 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T96A8 027:392 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T96A8 027:494 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T96A8 027:596 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T67BC 027:704 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1113ms total)
T67BC 027:705 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1114ms total)
T67BC 027:706 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1115ms total)
T67BC 027:708 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1116ms total)
T67BC 027:709 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1117ms total)
T67BC 027:710 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1118ms total)
T67BC 027:711 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1119ms total)
T67BC 027:712 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 20 41  returns 0x04 (0001ms, 1120ms total)
T67BC 027:714 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1121ms total)
T67BC 027:717 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1122ms total)
T67BC 027:718 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1124ms total)
T67BC 027:721 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1125ms total)
T67BC 027:722 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1126ms total)
T67BC 027:723 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1127ms total)
T67BC 027:724 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1128ms total)
T67BC 027:725 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1129ms total)
T96A8 027:726 JLINK_IsHalted()  returns FALSE (0001ms, 1130ms total)
T96A8 027:829 JLINK_IsHalted()  returns FALSE (0001ms, 1130ms total)
T96A8 027:930 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T96A8 028:031 JLINK_IsHalted()  returns FALSE (0001ms, 1130ms total)
T96A8 028:133 JLINK_IsHalted()  returns FALSE (0001ms, 1130ms total)
T67BC 028:239 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1130ms total)
T67BC 028:240 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 1132ms total)
T67BC 028:242 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1133ms total)
T67BC 028:244 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1134ms total)
T67BC 028:245 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1135ms total)
T67BC 028:246 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1136ms total)
T67BC 028:247 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1137ms total)
T67BC 028:248 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 20 41  returns 0x04 (0001ms, 1138ms total)
T67BC 028:250 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1139ms total)
T67BC 028:252 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1140ms total)
T67BC 028:253 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1141ms total)
T67BC 028:254 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1142ms total)
T67BC 028:255 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0002ms, 1144ms total)
T67BC 028:257 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1145ms total)
T67BC 028:258 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1146ms total)
T67BC 028:259 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1147ms total)
T96A8 028:260 JLINK_IsHalted()  returns FALSE (0001ms, 1148ms total)
T96A8 028:362 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T96A8 028:463 JLINK_IsHalted()  returns FALSE (0001ms, 1148ms total)
T67BC 028:530 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1148ms total)
T67BC 028:531 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1149ms total)
T67BC 028:532 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1150ms total)
T67BC 028:533 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1151ms total)
T67BC 028:534 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1152ms total)
T67BC 028:535 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1153ms total)
T67BC 028:536 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1154ms total)
T67BC 028:537 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1155ms total)
T67BC 028:538 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1156ms total)
T67BC 028:539 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1157ms total)
T67BC 028:540 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1158ms total)
T67BC 028:541 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1159ms total)
T67BC 028:542 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1160ms total)
T67BC 028:543 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1161ms total)
T67BC 028:544 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T67BC 028:545 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1163ms total)
T67BC 028:546 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1164ms total)
T67BC 028:547 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1165ms total)
T67BC 028:548 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1166ms total)
T67BC 028:549 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1167ms total)
T67BC 028:550 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1168ms total)
T67BC 028:551 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T96A8 028:565 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T67BC 028:571 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1170ms total)
T67BC 028:572 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1171ms total)
T67BC 028:573 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1172ms total)
T67BC 028:574 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1173ms total)
T67BC 028:575 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1174ms total)
T67BC 028:576 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1175ms total)
T67BC 028:577 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T67BC 028:578 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1177ms total)
T67BC 028:579 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1178ms total)
T67BC 028:580 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1179ms total)
T67BC 028:581 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0002ms, 1181ms total)
T96A8 028:667 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T67BC 028:772 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1182ms total)
T67BC 028:773 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1183ms total)
T67BC 028:774 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1184ms total)
T67BC 028:777 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1185ms total)
T67BC 028:778 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0002ms, 1187ms total)
T67BC 028:780 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1188ms total)
T67BC 028:781 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1189ms total)
T67BC 028:782 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 30 41  returns 0x04 (0001ms, 1190ms total)
T67BC 028:784 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1191ms total)
T67BC 028:786 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1192ms total)
T67BC 028:787 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1193ms total)
T67BC 028:788 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1194ms total)
T67BC 028:789 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1195ms total)
T67BC 028:790 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1196ms total)
T67BC 028:791 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1197ms total)
T67BC 028:792 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1198ms total)
T67BC 028:793 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T67BC 028:794 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T67BC 028:795 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1201ms total)
T67BC 028:796 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1202ms total)
T67BC 028:797 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1203ms total)
T67BC 028:798 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1204ms total)
T67BC 028:799 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1205ms total)
T67BC 028:800 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1206ms total)
T67BC 028:801 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1207ms total)
T67BC 028:802 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1208ms total)
T96A8 028:803 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T96A8 028:905 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T96A8 029:007 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T96A8 029:108 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T96A8 029:210 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T67BC 029:313 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1209ms total)
T67BC 029:314 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1210ms total)
T67BC 029:315 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1211ms total)
T67BC 029:319 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1212ms total)
T67BC 029:320 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1213ms total)
T67BC 029:321 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1214ms total)
T67BC 029:323 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1215ms total)
T67BC 029:324 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 30 41  returns 0x04 (0001ms, 1216ms total)
T67BC 029:326 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1217ms total)
T67BC 029:328 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1218ms total)
T67BC 029:329 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1219ms total)
T67BC 029:330 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1220ms total)
T67BC 029:331 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1221ms total)
T67BC 029:332 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T67BC 029:333 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1223ms total)
T67BC 029:334 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1224ms total)
T67BC 029:335 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1225ms total)
T67BC 029:336 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1226ms total)
T67BC 029:337 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1227ms total)
T67BC 029:338 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1228ms total)
T67BC 029:339 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1229ms total)
T67BC 029:341 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0000ms, 1229ms total)
T67BC 029:341 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1230ms total)
T67BC 029:343 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1231ms total)
T67BC 029:344 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 1231ms total)
T67BC 029:344 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0002ms, 1233ms total)
T96A8 029:346 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T96A8 029:448 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T96A8 029:550 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T96A8 029:651 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T96A8 029:753 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T67BC 029:856 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1234ms total)
T67BC 029:857 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1235ms total)
T67BC 029:858 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1236ms total)
T67BC 029:860 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1237ms total)
T67BC 029:862 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1238ms total)
T67BC 029:863 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1239ms total)
T67BC 029:865 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0002ms, 1241ms total)
T67BC 029:867 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 41  returns 0x04 (0001ms, 1242ms total)
T67BC 029:869 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1243ms total)
T67BC 029:871 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1244ms total)
T67BC 029:872 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1245ms total)
T67BC 029:873 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1246ms total)
T67BC 029:874 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1247ms total)
T67BC 029:875 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1248ms total)
T67BC 029:876 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1249ms total)
T67BC 029:877 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1250ms total)
T67BC 029:878 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1251ms total)
T67BC 029:879 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1252ms total)
T67BC 029:880 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1253ms total)
T67BC 029:881 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T67BC 029:882 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T67BC 029:883 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1256ms total)
T67BC 029:884 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1257ms total)
T67BC 029:886 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 1257ms total)
T67BC 029:887 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1258ms total)
T67BC 029:888 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1259ms total)
T96A8 029:889 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T96A8 029:991 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T96A8 030:092 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T96A8 030:194 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T96A8 030:296 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T67BC 030:400 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1260ms total)
T67BC 030:401 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1261ms total)
T67BC 030:402 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1262ms total)
T67BC 030:404 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1263ms total)
T67BC 030:405 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1264ms total)
T67BC 030:406 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1265ms total)
T67BC 030:408 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1266ms total)
T67BC 030:409 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 41  returns 0x04 (0001ms, 1267ms total)
T67BC 030:411 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1268ms total)
T67BC 030:413 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1269ms total)
T67BC 030:414 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1270ms total)
T67BC 030:415 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1271ms total)
T67BC 030:416 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1272ms total)
T67BC 030:418 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0000ms, 1272ms total)
T67BC 030:419 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0000ms, 1272ms total)
T67BC 030:419 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T67BC 030:421 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0000ms, 1274ms total)
T67BC 030:421 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T67BC 030:423 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0000ms, 1275ms total)
T67BC 030:424 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T67BC 030:425 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1277ms total)
T67BC 030:426 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1278ms total)
T67BC 030:427 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1279ms total)
T67BC 030:428 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1280ms total)
T67BC 030:429 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1281ms total)
T67BC 030:430 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1282ms total)
T96A8 030:431 JLINK_IsHalted()  returns FALSE (0001ms, 1283ms total)
T96A8 030:533 JLINK_IsHalted()  returns FALSE (0001ms, 1283ms total)
T96A8 030:635 JLINK_IsHalted()  returns FALSE (0001ms, 1283ms total)
T96A8 030:737 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T96A8 030:838 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T67BC 030:941 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1283ms total)
T67BC 030:942 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1284ms total)
T67BC 030:943 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1285ms total)
T67BC 030:945 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1286ms total)
T67BC 030:946 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1287ms total)
T67BC 030:947 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1288ms total)
T67BC 030:949 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1289ms total)
T67BC 030:950 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 50 41  returns 0x04 (0001ms, 1290ms total)
T67BC 030:951 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1291ms total)
T67BC 030:954 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0002ms, 1294ms total)
T67BC 030:956 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1296ms total)
T67BC 030:958 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1297ms total)
T67BC 030:959 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0000ms, 1297ms total)
T67BC 030:959 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1298ms total)
T67BC 030:960 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T67BC 030:961 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1300ms total)
T67BC 030:962 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1301ms total)
T67BC 030:963 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1302ms total)
T67BC 030:964 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1303ms total)
T67BC 030:965 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1304ms total)
T67BC 030:966 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1305ms total)
T67BC 030:967 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1306ms total)
T67BC 030:968 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1307ms total)
T67BC 030:970 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1308ms total)
T67BC 030:971 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1309ms total)
T67BC 030:972 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1310ms total)
T96A8 030:973 JLINK_IsHalted()  returns FALSE (0001ms, 1311ms total)
T96A8 031:075 JLINK_IsHalted()  returns FALSE (0001ms, 1311ms total)
T96A8 031:176 JLINK_IsHalted()  returns FALSE (0001ms, 1311ms total)
T96A8 031:277 JLINK_IsHalted()  returns FALSE (0001ms, 1311ms total)
T96A8 031:380 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T67BC 031:487 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1311ms total)
T67BC 031:488 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1312ms total)
T67BC 031:489 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1313ms total)
T67BC 031:491 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1314ms total)
T67BC 031:492 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1315ms total)
T67BC 031:493 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0002ms, 1317ms total)
T67BC 031:495 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1318ms total)
T67BC 031:496 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 50 41  returns 0x04 (0001ms, 1319ms total)
T67BC 031:498 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1320ms total)
T67BC 031:500 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1321ms total)
T67BC 031:502 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1322ms total)
T67BC 031:503 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1323ms total)
T67BC 031:504 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1324ms total)
T67BC 031:505 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1325ms total)
T67BC 031:506 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1326ms total)
T67BC 031:507 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1327ms total)
T67BC 031:508 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1328ms total)
T67BC 031:509 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1329ms total)
T67BC 031:510 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1330ms total)
T67BC 031:511 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1331ms total)
T67BC 031:512 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0002ms, 1333ms total)
T67BC 031:515 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1334ms total)
T67BC 031:516 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1335ms total)
T67BC 031:517 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1336ms total)
T67BC 031:518 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1337ms total)
T67BC 031:519 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1338ms total)
T96A8 031:520 JLINK_IsHalted()  returns FALSE (0001ms, 1339ms total)
T96A8 031:622 JLINK_IsHalted()  returns FALSE (0001ms, 1339ms total)
T96A8 031:724 JLINK_IsHalted()  returns FALSE (0001ms, 1339ms total)
T96A8 031:825 JLINK_IsHalted()  returns FALSE (0001ms, 1339ms total)
T96A8 031:927 JLINK_IsHalted()  returns FALSE (0001ms, 1339ms total)
T67BC 032:035 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1339ms total)
T67BC 032:036 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1340ms total)
T67BC 032:037 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1341ms total)
T67BC 032:040 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1342ms total)
T67BC 032:041 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1343ms total)
T67BC 032:042 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1344ms total)
T67BC 032:044 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1345ms total)
T67BC 032:045 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 60 41  returns 0x04 (0001ms, 1346ms total)
T67BC 032:047 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1347ms total)
T67BC 032:049 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1348ms total)
T67BC 032:050 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1349ms total)
T67BC 032:051 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1350ms total)
T67BC 032:052 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1351ms total)
T67BC 032:053 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1352ms total)
T67BC 032:054 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1353ms total)
T67BC 032:055 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1354ms total)
T67BC 032:056 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T67BC 032:057 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1356ms total)
T67BC 032:058 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0000ms, 1356ms total)
T67BC 032:058 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0002ms, 1358ms total)
T67BC 032:060 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1359ms total)
T67BC 032:061 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1360ms total)
T67BC 032:062 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1361ms total)
T67BC 032:063 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1362ms total)
T67BC 032:064 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1363ms total)
T67BC 032:065 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1364ms total)
T96A8 032:066 JLINK_IsHalted()  returns FALSE (0001ms, 1365ms total)
T96A8 032:168 JLINK_IsHalted()  returns FALSE (0001ms, 1365ms total)
T96A8 032:269 JLINK_IsHalted()  returns FALSE (0001ms, 1365ms total)
T96A8 032:371 JLINK_IsHalted()  returns FALSE (0001ms, 1365ms total)
T96A8 032:473 JLINK_IsHalted()  returns TRUE (0004ms, 1368ms total)
T96A8 032:477 JLINK_Halt()  returns 0x00 (0000ms, 1364ms total)
T96A8 032:477 JLINK_IsHalted()  returns TRUE (0000ms, 1364ms total)
T96A8 032:477 JLINK_IsHalted()  returns TRUE (0000ms, 1364ms total)
T96A8 032:477 JLINK_IsHalted()  returns TRUE (0000ms, 1364ms total)
T96A8 032:477 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1364ms total)
T96A8 032:477 JLINK_ReadReg(XPSR)  returns 0x61000017 (0000ms, 1364ms total)
T96A8 032:477 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 1364ms total)
T96A8 032:477 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1365ms total)
T96A8 032:478 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1366ms total)
T96A8 032:479 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1367ms total)
T96A8 032:480 JLINK_ReadReg(R0)  returns 0x02019508 (0000ms, 1367ms total)
T96A8 032:480 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 1367ms total)
T96A8 032:480 JLINK_ReadReg(R2)  returns 0x00001018 (0000ms, 1367ms total)
T96A8 032:481 JLINK_ReadReg(R3)  returns 0x00001008 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R4)  returns 0x020194CA (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R5)  returns 0x00020000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R6)  returns 0x00000001 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R7)  returns 0x41600000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R13 (SP))  returns 0x0202F7A0 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R14)  returns 0x000024DB (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1368ms total)
T96A8 032:481 JLINK_ReadReg(XPSR)  returns 0x61000017 (0001ms, 1369ms total)
T96A8 032:482 JLINK_ReadReg(MSP)  returns 0x0202F7A0 (0000ms, 1369ms total)
T96A8 032:482 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1369ms total)
T96A8 032:482 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1369ms total)
T67BC 032:482 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 1370ms total)
T67BC 032:484 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 44 93 01 02  returns 0x04 (0001ms, 1371ms total)
T67BC 032:485 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 1372ms total)
T67BC 032:486 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0002ms, 1374ms total)
T67BC 032:488 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: AE 39 00 00  returns 0x04 (0001ms, 1375ms total)
T67BC 032:489 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 00 00 00 61  returns 0x04 (0000ms, 1375ms total)
T67BC 032:490 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: A1 39 00 00  returns 0x04 (0000ms, 1376ms total)
T67BC 032:491 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0000ms, 1377ms total)
T67BC 032:492 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: D4 94 01 02  returns 0x04 (0001ms, 1378ms total)
T67BC 032:493 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 78 00 00 00  returns 0x04 (0001ms, 1379ms total)
T67BC 032:494 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1379ms total)
T67BC 032:494 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 60 41  returns 0x04 (0002ms, 1381ms total)
T67BC 032:496 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 1382ms total)
T67BC 032:502 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1383ms total)
T67BC 032:503 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1384ms total)
T67BC 032:504 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1385ms total)
T67BC 032:506 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1386ms total)
T67BC 032:507 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1387ms total)
T67BC 032:508 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1388ms total)
T67BC 032:510 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1389ms total)
T67BC 032:511 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 00  returns 0x04 (0001ms, 1390ms total)
T67BC 032:513 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1391ms total)
T67BC 032:514 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1392ms total)
T67BC 032:516 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1393ms total)
T67BC 032:518 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1394ms total)
T67BC 032:519 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1395ms total)
T67BC 032:520 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1396ms total)
T67BC 032:521 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1397ms total)
T67BC 032:522 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1398ms total)
T67BC 032:523 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1399ms total)
T67BC 032:524 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1400ms total)
T67BC 032:525 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T67BC 032:526 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1402ms total)
T67BC 032:527 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1403ms total)
T67BC 032:528 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1404ms total)
T67BC 032:529 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1405ms total)
T67BC 032:530 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1406ms total)
T67BC 032:531 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1407ms total)
T67BC 032:532 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1408ms total)
T96A8 035:287 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007080) -- Updating C cache (64 bytes @ 0x00007080) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 10 BD  returns 0x02 (0002ms, 1410ms total)
T96A8 035:289 JLINK_Step() -- Read from C cache (2 bytes @ 0x000070A0) -- 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 (0012ms, 1422ms total)
T96A8 035:301 JLINK_ReadReg(R15 (PC))  returns 0x00001A00 (0000ms, 1422ms total)
T96A8 035:301 JLINK_ReadReg(XPSR)  returns 0x61000017 (0000ms, 1422ms total)
T96A8 035:301 JLINK_SetBPEx(Addr = 0x000070A0, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 1422ms total)
T96A8 035:301 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 1426ms total)
T96A8 035:406 JLINK_IsHalted()  returns FALSE (0001ms, 1427ms total)
T96A8 035:508 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T96A8 035:609 JLINK_IsHalted()  returns FALSE (0001ms, 1427ms total)
T96A8 035:711 JLINK_IsHalted()  returns FALSE (0001ms, 1427ms total)
T96A8 035:813 JLINK_IsHalted()  returns FALSE (0001ms, 1427ms total)
T67BC 035:921 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1427ms total)
T67BC 035:922 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1428ms total)
T67BC 035:923 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1429ms total)
T67BC 035:925 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1430ms total)
T67BC 035:926 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1431ms total)
T67BC 035:927 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1432ms total)
T67BC 035:928 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1433ms total)
T67BC 035:929 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1434ms total)
T67BC 035:933 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1435ms total)
T67BC 035:934 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1436ms total)
T67BC 035:936 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1437ms total)
T67BC 035:937 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1438ms total)
T67BC 035:938 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1439ms total)
T67BC 035:939 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1440ms total)
T67BC 035:940 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T67BC 035:941 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T67BC 035:942 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1443ms total)
T67BC 035:943 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1444ms total)
T67BC 035:944 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1445ms total)
T67BC 035:945 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1446ms total)
T67BC 035:946 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1447ms total)
T67BC 035:947 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1448ms total)
T67BC 035:948 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0002ms, 1450ms total)
T67BC 035:950 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1451ms total)
T67BC 035:951 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1452ms total)
T67BC 035:952 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0002ms, 1454ms total)
T96A8 035:954 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T96A8 036:055 JLINK_IsHalted()  returns FALSE (0001ms, 1455ms total)
T96A8 036:157 JLINK_IsHalted()  returns FALSE (0001ms, 1455ms total)
T96A8 036:259 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T96A8 036:361 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T67BC 036:468 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1455ms total)
T67BC 036:469 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1456ms total)
T67BC 036:470 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 1456ms total)
T67BC 036:472 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1457ms total)
T67BC 036:473 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1458ms total)
T67BC 036:474 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0002ms, 1460ms total)
T67BC 036:478 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1461ms total)
T67BC 036:479 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 1462ms total)
T67BC 036:482 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1464ms total)
T67BC 036:484 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1465ms total)
T67BC 036:486 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1466ms total)
T67BC 036:487 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1467ms total)
T67BC 036:488 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1468ms total)
T67BC 036:489 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1469ms total)
T67BC 036:490 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1470ms total)
T67BC 036:491 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1471ms total)
T67BC 036:492 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1472ms total)
T67BC 036:493 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1473ms total)
T67BC 036:494 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1474ms total)
T67BC 036:495 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1475ms total)
T67BC 036:496 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T67BC 036:497 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1477ms total)
T67BC 036:498 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1478ms total)
T67BC 036:499 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1479ms total)
T67BC 036:500 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1480ms total)
T67BC 036:501 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1481ms total)
T96A8 036:502 JLINK_IsHalted()  returns FALSE (0001ms, 1482ms total)
T96A8 036:604 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T96A8 036:706 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T96A8 036:808 JLINK_IsHalted()  returns FALSE (0001ms, 1482ms total)
T96A8 036:910 JLINK_IsHalted()  returns FALSE (0001ms, 1482ms total)
T67BC 037:014 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1482ms total)
T67BC 037:015 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1483ms total)
T67BC 037:016 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1484ms total)
T67BC 037:019 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 1484ms total)
T67BC 037:020 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 1485ms total)
T67BC 037:021 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 1485ms total)
T67BC 037:023 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1486ms total)
T67BC 037:024 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 1487ms total)
T67BC 037:026 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1489ms total)
T67BC 037:028 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0002ms, 1491ms total)
T67BC 037:030 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1492ms total)
T67BC 037:031 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1493ms total)
T67BC 037:032 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1494ms total)
T67BC 037:033 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T67BC 037:034 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1496ms total)
T67BC 037:035 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1497ms total)
T67BC 037:036 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1498ms total)
T67BC 037:037 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1499ms total)
T67BC 037:038 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0002ms, 1501ms total)
T67BC 037:040 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T67BC 037:041 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0000ms, 1502ms total)
T67BC 037:042 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1503ms total)
T67BC 037:043 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1504ms total)
T67BC 037:044 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1505ms total)
T67BC 037:045 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1506ms total)
T67BC 037:046 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1507ms total)
T96A8 037:047 JLINK_IsHalted()  returns FALSE (0001ms, 1508ms total)
T96A8 037:150 JLINK_IsHalted()  returns FALSE (0001ms, 1508ms total)
T96A8 037:251 JLINK_IsHalted()  returns FALSE (0001ms, 1508ms total)
T96A8 037:353 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T96A8 037:455 JLINK_IsHalted()  returns FALSE (0001ms, 1508ms total)
T67BC 037:565 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1508ms total)
T67BC 037:566 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1509ms total)
T67BC 037:567 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1510ms total)
T67BC 037:570 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1511ms total)
T67BC 037:571 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1512ms total)
T67BC 037:572 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1513ms total)
T67BC 037:573 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1514ms total)
T67BC 037:574 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 40  returns 0x04 (0001ms, 1515ms total)
T67BC 037:576 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1516ms total)
T67BC 037:577 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0002ms, 1518ms total)
T67BC 037:579 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1519ms total)
T67BC 037:581 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0000ms, 1519ms total)
T67BC 037:582 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0000ms, 1520ms total)
T67BC 037:583 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0000ms, 1521ms total)
T67BC 037:584 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1522ms total)
T67BC 037:585 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0000ms, 1522ms total)
T67BC 037:585 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1523ms total)
T67BC 037:586 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1524ms total)
T67BC 037:587 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1525ms total)
T67BC 037:588 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1526ms total)
T67BC 037:589 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0002ms, 1528ms total)
T67BC 037:591 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1529ms total)
T67BC 037:592 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0000ms, 1529ms total)
T67BC 037:592 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1530ms total)
T67BC 037:594 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 1530ms total)
T67BC 037:594 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0002ms, 1532ms total)
T96A8 037:596 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T96A8 037:698 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T96A8 037:799 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T96A8 037:901 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T96A8 038:002 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T67BC 038:105 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0002ms, 1534ms total)
T67BC 038:107 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1535ms total)
T67BC 038:108 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1536ms total)
T67BC 038:112 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1537ms total)
T67BC 038:113 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1538ms total)
T67BC 038:114 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1539ms total)
T67BC 038:115 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0002ms, 1541ms total)
T67BC 038:117 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0001ms, 1542ms total)
T67BC 038:119 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0000ms, 1542ms total)
T67BC 038:119 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1543ms total)
T67BC 038:121 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1544ms total)
T67BC 038:122 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1545ms total)
T67BC 038:123 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1546ms total)
T67BC 038:124 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1547ms total)
T67BC 038:125 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1548ms total)
T67BC 038:126 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1549ms total)
T67BC 038:127 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1550ms total)
T67BC 038:128 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1551ms total)
T67BC 038:129 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1552ms total)
T67BC 038:130 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1553ms total)
T67BC 038:131 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1554ms total)
T67BC 038:132 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1555ms total)
T67BC 038:133 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1556ms total)
T67BC 038:134 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1557ms total)
T67BC 038:135 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 1559ms total)
T67BC 038:137 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1560ms total)
T96A8 038:138 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T96A8 038:240 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T96A8 038:341 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T96A8 038:443 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T96A8 038:546 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T67BC 038:653 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1561ms total)
T67BC 038:654 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1562ms total)
T67BC 038:655 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1563ms total)
T67BC 038:658 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1565ms total)
T67BC 038:659 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1566ms total)
T67BC 038:660 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 1566ms total)
T67BC 038:660 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1567ms total)
T67BC 038:661 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0002ms, 1569ms total)
T67BC 038:663 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1571ms total)
T67BC 038:665 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1572ms total)
T67BC 038:667 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1573ms total)
T67BC 038:668 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1574ms total)
T67BC 038:670 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0000ms, 1575ms total)
T67BC 038:671 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0002ms, 1577ms total)
T67BC 038:673 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1578ms total)
T67BC 038:674 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1579ms total)
T67BC 038:675 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1580ms total)
T67BC 038:676 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1581ms total)
T67BC 038:677 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1582ms total)
T67BC 038:678 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T67BC 038:679 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1584ms total)
T67BC 038:680 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1585ms total)
T67BC 038:681 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1586ms total)
T67BC 038:682 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1587ms total)
T67BC 038:683 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1588ms total)
T67BC 038:684 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1589ms total)
T96A8 038:686 JLINK_IsHalted()  returns TRUE (0004ms, 1593ms total)
T96A8 038:690 JLINK_Halt()  returns 0x00 (0000ms, 1589ms total)
T96A8 038:690 JLINK_IsHalted()  returns TRUE (0000ms, 1589ms total)
T96A8 038:690 JLINK_IsHalted()  returns TRUE (0000ms, 1589ms total)
T96A8 038:690 JLINK_IsHalted()  returns TRUE (0000ms, 1589ms total)
T96A8 038:690 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1589ms total)
T96A8 038:690 JLINK_ReadReg(XPSR)  returns 0x21000017 (0000ms, 1589ms total)
T96A8 038:690 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 1589ms total)
T96A8 038:690 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1590ms total)
T96A8 038:691 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1591ms total)
T96A8 038:692 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1592ms total)
T96A8 038:693 JLINK_ReadReg(R0)  returns 0x7C000000 (0000ms, 1592ms total)
T96A8 038:693 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 1592ms total)
T96A8 038:693 JLINK_ReadReg(R2)  returns 0x00001018 (0000ms, 1592ms total)
T96A8 038:693 JLINK_ReadReg(R3)  returns 0x00001008 (0000ms, 1592ms total)
T96A8 038:694 JLINK_ReadReg(R4)  returns 0x020194CA (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R5)  returns 0x00020000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R6)  returns 0x00000001 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R7)  returns 0x40800000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R13 (SP))  returns 0x0202F7A0 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R14)  returns 0x000024DB (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(XPSR)  returns 0x21000017 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(MSP)  returns 0x0202F7A0 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1593ms total)
T96A8 038:694 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1593ms total)
T67BC 038:695 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 1594ms total)
T67BC 038:696 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 44 93 01 02  returns 0x04 (0000ms, 1594ms total)
T67BC 038:696 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0002ms, 1596ms total)
T67BC 038:698 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 1597ms total)
T67BC 038:699 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: FA 39 00 00  returns 0x04 (0002ms, 1599ms total)
T67BC 038:701 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 00 02 00 61  returns 0x04 (0000ms, 1599ms total)
T67BC 038:701 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: A1 39 00 00  returns 0x04 (0001ms, 1600ms total)
T67BC 038:702 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0001ms, 1601ms total)
T67BC 038:703 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 08 95 01 02  returns 0x04 (0001ms, 1602ms total)
T67BC 038:704 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 00 04 00 00  returns 0x04 (0001ms, 1603ms total)
T67BC 038:705 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1604ms total)
T67BC 038:706 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 80 40  returns 0x04 (0002ms, 1606ms total)
T67BC 038:708 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0000ms, 1606ms total)
T67BC 038:711 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1607ms total)
T67BC 038:712 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1608ms total)
T67BC 038:713 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1609ms total)
T67BC 038:716 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1610ms total)
T67BC 038:717 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1611ms total)
T67BC 038:718 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1612ms total)
T67BC 038:719 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1613ms total)
T67BC 038:720 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0002ms, 1615ms total)
T67BC 038:722 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1617ms total)
T67BC 038:724 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1618ms total)
T67BC 038:726 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1619ms total)
T67BC 038:727 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1620ms total)
T67BC 038:728 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1621ms total)
T67BC 038:729 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1622ms total)
T67BC 038:730 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T67BC 038:731 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1624ms total)
T67BC 038:732 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1625ms total)
T67BC 038:733 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1626ms total)
T67BC 038:734 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1627ms total)
T67BC 038:735 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1628ms total)
T67BC 038:736 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1629ms total)
T67BC 038:737 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1630ms total)
T67BC 038:738 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1631ms total)
T67BC 038:739 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0002ms, 1633ms total)
T67BC 038:741 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 1633ms total)
T67BC 038:741 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1634ms total)
T96A8 041:062 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007080) -- Updating C cache (64 bytes @ 0x00007080) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 10 BD  returns 0x02 (0001ms, 1635ms total)
T96A8 041:063 JLINK_Step() -- Read from C cache (2 bytes @ 0x000070A0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00 (0008ms, 1643ms total)
T96A8 041:071 JLINK_ReadReg(R15 (PC))  returns 0x00001A00 (0000ms, 1643ms total)
T96A8 041:071 JLINK_ReadReg(XPSR)  returns 0x21000017 (0000ms, 1643ms total)
T96A8 041:071 JLINK_SetBPEx(Addr = 0x000070A0, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 1643ms total)
T96A8 041:071 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 1647ms total)
T96A8 041:176 JLINK_IsHalted()  returns FALSE (0001ms, 1648ms total)
T96A8 041:279 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T96A8 041:380 JLINK_IsHalted()  returns FALSE (0001ms, 1648ms total)
T96A8 041:482 JLINK_IsHalted()  returns FALSE (0001ms, 1648ms total)
T67BC 041:586 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1648ms total)
T67BC 041:587 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 1650ms total)
T67BC 041:589 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1651ms total)
T67BC 041:593 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 1651ms total)
T67BC 041:593 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0002ms, 1653ms total)
T67BC 041:595 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1654ms total)
T67BC 041:597 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1655ms total)
T67BC 041:598 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1656ms total)
T67BC 041:599 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1657ms total)
T67BC 041:601 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1658ms total)
T67BC 041:602 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1660ms total)
T67BC 041:604 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0000ms, 1660ms total)
T67BC 041:604 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1661ms total)
T67BC 041:605 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1662ms total)
T67BC 041:606 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1663ms total)
T67BC 041:607 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T67BC 041:608 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1665ms total)
T67BC 041:609 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1666ms total)
T67BC 041:610 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1667ms total)
T67BC 041:611 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1668ms total)
T67BC 041:612 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1669ms total)
T67BC 041:613 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1670ms total)
T67BC 041:614 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1671ms total)
T67BC 041:616 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1672ms total)
T67BC 041:617 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1673ms total)
T67BC 041:618 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1674ms total)
T96A8 041:619 JLINK_IsHalted()  returns FALSE (0002ms, 1676ms total)
T96A8 041:721 JLINK_IsHalted()  returns FALSE (0001ms, 1675ms total)
T96A8 041:822 JLINK_IsHalted()  returns FALSE (0001ms, 1675ms total)
T96A8 041:924 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T96A8 042:025 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T67BC 042:129 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1675ms total)
T67BC 042:130 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1676ms total)
T67BC 042:131 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1677ms total)
T67BC 042:133 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1678ms total)
T67BC 042:134 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0002ms, 1680ms total)
T67BC 042:136 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1681ms total)
T67BC 042:138 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0000ms, 1681ms total)
T67BC 042:139 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1681ms total)
T67BC 042:140 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1683ms total)
T67BC 042:142 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1684ms total)
T67BC 042:143 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1686ms total)
T67BC 042:145 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1687ms total)
T67BC 042:146 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1688ms total)
T67BC 042:147 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T67BC 042:148 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1690ms total)
T67BC 042:149 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1691ms total)
T67BC 042:150 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1692ms total)
T67BC 042:151 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T67BC 042:152 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1694ms total)
T67BC 042:153 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1695ms total)
T67BC 042:154 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0000ms, 1695ms total)
T67BC 042:156 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1696ms total)
T67BC 042:157 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1697ms total)
T67BC 042:158 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1698ms total)
T67BC 042:159 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1699ms total)
T67BC 042:160 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1700ms total)
T96A8 042:161 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T96A8 042:263 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T96A8 042:365 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T96A8 042:466 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T96A8 042:569 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T67BC 042:673 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1701ms total)
T67BC 042:674 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1702ms total)
T67BC 042:675 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1703ms total)
T67BC 042:677 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1704ms total)
T67BC 042:678 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1705ms total)
T67BC 042:679 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1706ms total)
T67BC 042:681 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1707ms total)
T67BC 042:682 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1708ms total)
T67BC 042:683 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1710ms total)
T67BC 042:685 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1711ms total)
T67BC 042:686 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1713ms total)
T67BC 042:688 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1714ms total)
T67BC 042:689 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0001ms, 1715ms total)
T67BC 042:690 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1716ms total)
T67BC 042:691 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1717ms total)
T67BC 042:692 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1718ms total)
T67BC 042:693 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1719ms total)
T67BC 042:694 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0000ms, 1719ms total)
T67BC 042:694 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0002ms, 1721ms total)
T67BC 042:696 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T67BC 042:697 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1723ms total)
T67BC 042:698 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1724ms total)
T67BC 042:699 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1725ms total)
T67BC 042:700 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1726ms total)
T67BC 042:701 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 1728ms total)
T67BC 042:703 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1729ms total)
T96A8 042:704 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T96A8 042:806 JLINK_IsHalted()  returns FALSE (0000ms, 1729ms total)
T96A8 042:907 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T96A8 043:009 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T96A8 043:110 JLINK_IsHalted()  returns FALSE (0000ms, 1729ms total)
T67BC 043:215 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0002ms, 1731ms total)
T67BC 043:217 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0000ms, 1731ms total)
T67BC 043:218 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1733ms total)
T67BC 043:220 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1734ms total)
T67BC 043:221 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1735ms total)
T67BC 043:222 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1736ms total)
T67BC 043:227 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1737ms total)
T67BC 043:228 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 00  returns 0x04 (0001ms, 1738ms total)
T67BC 043:230 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1739ms total)
T67BC 043:233 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1741ms total)
T67BC 043:234 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1743ms total)
T67BC 043:236 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1744ms total)
T67BC 043:237 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1745ms total)
T67BC 043:238 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1746ms total)
T67BC 043:239 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T67BC 043:240 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1748ms total)
T67BC 043:241 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1749ms total)
T67BC 043:242 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1750ms total)
T67BC 043:243 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1751ms total)
T67BC 043:244 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1752ms total)
T67BC 043:245 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1753ms total)
T67BC 043:247 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1754ms total)
T67BC 043:248 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1755ms total)
T67BC 043:249 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1756ms total)
T67BC 043:250 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1757ms total)
T67BC 043:251 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1758ms total)
T96A8 043:252 JLINK_IsHalted()  returns TRUE (0004ms, 1762ms total)
T96A8 043:256 JLINK_Halt()  returns 0x00 (0000ms, 1758ms total)
T96A8 043:256 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T96A8 043:256 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T96A8 043:256 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T96A8 043:256 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1758ms total)
T96A8 043:256 JLINK_ReadReg(XPSR)  returns 0x61000017 (0000ms, 1758ms total)
T96A8 043:256 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 1758ms total)
T96A8 043:256 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1759ms total)
T96A8 043:257 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1760ms total)
T96A8 043:258 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1761ms total)
T96A8 043:259 JLINK_ReadReg(R0)  returns 0x02019508 (0000ms, 1761ms total)
T96A8 043:259 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 1761ms total)
T96A8 043:260 JLINK_ReadReg(R2)  returns 0x00001018 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R3)  returns 0x00001008 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R4)  returns 0x020194CA (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R5)  returns 0x00020000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R6)  returns 0x00000001 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R7)  returns 0x40E00000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R13 (SP))  returns 0x0202F7A0 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R14)  returns 0x000024DB (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(XPSR)  returns 0x61000017 (0000ms, 1762ms total)
T96A8 043:260 JLINK_ReadReg(MSP)  returns 0x0202F7A0 (0001ms, 1763ms total)
T96A8 043:261 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1763ms total)
T96A8 043:261 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1763ms total)
T67BC 043:261 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 1764ms total)
T67BC 043:262 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 44 93 01 02  returns 0x04 (0001ms, 1765ms total)
T67BC 043:263 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 1766ms total)
T67BC 043:264 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 1767ms total)
T67BC 043:265 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: A0 39 00 00  returns 0x04 (0001ms, 1768ms total)
T67BC 043:266 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 00 00 00 01  returns 0x04 (0002ms, 1770ms total)
T67BC 043:268 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: A1 39 00 00  returns 0x04 (0001ms, 1771ms total)
T67BC 043:269 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0001ms, 1772ms total)
T67BC 043:270 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 08 95 01 02  returns 0x04 (0001ms, 1773ms total)
T67BC 043:271 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 78 00 00 00  returns 0x04 (0001ms, 1774ms total)
T67BC 043:272 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1775ms total)
T67BC 043:273 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1776ms total)
T67BC 043:274 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 1777ms total)
T67BC 043:277 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1778ms total)
T67BC 043:278 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1779ms total)
T67BC 043:279 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1780ms total)
T67BC 043:282 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1781ms total)
T67BC 043:283 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1782ms total)
T67BC 043:284 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1783ms total)
T67BC 043:287 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1784ms total)
T67BC 043:288 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 00  returns 0x04 (0000ms, 1784ms total)
T67BC 043:290 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1785ms total)
T67BC 043:292 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1786ms total)
T67BC 043:293 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1787ms total)
T67BC 043:294 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1788ms total)
T67BC 043:295 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0002ms, 1790ms total)
T67BC 043:297 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1791ms total)
T67BC 043:298 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1792ms total)
T67BC 043:299 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1793ms total)
T67BC 043:300 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1794ms total)
T67BC 043:301 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1795ms total)
T67BC 043:302 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1796ms total)
T67BC 043:303 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1797ms total)
T67BC 043:304 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1798ms total)
T67BC 043:305 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1799ms total)
T67BC 043:306 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1800ms total)
T67BC 043:307 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1801ms total)
T67BC 043:308 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1802ms total)
T67BC 043:309 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1803ms total)
T96A8 045:749 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007080) -- Updating C cache (64 bytes @ 0x00007080) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 10 BD  returns 0x02 (0001ms, 1804ms total)
T96A8 045:750 JLINK_Step() -- Read from C cache (2 bytes @ 0x000070A0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00 (0008ms, 1812ms total)
T96A8 045:758 JLINK_ReadReg(R15 (PC))  returns 0x00001A00 (0000ms, 1812ms total)
T96A8 045:758 JLINK_ReadReg(XPSR)  returns 0x61000017 (0000ms, 1812ms total)
T96A8 045:758 JLINK_SetBPEx(Addr = 0x000070A0, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 1812ms total)
T96A8 045:758 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0005ms, 1817ms total)
T96A8 045:864 JLINK_IsHalted()  returns FALSE (0001ms, 1818ms total)
T96A8 045:965 JLINK_IsHalted()  returns FALSE (0001ms, 1818ms total)
T96A8 046:067 JLINK_IsHalted()  returns FALSE (0000ms, 1817ms total)
T96A8 046:168 JLINK_IsHalted()  returns FALSE (0000ms, 1817ms total)
T67BC 046:273 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1818ms total)
T67BC 046:274 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1819ms total)
T67BC 046:275 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1820ms total)
T67BC 046:281 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0002ms, 1822ms total)
T67BC 046:283 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1823ms total)
T67BC 046:284 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1824ms total)
T67BC 046:286 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1825ms total)
T67BC 046:287 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1825ms total)
T67BC 046:289 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1826ms total)
T67BC 046:291 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1827ms total)
T67BC 046:292 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1828ms total)
T67BC 046:293 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1829ms total)
T67BC 046:294 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1830ms total)
T67BC 046:295 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0000ms, 1830ms total)
T67BC 046:295 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0002ms, 1832ms total)
T67BC 046:297 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T67BC 046:298 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1834ms total)
T67BC 046:299 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1835ms total)
T67BC 046:300 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1836ms total)
T67BC 046:301 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1837ms total)
T67BC 046:302 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1838ms total)
T67BC 046:303 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1839ms total)
T67BC 046:304 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1840ms total)
T67BC 046:305 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1841ms total)
T67BC 046:306 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1842ms total)
T67BC 046:307 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1843ms total)
T96A8 046:309 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T96A8 046:411 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T96A8 046:513 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T96A8 046:614 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T96A8 046:715 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T67BC 046:820 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1844ms total)
T67BC 046:821 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1845ms total)
T67BC 046:822 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1846ms total)
T67BC 046:824 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1847ms total)
T67BC 046:825 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1848ms total)
T67BC 046:826 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1849ms total)
T67BC 046:828 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0000ms, 1849ms total)
T67BC 046:828 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 3F  returns 0x04 (0002ms, 1851ms total)
T67BC 046:831 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1852ms total)
T67BC 046:832 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1853ms total)
T67BC 046:833 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1854ms total)
T67BC 046:834 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0002ms, 1856ms total)
T67BC 046:836 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1857ms total)
T67BC 046:837 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1858ms total)
T67BC 046:838 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1859ms total)
T67BC 046:839 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1860ms total)
T67BC 046:840 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0000ms, 1860ms total)
T67BC 046:840 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0002ms, 1862ms total)
T67BC 046:842 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T67BC 046:843 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1864ms total)
T67BC 046:844 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1865ms total)
T67BC 046:845 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1866ms total)
T67BC 046:846 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1867ms total)
T67BC 046:848 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1868ms total)
T67BC 046:849 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1869ms total)
T67BC 046:850 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1870ms total)
T96A8 046:851 JLINK_IsHalted()  returns FALSE (0001ms, 1871ms total)
T96A8 046:953 JLINK_IsHalted()  returns FALSE (0001ms, 1871ms total)
T96A8 047:054 JLINK_IsHalted()  returns FALSE (0000ms, 1870ms total)
T96A8 047:156 JLINK_IsHalted()  returns FALSE (0001ms, 1871ms total)
T96A8 047:258 JLINK_IsHalted()  returns FALSE (0001ms, 1871ms total)
T67BC 047:365 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1871ms total)
T67BC 047:366 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1872ms total)
T67BC 047:367 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1873ms total)
T67BC 047:371 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1874ms total)
T67BC 047:372 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1875ms total)
T67BC 047:373 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1876ms total)
T67BC 047:374 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1877ms total)
T67BC 047:375 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 1878ms total)
T67BC 047:377 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1879ms total)
T67BC 047:379 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1880ms total)
T67BC 047:380 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1881ms total)
T67BC 047:381 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1882ms total)
T67BC 047:382 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1883ms total)
T67BC 047:383 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1884ms total)
T67BC 047:384 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1885ms total)
T67BC 047:385 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1886ms total)
T67BC 047:386 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1887ms total)
T67BC 047:387 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1888ms total)
T67BC 047:388 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1889ms total)
T67BC 047:389 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1890ms total)
T67BC 047:390 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1891ms total)
T67BC 047:391 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1892ms total)
T67BC 047:392 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1893ms total)
T67BC 047:393 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1894ms total)
T67BC 047:394 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1895ms total)
T67BC 047:395 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1896ms total)
T96A8 047:396 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T96A8 047:498 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T96A8 047:599 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T96A8 047:701 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T96A8 047:803 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T67BC 047:910 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1897ms total)
T67BC 047:911 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1898ms total)
T67BC 047:912 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1899ms total)
T67BC 047:914 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1900ms total)
T67BC 047:915 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1901ms total)
T67BC 047:916 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1902ms total)
T67BC 047:918 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1903ms total)
T67BC 047:919 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 40  returns 0x04 (0001ms, 1904ms total)
T67BC 047:921 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1905ms total)
T67BC 047:922 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1906ms total)
T67BC 047:924 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1907ms total)
T67BC 047:925 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1908ms total)
T67BC 047:926 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1909ms total)
T67BC 047:927 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1910ms total)
T67BC 047:928 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1911ms total)
T67BC 047:929 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1912ms total)
T67BC 047:930 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1913ms total)
T67BC 047:931 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1914ms total)
T67BC 047:932 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1915ms total)
T67BC 047:933 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1916ms total)
T67BC 047:934 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1917ms total)
T67BC 047:935 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1918ms total)
T67BC 047:936 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1919ms total)
T67BC 047:937 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1920ms total)
T67BC 047:938 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 1922ms total)
T67BC 047:940 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1923ms total)
T96A8 047:941 JLINK_IsHalted()  returns FALSE (0001ms, 1924ms total)
T96A8 048:042 JLINK_IsHalted()  returns FALSE (0001ms, 1924ms total)
T96A8 048:145 JLINK_IsHalted()  returns FALSE (0001ms, 1924ms total)
T96A8 048:247 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T96A8 048:348 JLINK_IsHalted()  returns FALSE (0001ms, 1924ms total)
T67BC 048:453 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1924ms total)
T67BC 048:454 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1925ms total)
T67BC 048:455 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1926ms total)
T67BC 048:457 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1927ms total)
T67BC 048:458 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1928ms total)
T67BC 048:459 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1929ms total)
T67BC 048:460 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1930ms total)
T67BC 048:461 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 40  returns 0x04 (0001ms, 1931ms total)
T67BC 048:464 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1933ms total)
T67BC 048:467 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1933ms total)
T67BC 048:468 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1934ms total)
T67BC 048:469 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0002ms, 1936ms total)
T67BC 048:471 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1937ms total)
T67BC 048:472 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1938ms total)
T67BC 048:473 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1939ms total)
T67BC 048:474 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0000ms, 1939ms total)
T67BC 048:474 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1940ms total)
T67BC 048:475 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1941ms total)
T67BC 048:476 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1942ms total)
T67BC 048:477 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1943ms total)
T67BC 048:478 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1944ms total)
T67BC 048:480 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1945ms total)
T67BC 048:481 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1946ms total)
T67BC 048:482 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1947ms total)
T67BC 048:483 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 1949ms total)
T67BC 048:485 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1950ms total)
T96A8 048:486 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T96A8 048:587 JLINK_IsHalted()  returns FALSE (0002ms, 1952ms total)
T96A8 048:689 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T96A8 048:791 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T96A8 048:893 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T67BC 049:001 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1951ms total)
T67BC 049:002 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 1952ms total)
T67BC 049:003 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1953ms total)
T67BC 049:005 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1954ms total)
T67BC 049:006 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1955ms total)
T67BC 049:007 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1956ms total)
T67BC 049:009 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1957ms total)
T67BC 049:010 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 40 40  returns 0x04 (0000ms, 1957ms total)
T67BC 049:012 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1959ms total)
T67BC 049:014 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1960ms total)
T67BC 049:015 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1962ms total)
T67BC 049:017 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1963ms total)
T67BC 049:018 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1964ms total)
T67BC 049:019 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 1965ms total)
T67BC 049:020 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 1966ms total)
T67BC 049:021 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1967ms total)
T67BC 049:022 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T67BC 049:023 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1969ms total)
T67BC 049:024 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1970ms total)
T67BC 049:025 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1971ms total)
T67BC 049:026 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 1972ms total)
T67BC 049:027 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 1973ms total)
T67BC 049:028 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 1974ms total)
T67BC 049:029 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1975ms total)
T67BC 049:030 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 1976ms total)
T67BC 049:031 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 1977ms total)
T96A8 049:032 JLINK_IsHalted()  returns FALSE (0001ms, 1978ms total)
T96A8 049:134 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T96A8 049:236 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T96A8 049:338 JLINK_IsHalted()  returns FALSE (0001ms, 1978ms total)
T96A8 049:439 JLINK_IsHalted()  returns FALSE (0002ms, 1979ms total)
T67BC 049:545 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 1978ms total)
T67BC 049:546 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 1980ms total)
T67BC 049:548 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 1980ms total)
T67BC 049:550 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 1981ms total)
T67BC 049:551 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 1982ms total)
T67BC 049:552 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 1983ms total)
T67BC 049:553 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1984ms total)
T67BC 049:554 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 80 40  returns 0x04 (0001ms, 1985ms total)
T67BC 049:557 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1986ms total)
T67BC 049:559 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1987ms total)
T67BC 049:560 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1989ms total)
T67BC 049:562 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 1990ms total)
T67BC 049:563 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 1991ms total)
T67BC 049:564 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0000ms, 1991ms total)
T67BC 049:564 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0002ms, 1993ms total)
T67BC 049:566 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 1994ms total)
T67BC 049:567 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 1995ms total)
T67BC 049:568 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 1996ms total)
T67BC 049:569 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 1997ms total)
T67BC 049:570 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 1998ms total)
T67BC 049:571 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0002ms, 2000ms total)
T67BC 049:573 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2001ms total)
T67BC 049:574 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2002ms total)
T67BC 049:575 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2003ms total)
T67BC 049:576 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 2003ms total)
T67BC 049:576 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2004ms total)
T96A8 049:577 JLINK_IsHalted()  returns FALSE (0002ms, 2006ms total)
T96A8 049:680 JLINK_IsHalted()  returns FALSE (0001ms, 2005ms total)
T96A8 049:781 JLINK_IsHalted()  returns FALSE (0000ms, 2004ms total)
T96A8 049:882 JLINK_IsHalted()  returns FALSE (0001ms, 2005ms total)
T96A8 049:984 JLINK_IsHalted()  returns FALSE (0001ms, 2005ms total)
T67BC 050:090 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2005ms total)
T67BC 050:091 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2006ms total)
T67BC 050:092 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2007ms total)
T67BC 050:094 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2008ms total)
T67BC 050:095 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2009ms total)
T67BC 050:096 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2010ms total)
T67BC 050:097 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2011ms total)
T67BC 050:098 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2012ms total)
T67BC 050:100 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2013ms total)
T67BC 050:103 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2014ms total)
T67BC 050:104 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2015ms total)
T67BC 050:105 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2016ms total)
T67BC 050:106 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2017ms total)
T67BC 050:107 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2018ms total)
T67BC 050:108 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2019ms total)
T67BC 050:109 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2020ms total)
T67BC 050:110 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2021ms total)
T67BC 050:111 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2022ms total)
T67BC 050:112 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2023ms total)
T67BC 050:113 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2024ms total)
T67BC 050:114 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2025ms total)
T67BC 050:115 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2026ms total)
T67BC 050:116 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2027ms total)
T67BC 050:119 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2028ms total)
T67BC 050:120 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 2030ms total)
T67BC 050:122 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2031ms total)
T96A8 050:123 JLINK_IsHalted()  returns FALSE (0001ms, 2032ms total)
T96A8 050:224 JLINK_IsHalted()  returns FALSE (0001ms, 2032ms total)
T96A8 050:325 JLINK_IsHalted()  returns FALSE (0001ms, 2032ms total)
T96A8 050:427 JLINK_IsHalted()  returns FALSE (0001ms, 2032ms total)
T96A8 050:530 JLINK_IsHalted()  returns FALSE (0001ms, 2032ms total)
T67BC 050:639 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2032ms total)
T67BC 050:640 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2033ms total)
T67BC 050:641 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2034ms total)
T67BC 050:644 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2035ms total)
T67BC 050:645 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2036ms total)
T67BC 050:646 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2037ms total)
T67BC 050:647 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2038ms total)
T67BC 050:648 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2039ms total)
T67BC 050:651 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2040ms total)
T67BC 050:652 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2041ms total)
T67BC 050:654 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2042ms total)
T67BC 050:655 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2043ms total)
T67BC 050:656 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2044ms total)
T67BC 050:657 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2045ms total)
T67BC 050:658 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2046ms total)
T67BC 050:659 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2047ms total)
T67BC 050:660 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2048ms total)
T67BC 050:661 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2049ms total)
T67BC 050:662 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2050ms total)
T67BC 050:663 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2051ms total)
T67BC 050:664 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2052ms total)
T67BC 050:665 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2053ms total)
T67BC 050:666 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2054ms total)
T67BC 050:667 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2055ms total)
T67BC 050:668 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2056ms total)
T67BC 050:669 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2057ms total)
T96A8 050:670 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T96A8 050:772 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T96A8 050:873 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T96A8 050:974 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T96A8 051:076 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T67BC 051:180 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2058ms total)
T67BC 051:181 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 2060ms total)
T67BC 051:183 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2061ms total)
T67BC 051:185 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2062ms total)
T67BC 051:186 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2063ms total)
T67BC 051:187 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2064ms total)
T67BC 051:188 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2065ms total)
T67BC 051:189 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2066ms total)
T67BC 051:191 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2067ms total)
T67BC 051:193 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2068ms total)
T67BC 051:194 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2069ms total)
T67BC 051:195 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2070ms total)
T67BC 051:196 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2071ms total)
T67BC 051:197 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2072ms total)
T67BC 051:198 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2073ms total)
T67BC 051:199 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2074ms total)
T67BC 051:200 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2075ms total)
T67BC 051:201 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2076ms total)
T67BC 051:202 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2077ms total)
T67BC 051:203 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2078ms total)
T67BC 051:204 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2079ms total)
T67BC 051:208 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2080ms total)
T67BC 051:209 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2081ms total)
T67BC 051:210 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2082ms total)
T67BC 051:211 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2083ms total)
T67BC 051:212 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2084ms total)
T96A8 051:213 JLINK_IsHalted()  returns FALSE (0001ms, 2085ms total)
T96A8 051:316 JLINK_IsHalted()  returns FALSE (0001ms, 2085ms total)
T96A8 051:417 JLINK_IsHalted()  returns FALSE (0001ms, 2085ms total)
T96A8 051:519 JLINK_IsHalted()  returns FALSE (0001ms, 2085ms total)
T96A8 051:621 JLINK_IsHalted()  returns FALSE (0001ms, 2085ms total)
T67BC 051:726 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2085ms total)
T67BC 051:727 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2086ms total)
T67BC 051:728 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 2086ms total)
T67BC 051:729 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2087ms total)
T67BC 051:730 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2088ms total)
T67BC 051:731 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2089ms total)
T67BC 051:732 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0002ms, 2091ms total)
T67BC 051:734 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 C0 40  returns 0x04 (0000ms, 2091ms total)
T67BC 051:737 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2093ms total)
T67BC 051:739 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2093ms total)
T67BC 051:740 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2095ms total)
T67BC 051:742 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2096ms total)
T67BC 051:743 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2097ms total)
T67BC 051:744 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2098ms total)
T67BC 051:745 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2099ms total)
T67BC 051:746 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2100ms total)
T67BC 051:747 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2101ms total)
T67BC 051:748 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0000ms, 2101ms total)
T67BC 051:748 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2102ms total)
T67BC 051:749 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2103ms total)
T67BC 051:750 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2104ms total)
T67BC 051:752 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0000ms, 2104ms total)
T67BC 051:753 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0000ms, 2104ms total)
T67BC 051:754 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2106ms total)
T67BC 051:755 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2107ms total)
T67BC 051:756 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2108ms total)
T96A8 051:757 JLINK_IsHalted()  returns FALSE (0001ms, 2109ms total)
T96A8 051:860 JLINK_IsHalted()  returns FALSE (0001ms, 2109ms total)
T96A8 051:962 JLINK_IsHalted()  returns FALSE (0002ms, 2110ms total)
T96A8 052:064 JLINK_IsHalted()  returns FALSE (0001ms, 2109ms total)
T96A8 052:166 JLINK_IsHalted()  returns FALSE (0000ms, 2108ms total)
T67BC 052:275 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2109ms total)
T67BC 052:276 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2110ms total)
T67BC 052:277 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0002ms, 2112ms total)
T67BC 052:280 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2113ms total)
T67BC 052:281 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2114ms total)
T67BC 052:282 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2115ms total)
T67BC 052:283 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2116ms total)
T67BC 052:284 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2117ms total)
T67BC 052:286 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2118ms total)
T67BC 052:287 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2119ms total)
T67BC 052:289 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2120ms total)
T67BC 052:290 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2121ms total)
T67BC 052:291 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2122ms total)
T67BC 052:292 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2123ms total)
T67BC 052:293 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0002ms, 2125ms total)
T67BC 052:295 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2126ms total)
T67BC 052:296 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2127ms total)
T67BC 052:297 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2128ms total)
T67BC 052:298 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2129ms total)
T67BC 052:299 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2130ms total)
T67BC 052:300 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0000ms, 2130ms total)
T67BC 052:300 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0002ms, 2132ms total)
T67BC 052:302 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2133ms total)
T67BC 052:303 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2134ms total)
T67BC 052:304 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2135ms total)
T67BC 052:305 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2136ms total)
T96A8 052:306 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T96A8 052:408 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T96A8 052:510 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T96A8 052:612 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T96A8 052:713 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T67BC 052:817 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2137ms total)
T67BC 052:818 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2138ms total)
T67BC 052:819 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2139ms total)
T67BC 052:821 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2140ms total)
T67BC 052:822 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2141ms total)
T67BC 052:823 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2142ms total)
T67BC 052:824 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0002ms, 2144ms total)
T67BC 052:826 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2145ms total)
T67BC 052:829 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2146ms total)
T67BC 052:831 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2147ms total)
T67BC 052:833 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2148ms total)
T67BC 052:834 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2149ms total)
T67BC 052:835 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2150ms total)
T67BC 052:836 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2151ms total)
T67BC 052:837 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2152ms total)
T67BC 052:838 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2153ms total)
T67BC 052:839 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2154ms total)
T67BC 052:840 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2155ms total)
T67BC 052:841 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2156ms total)
T67BC 052:842 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2157ms total)
T67BC 052:843 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2158ms total)
T67BC 052:844 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2159ms total)
T67BC 052:845 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2160ms total)
T67BC 052:847 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0000ms, 2160ms total)
T67BC 052:848 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0000ms, 2160ms total)
T67BC 052:849 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0000ms, 2161ms total)
T96A8 052:850 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T96A8 052:952 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T96A8 053:053 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T96A8 053:155 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T96A8 053:257 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T67BC 053:364 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2162ms total)
T67BC 053:365 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2163ms total)
T67BC 053:366 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2164ms total)
T67BC 053:368 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0002ms, 2166ms total)
T67BC 053:370 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0000ms, 2166ms total)
T67BC 053:370 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2167ms total)
T67BC 053:373 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2168ms total)
T67BC 053:374 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 41  returns 0x04 (0001ms, 2169ms total)
T67BC 053:375 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2171ms total)
T67BC 053:377 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2172ms total)
T67BC 053:378 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2173ms total)
T67BC 053:379 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2174ms total)
T67BC 053:380 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2175ms total)
T67BC 053:381 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0002ms, 2177ms total)
T67BC 053:383 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2178ms total)
T67BC 053:384 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2179ms total)
T67BC 053:386 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2180ms total)
T67BC 053:387 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0000ms, 2180ms total)
T67BC 053:387 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2181ms total)
T67BC 053:388 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2182ms total)
T67BC 053:389 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2183ms total)
T67BC 053:390 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2184ms total)
T67BC 053:391 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2185ms total)
T67BC 053:392 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2186ms total)
T67BC 053:393 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2187ms total)
T67BC 053:395 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0000ms, 2187ms total)
T96A8 053:397 JLINK_IsHalted()  returns FALSE (0000ms, 2187ms total)
T96A8 053:498 JLINK_IsHalted()  returns FALSE (0000ms, 2187ms total)
T96A8 053:599 JLINK_IsHalted()  returns FALSE (0000ms, 2187ms total)
T96A8 053:700 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T96A8 053:802 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T67BC 053:908 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0002ms, 2189ms total)
T67BC 053:910 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2190ms total)
T67BC 053:911 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2191ms total)
T67BC 053:913 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2192ms total)
T67BC 053:914 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2193ms total)
T67BC 053:915 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2194ms total)
T67BC 053:916 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2195ms total)
T67BC 053:917 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 00 41  returns 0x04 (0001ms, 2196ms total)
T67BC 053:921 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2197ms total)
T67BC 053:923 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2198ms total)
T67BC 053:924 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2199ms total)
T67BC 053:925 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2200ms total)
T67BC 053:926 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2201ms total)
T67BC 053:927 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0002ms, 2203ms total)
T67BC 053:929 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2204ms total)
T67BC 053:930 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2205ms total)
T67BC 053:931 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2206ms total)
T67BC 053:932 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2207ms total)
T67BC 053:933 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2208ms total)
T67BC 053:934 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2209ms total)
T67BC 053:935 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2210ms total)
T67BC 053:936 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2211ms total)
T67BC 053:937 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2212ms total)
T67BC 053:938 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2213ms total)
T67BC 053:939 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0002ms, 2215ms total)
T67BC 053:941 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2216ms total)
T96A8 053:942 JLINK_IsHalted()  returns FALSE (0001ms, 2217ms total)
T96A8 054:044 JLINK_IsHalted()  returns FALSE (0001ms, 2217ms total)
T96A8 054:146 JLINK_IsHalted()  returns FALSE (0001ms, 2217ms total)
T96A8 054:248 JLINK_IsHalted()  returns FALSE (0000ms, 2216ms total)
T96A8 054:350 JLINK_IsHalted()  returns FALSE (0000ms, 2216ms total)
T67BC 054:458 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2217ms total)
T67BC 054:459 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 2219ms total)
T67BC 054:461 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0000ms, 2219ms total)
T67BC 054:463 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2220ms total)
T67BC 054:464 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2221ms total)
T67BC 054:465 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2222ms total)
T67BC 054:466 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2223ms total)
T67BC 054:467 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 10 41  returns 0x04 (0001ms, 2224ms total)
T67BC 054:469 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2226ms total)
T67BC 054:471 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2227ms total)
T67BC 054:472 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2229ms total)
T67BC 054:474 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2230ms total)
T67BC 054:475 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2231ms total)
T67BC 054:476 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2232ms total)
T67BC 054:477 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0000ms, 2232ms total)
T67BC 054:477 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2233ms total)
T67BC 054:478 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2234ms total)
T67BC 054:479 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2235ms total)
T67BC 054:480 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2236ms total)
T67BC 054:481 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0002ms, 2238ms total)
T67BC 054:483 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2239ms total)
T67BC 054:485 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2240ms total)
T67BC 054:486 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2241ms total)
T67BC 054:487 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2242ms total)
T67BC 054:488 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2243ms total)
T67BC 054:489 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2244ms total)
T96A8 054:490 JLINK_IsHalted()  returns FALSE (0001ms, 2245ms total)
T96A8 054:592 JLINK_IsHalted()  returns FALSE (0001ms, 2245ms total)
T96A8 054:694 JLINK_IsHalted()  returns FALSE (0001ms, 2245ms total)
T96A8 054:796 JLINK_IsHalted()  returns FALSE (0001ms, 2245ms total)
T96A8 054:898 JLINK_IsHalted()  returns FALSE (0001ms, 2245ms total)
T67BC 055:006 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0000ms, 2244ms total)
T67BC 055:006 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0002ms, 2246ms total)
T67BC 055:008 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2247ms total)
T67BC 055:010 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2248ms total)
T67BC 055:011 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2249ms total)
T67BC 055:012 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2250ms total)
T67BC 055:014 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2251ms total)
T67BC 055:015 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 10 41  returns 0x04 (0001ms, 2252ms total)
T67BC 055:017 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2254ms total)
T67BC 055:019 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2255ms total)
T67BC 055:020 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2257ms total)
T67BC 055:022 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2258ms total)
T67BC 055:023 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2259ms total)
T67BC 055:024 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2260ms total)
T67BC 055:025 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2261ms total)
T67BC 055:026 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2262ms total)
T67BC 055:027 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0000ms, 2262ms total)
T67BC 055:027 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2263ms total)
T67BC 055:029 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2264ms total)
T67BC 055:030 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2265ms total)
T67BC 055:031 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0000ms, 2265ms total)
T67BC 055:032 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2267ms total)
T67BC 055:033 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2268ms total)
T67BC 055:034 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2269ms total)
T67BC 055:035 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2270ms total)
T67BC 055:036 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2271ms total)
T96A8 055:037 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T96A8 055:139 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T96A8 055:241 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T96A8 055:342 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T96A8 055:444 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T67BC 055:549 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2272ms total)
T67BC 055:550 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2273ms total)
T67BC 055:551 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2274ms total)
T67BC 055:553 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2275ms total)
T67BC 055:554 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2276ms total)
T67BC 055:555 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2277ms total)
T67BC 055:559 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2278ms total)
T67BC 055:560 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 20 41  returns 0x04 (0001ms, 2279ms total)
T67BC 055:562 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2280ms total)
T67BC 055:563 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2281ms total)
T67BC 055:565 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 7F 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2282ms total)
T67BC 055:566 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2283ms total)
T67BC 055:567 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 7F  returns 0x01 (0001ms, 2284ms total)
T67BC 055:568 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2285ms total)
T67BC 055:569 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2286ms total)
T67BC 055:570 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2287ms total)
T67BC 055:571 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2288ms total)
T67BC 055:572 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2289ms total)
T67BC 055:573 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2290ms total)
T67BC 055:574 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2291ms total)
T67BC 055:575 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2292ms total)
T67BC 055:576 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2293ms total)
T67BC 055:577 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2294ms total)
T67BC 055:578 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2295ms total)
T67BC 055:579 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2296ms total)
T67BC 055:580 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2297ms total)
T96A8 055:581 JLINK_IsHalted()  returns FALSE (0001ms, 2298ms total)
T96A8 055:683 JLINK_IsHalted()  returns TRUE (0004ms, 2301ms total)
T96A8 055:687 JLINK_Halt()  returns 0x00 (0000ms, 2297ms total)
T96A8 055:687 JLINK_IsHalted()  returns TRUE (0000ms, 2297ms total)
T96A8 055:687 JLINK_IsHalted()  returns TRUE (0000ms, 2297ms total)
T96A8 055:687 JLINK_IsHalted()  returns TRUE (0000ms, 2297ms total)
T96A8 055:687 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 2297ms total)
T96A8 055:687 JLINK_ReadReg(XPSR)  returns 0x21000017 (0000ms, 2297ms total)
T96A8 055:687 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 2297ms total)
T96A8 055:687 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 2298ms total)
T96A8 055:688 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 2299ms total)
T96A8 055:689 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R0)  returns 0x7C000000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R2)  returns 0x00001018 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R3)  returns 0x00001008 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R4)  returns 0x020194CA (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R5)  returns 0x00020000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R6)  returns 0x00000001 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R7)  returns 0x41200000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R13 (SP))  returns 0x0202F7A0 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R14)  returns 0x000024DB (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(R15 (PC))  returns 0x000070A0 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(XPSR)  returns 0x21000017 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(MSP)  returns 0x0202F7A0 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 2301ms total)
T96A8 055:691 JLINK_ReadReg(CFBP)  returns 0x00000000 (0001ms, 2302ms total)
T67BC 055:692 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 2303ms total)
T67BC 055:693 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 44 93 01 02  returns 0x04 (0001ms, 2304ms total)
T67BC 055:694 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 01 1A 00 00  returns 0x04 (0001ms, 2305ms total)
T67BC 055:695 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 2306ms total)
T67BC 055:696 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: B4 39 00 00  returns 0x04 (0001ms, 2307ms total)
T67BC 055:697 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 00 00 00 61  returns 0x04 (0001ms, 2308ms total)
T67BC 055:698 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: A1 39 00 00  returns 0x04 (0001ms, 2309ms total)
T67BC 055:699 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00  returns 0x04 (0001ms, 2310ms total)
T67BC 055:700 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: D4 94 01 02  returns 0x04 (0001ms, 2311ms total)
T67BC 055:701 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 78 00 00 00  returns 0x04 (0001ms, 2312ms total)
T67BC 055:702 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2313ms total)
T67BC 055:703 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 20 41  returns 0x04 (0001ms, 2314ms total)
T67BC 055:704 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 FF FF FF  returns 0x04 (0001ms, 2315ms total)
T67BC 055:712 JLINK_ReadMemEx(0x02019628, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019628) - Data: 00 00 00 00  returns 0x04 (0001ms, 2316ms total)
T67BC 055:713 JLINK_ReadMemEx(0x02019620, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019620) - Data: 00 00 00 00  returns 0x04 (0001ms, 2317ms total)
T67BC 055:714 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2318ms total)
T67BC 055:717 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2319ms total)
T67BC 055:718 JLINK_ReadMemEx(0x02019644, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019644) - Data: 00 00 00 00  returns 0x04 (0001ms, 2320ms total)
T67BC 055:719 JLINK_ReadMemEx(0x02019640, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019640) - Data: 00 00 00 00  returns 0x04 (0001ms, 2321ms total)
T67BC 055:720 JLINK_ReadMemEx(0x0201962C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201962C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2322ms total)
T67BC 055:721 JLINK_ReadMemEx(0x02019524, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019524) - Data: 00 00 20 41  returns 0x04 (0001ms, 2323ms total)
T67BC 055:723 JLINK_ReadMemEx(0x020194C0, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194C0) - Data: FF FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2324ms total)
T67BC 055:725 JLINK_ReadMemEx(0x020194BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020194BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2325ms total)
T67BC 055:726 JLINK_ReadMemEx(0x020194CA, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020194CA) - Data: F8 5F 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2327ms total)
T67BC 055:728 JLINK_ReadMemEx(0x020194CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CA) - Data: F8  returns 0x01 (0001ms, 2328ms total)
T67BC 055:730 JLINK_ReadMemEx(0x020194CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CB) - Data: 5F  returns 0x01 (0000ms, 2328ms total)
T67BC 055:731 JLINK_ReadMemEx(0x020194CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CC) - Data: 00  returns 0x01 (0001ms, 2330ms total)
T67BC 055:732 JLINK_ReadMemEx(0x020194CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CD) - Data: 00  returns 0x01 (0001ms, 2331ms total)
T67BC 055:733 JLINK_ReadMemEx(0x020194CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CE) - Data: 00  returns 0x01 (0001ms, 2332ms total)
T67BC 055:734 JLINK_ReadMemEx(0x020194CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194CF) - Data: 00  returns 0x01 (0001ms, 2333ms total)
T67BC 055:735 JLINK_ReadMemEx(0x020194D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D0) - Data: 00  returns 0x01 (0001ms, 2334ms total)
T67BC 055:736 JLINK_ReadMemEx(0x020194D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D1) - Data: 00  returns 0x01 (0001ms, 2335ms total)
T67BC 055:737 JLINK_ReadMemEx(0x020194D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D2) - Data: 00  returns 0x01 (0001ms, 2336ms total)
T67BC 055:738 JLINK_ReadMemEx(0x020194D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020194D3) - Data: 00  returns 0x01 (0001ms, 2337ms total)
T67BC 055:740 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0001ms, 2338ms total)
T67BC 055:741 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 2339ms total)
T67BC 055:742 JLINK_ReadMemEx(0x02019634, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019634) - Data: 00 00 00 00  returns 0x04 (0001ms, 2340ms total)
T67BC 055:743 JLINK_ReadMemEx(0x020196F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F2) - Data: 00 00  returns 0x02 (0001ms, 2341ms total)
T67BC 055:744 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: 00 00  returns 0x02 (0001ms, 2342ms total)
T67BC 069:409 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0019ms, 2361ms total)
T67BC 069:409  (0019ms, 2361ms total)
T67BC 069:409 Closed (0019ms, 2361ms total)