chen
2025-03-13 f317cd42f19ea851e851600216750ababf89d6c0
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
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
 
T6514 000:135 SEGGER J-Link V6.30d Log File (0001ms, 0032ms total)
T6514 000:135 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0032ms total)
T6514 000:135 Logging started @ 2025-03-13 17:49 (0001ms, 0032ms total)
T6514 000:136 JLINK_SetWarnOutHandler(...) (0000ms, 0032ms total)
T6514 000:136 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 (0011ms, 0043ms total)
T6514 000:136 WEBSRV Webserver running on local port 19080 (0012ms, 0044ms total)
T6514 000:136   returns O.K. (0012ms, 0044ms total)
T6514 000:148 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0044ms total)
T6514 000:148 JLINK_TIF_GetAvailable(...) (0001ms, 0045ms total)
T6514 000:149 JLINK_SetErrorOutHandler(...) (0000ms, 0045ms total)
T6514 000:149 JLINK_ExecCommand("ProjectFile = "D:\project_chen\ChinaUWBProject_tag_URT\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0173ms, 0218ms total)
T6514 000:323 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0008ms, 0227ms total)
T6514 000:331 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0227ms total)
T6514 000:331 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0227ms total)
T6514 000:331 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0227ms total)
T6514 000:331 JLINK_GetFirmwareString(...) (0000ms, 0227ms total)
T6514 000:331 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0227ms total)
T6514 000:331 JLINK_GetCompileDateTime() (0000ms, 0227ms total)
T6514 000:331 JLINK_GetFirmwareString(...) (0000ms, 0227ms total)
T6514 000:331 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0227ms total)
T6514 000:331 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0228ms total)
T6514 000:332 JLINK_SetSpeed(5000) (0000ms, 0228ms total)
T6514 000:332 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0120ms, 0348ms total)
T6514 000:452 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0348ms total)
T6514 000:452 JLINK_CORE_GetFound()  returns 0x60000FF (0001ms, 0349ms total)
T6514 000:453 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0349ms total)
T6514 000:453 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0349ms total)
T6514 000:453 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0349ms total)
T6514 000:453 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 (0000ms, 0349ms total)
T6514 000:453 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0001ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0350ms total)
T6514 000:454 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0001ms, 0351ms total)
T6514 000:455 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0000ms, 0351ms total)
T6514 000:455 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0351ms total)
T6514 000:455 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0351ms total)
T6514 000:455 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0068ms, 0419ms total)
T6514 000:523 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0419ms total)
T6514 000:523 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0419ms total)
T6514 000:523 JLINK_Halt()  returns 0x00 (0000ms, 0419ms total)
T6514 000:523 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0420ms total)
T6514 000:524 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0000ms, 0420ms total)
T6514 000:524 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0421ms total)
T6514 000:525 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0421ms total)
T6514 000:525 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0421ms total)
T6514 000:525 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0421ms total)
T6514 000:525 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0421ms total)
T6514 000:525 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0421ms total)
T6514 000:525 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0422ms total)
T6514 000:526 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0422ms total)
T6514 000:526 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0422ms total)
T6514 000:613 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0422ms total)
T6514 000:613 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0068ms, 0490ms total)
T6514 000:681 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0490ms total)
T6514 000:681 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0490ms total)
T6514 000:681 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0491ms total)
T6514 000:682 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0491ms total)
T6514 000:682 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0492ms total)
T6514 000:683 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, 0493ms total)
T6514 000:684 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0494ms total)
T6514 000:685 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 0494ms total)
T6514 000:685 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0495ms total)
T6514 000:686 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0496ms total)
T6514 000:687 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0496ms total)
T6514 000:687 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0496ms total)
T6514 000:687 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, 0498ms total)
T6514 000:689 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0499ms total)
T6514 000:690 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 (0000ms, 0499ms total)
T6514 000:690 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0500ms total)
T6514 000:691 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0500ms total)
T6514 000:691 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0500ms total)
T6514 000:691 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, 0501ms total)
T6514 000:692 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0502ms total)
T6514 000:693 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, 0503ms total)
T6514 000:694 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0503ms total)
T6514 000:694 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0504ms total)
T6514 003:517 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 0504ms total)
T6514 003:517 JLINK_ReadReg(R1)  returns 0x00000000 (0001ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R2)  returns 0x00000020 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R3)  returns 0x00000380 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R4)  returns 0x00000004 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R6)  returns 0x0201977E (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R7)  returns 0x02019014 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R8)  returns 0xC90019BE (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R9)  returns 0x4CFB53E2 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R10)  returns 0xF782AA4B (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R11)  returns 0x665B5BE2 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R14)  returns 0x0000773B (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(PSP)  returns 0xF50EBFDC (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0505ms total)
T6514 003:518 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0506ms total)
T6514 003:526 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0507ms total)
T6514 003:527 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0507ms total)
T6514 003:535 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0507ms total)
T6514 003:535 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0508ms total)
T6514 003:536 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0508ms total)
T6514 003:541 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0509ms total)
T6514 003:542 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0509ms total)
T6514 003:542 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0510ms total)
T6514 003:548 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0510ms total)
T6514 003:548 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0002ms, 0512ms total)
T6514 003:550 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0512ms total)
T6514 003:555 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0512ms total)
T6514 003:555 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0513ms total)
T6514 003:556 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0513ms total)
T6514 003:566 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0514ms total)
T6514 003:567 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0515ms total)
T6514 003:568 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0515ms total)
T6514 003:575 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0515ms total)
T6514 003:575 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0516ms total)
T6514 003:576 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0516ms total)
T6514 003:582 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0517ms total)
T6514 003:583 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0517ms total)
T6514 003:583 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0517ms total)
T6514 003:589 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0000ms, 0518ms total)
T6514 003:589 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0002ms, 0520ms total)
T6514 003:591 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0000ms, 0520ms total)
T6514 003:611 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0521ms total)
T6514 003:612 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0522ms total)
T6514 003:613 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 0522ms total)
T6514 003:666 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0522ms total)
T6514 003:666 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0523ms total)
T6514 003:667 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0523ms total)
T6514 003:678 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0523ms total)
T6514 003:678 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0524ms total)
T6514 003:679 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0524ms total)
T6514 003:687 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0525ms total)
T6514 003:688 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0525ms total)
T6514 003:688 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0526ms total)
T6514 003:698 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0526ms total)
T6514 003:698 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0527ms total)
T6514 003:699 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0528ms total)
T6514 003:709 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0529ms total)
T6514 003:710 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0529ms total)
T6514 003:710 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0529ms total)
T6514 003:727 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0530ms total)
T6514 003:728 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0531ms total)
T6514 003:729 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0531ms total)
T6514 003:740 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0531ms total)
T6514 003:740 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0532ms total)
T6514 003:741 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0533ms total)
T6514 003:751 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 69 B9 10 00  returns 0x04 (0000ms, 0533ms total)
T6514 003:751 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 69 B9 10 00  returns 0x04 (0001ms, 0534ms total)
T6514 003:752 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 69 B9 10 00  returns 0x04 (0000ms, 0534ms total)
T6514 003:765 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0000ms, 0534ms total)
T6514 003:765 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0001ms, 0535ms total)
T6514 003:766 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0000ms, 0535ms total)
T6514 003:790 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 69 DF C8 03  returns 0x04 (0000ms, 0535ms total)
T6514 003:790 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 69 DF C8 03  returns 0x04 (0001ms, 0536ms total)
T6514 003:791 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 69 DF C8 03  returns 0x04 (0000ms, 0536ms total)
T6514 003:813 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0536ms total)
T6514 003:813 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0537ms total)
T6514 003:814 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0537ms total)
T6514 003:845 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0537ms total)
T6514 003:845 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0538ms total)
T6514 003:846 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0538ms total)
T6514 003:858 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0538ms total)
T6514 003:858 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0539ms total)
T6514 003:859 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0539ms total)
T6514 003:874 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0539ms total)
T6514 003:874 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0002ms, 0541ms total)
T6514 003:876 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0541ms total)
T6514 003:900 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0541ms total)
T6514 003:900 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0542ms total)
T6514 003:901 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0542ms total)
T6514 003:930 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0543ms total)
T6514 003:931 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0543ms total)
T6514 003:931 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0544ms total)
T6514 003:952 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0544ms total)
T6514 003:952 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0545ms total)
T6514 003:953 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0545ms total)
T6514 003:981 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0545ms total)
T6514 003:981 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0546ms total)
T6514 003:982 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0546ms total)
T6514 003:996 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0001ms, 0547ms total)
T6514 003:997 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0001ms, 0548ms total)
T6514 003:998 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B3 CF 10 00  returns 0x04 (0000ms, 0548ms total)
T6514 004:012 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0001ms, 0549ms total)
T6514 004:013 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0000ms, 0549ms total)
T6514 004:013 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0001ms, 0550ms total)
T6514 004:044 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0550ms total)
T6514 004:044 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0551ms total)
T6514 004:045 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0551ms total)
T6514 004:059 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0000ms, 0551ms total)
T6514 004:059 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0001ms, 0552ms total)
T6514 004:060 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0000ms, 0552ms total)
T4D64 004:138 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0553ms total)
T4D64 004:139 JLINK_SetBPEx(Addr = 0x00007608, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0553ms total)
T4D64 004:139 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0004ms, 0557ms total)
T4D64 004:245 JLINK_IsHalted()  returns TRUE (0003ms, 0560ms total)
T4D64 004:248 JLINK_Halt()  returns 0x00 (0000ms, 0557ms total)
T4D64 004:248 JLINK_IsHalted()  returns TRUE (0000ms, 0557ms total)
T4D64 004:248 JLINK_IsHalted()  returns TRUE (0000ms, 0557ms total)
T4D64 004:248 JLINK_IsHalted()  returns TRUE (0000ms, 0557ms total)
T4D64 004:248 JLINK_ReadReg(R15 (PC))  returns 0x00007608 (0000ms, 0557ms total)
T4D64 004:248 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0557ms total)
T4D64 004:248 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0557ms total)
T4D64 004:248 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0557ms total)
T4D64 004:248 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0558ms total)
T4D64 004:249 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R0)  returns 0x00007609 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R1)  returns 0x0201BEB8 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R3)  returns 0x0000BF57 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R4)  returns 0x0000DA6C (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0558ms total)
T4D64 004:249 JLINK_ReadReg(R6)  returns 0x0000DA6C (0001ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R8)  returns 0xC90019BE (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R9)  returns 0x4CFB53E2 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R10)  returns 0xF782AA4B (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R11)  returns 0x665B5BE2 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R14)  returns 0x00000ADD (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(R15 (PC))  returns 0x00007608 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(PSP)  returns 0xF50EBFDC (0000ms, 0559ms total)
T4D64 004:250 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0559ms total)
T6514 004:252 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0560ms total)
T6514 004:253 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0560ms total)
T6514 004:253 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0561ms total)
T6514 004:254 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0561ms total)
T6514 004:254 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0562ms total)
T6514 004:255 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0562ms total)
T6514 004:266 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0563ms total)
T6514 004:267 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0563ms total)
T6514 004:267 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0564ms total)
T6514 004:299 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 01  returns 0x01 (0000ms, 0564ms total)
T6514 004:358 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0565ms total)
T6514 004:359 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0565ms total)
T6514 004:359 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0566ms total)
T6514 004:369 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0566ms total)
T6514 004:369 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0567ms total)
T6514 004:380 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0568ms total)
T6514 004:381 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0568ms total)
T6514 004:381 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0569ms total)
T6514 004:391 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0569ms total)
T6514 004:411 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0569ms total)
T6514 004:430 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0569ms total)
T6514 004:430 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0570ms total)
T6514 004:431 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0570ms total)
T6514 004:431 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0571ms total)
T6514 004:441 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0571ms total)
T6514 004:453 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0571ms total)
T6514 004:453 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0572ms total)
T6514 004:465 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0573ms total)
T6514 004:466 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0573ms total)
T6514 004:467 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0574ms total)
T6514 004:467 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0575ms total)
T6514 004:468 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0575ms total)
T6514 004:470 JLINK_ReadMemEx(0x00007508, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00007500) -- Updating C cache (128 bytes @ 0x00007500) -- Read from C cache (60 bytes @ 0x00007508) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0002ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x00007508, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007508) - Data: 80 B2  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750A) - Data: C0 00  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750A) - Data: C0 00  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000750C) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F8 F7 DC FD ...  returns 0x3C (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750C) - Data: 00 29  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000750C) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F8 F7 DC FD ...  returns 0x3C (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750C) - Data: 00 29  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750E) - Data: 00 D1  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x0000750E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000750E) - Data: 00 D1  returns 0x02 (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x00007510, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007510) - Data: 80 1E 02 9F A5 21 49 00 F8 F7 DC FD 1F 21 01 40 ...  returns 0x3C (0000ms, 0577ms total)
T6514 004:472 JLINK_ReadMemEx(0x00007510, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007510) - Data: 80 1E  returns 0x02 (0001ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007510, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007510) - Data: 80 1E 02 9F A5 21 49 00 F8 F7 DC FD 1F 21 01 40 ...  returns 0x3C (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007510, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007510) - Data: 80 1E  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007512, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007512) - Data: 02 9F  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007512, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007512) - Data: 02 9F  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007514, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007514) - Data: A5 21 49 00 F8 F7 DC FD 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007514, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007514) - Data: A5 21  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007514, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007514) - Data: A5 21 49 00 F8 F7 DC FD 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007514, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007514) - Data: A5 21  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007516, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007516) - Data: 49 00  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007516, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007516) - Data: 49 00  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007518, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007518) - Data: F8 F7 DC FD 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007518, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007518) - Data: F8 F7  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007518, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007518) - Data: F8 F7 DC FD 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x00007518, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007518) - Data: F8 F7  returns 0x02 (0000ms, 0578ms total)
T6514 004:473 JLINK_ReadMemEx(0x0000751A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000751A) - Data: DC FD  returns 0x02 (0001ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x0000751C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000751C) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x0000751C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000751C) - Data: 1F 21  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x0000751E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000751E) - Data: 01 40  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x0000751E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000751E) - Data: 01 40  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007520, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007520) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007520, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007520) - Data: 01 E0  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007520, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007520) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007520, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007520) - Data: 01 E0  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007522, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007522) - Data: 00 21  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007522, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007522) - Data: 00 21  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007524, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007524) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007524, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007524) - Data: 02 9F  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007524, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007524) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007524, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007524) - Data: 02 9F  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007526, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007526) - Data: 38 01  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007526, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007526) - Data: 38 01  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007528, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007528) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007528, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007528) - Data: 28 18  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007528, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007528) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x00007528, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007528) - Data: 28 18  returns 0x02 (0000ms, 0579ms total)
T6514 004:474 JLINK_ReadMemEx(0x0000752A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752A) - Data: 42 79  returns 0x02 (0000ms, 0579ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752A) - Data: 42 79  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000752C) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752C) - Data: 83 79  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000752C) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752C) - Data: 83 79  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752E) - Data: 1B 02  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x0000752E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000752E) - Data: 1B 02  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007530, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007530) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007530, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007530) - Data: 9A 18  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007530, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007530) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007530, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007530) - Data: 9A 18  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007532, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007532) - Data: C3 79  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007532, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007532) - Data: C3 79  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007534, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007534) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007534, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007534) - Data: 1B 04  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007534, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007534) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007534, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007534) - Data: 1B 04  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007536, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007536) - Data: D2 18  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007536, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007536) - Data: D2 18  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007538, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007538) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007538, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007538) - Data: 2C 4B  returns 0x02 (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007538, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007538) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0580ms total)
T6514 004:475 JLINK_ReadMemEx(0x00007538, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007538) - Data: 2C 4B  returns 0x02 (0001ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753A) - Data: 13 40  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753A) - Data: 13 40  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000753C) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753C) - Data: 43 71  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000753C) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753C) - Data: 43 71  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753E) - Data: 09 04  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x0000753E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000753E) - Data: 09 04  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007540, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007540) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007540, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007540) - Data: 59 18  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007540, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007540) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007540, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007540) - Data: 59 18  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007542, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007542) - Data: 09 0C  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007542, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007542) - Data: 09 0C  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007544, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007544) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007544, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007544) - Data: C1 71  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007544, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007544) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007544, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007544) - Data: C1 71  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007546, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007546) - Data: 00 2C  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007546, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007546) - Data: 00 2C  returns 0x02 (0000ms, 0581ms total)
T6514 004:476 JLINK_ReadMemEx(0x00007548, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007580) -- Updating C cache (64 bytes @ 0x00007580) -- Read from C cache (60 bytes @ 0x00007548) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0001ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007548, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007548) - Data: 20 D0  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007548, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007548) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007548, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007548) - Data: 20 D0  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754A) - Data: 15 48  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754A) - Data: 15 48  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000754C) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754C) - Data: 35 46  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000754C) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754C) - Data: 35 46  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754E) - Data: 06 46  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x0000754E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000754E) - Data: 06 46  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007550, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007550) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007550, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007550) - Data: 00 7B  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007550, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007550) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007550, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007550) - Data: 00 7B  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007552, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007552) - Data: 00 9B  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007552, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007552) - Data: 00 9B  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007554, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007554) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007554, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007554) - Data: 43 43  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007554, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007554) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007554, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007554) - Data: 43 43  returns 0x02 (0000ms, 0582ms total)
T6514 004:478 JLINK_ReadMemEx(0x00007556, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007556) - Data: F1 7A  returns 0x02 (0001ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007556, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007556) - Data: F1 7A  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007558, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007558) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007558, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007558) - Data: 0A 01  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007558, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007558) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007558, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007558) - Data: 0A 01  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755A) - Data: 06 9F  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755A) - Data: 06 9F  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000755C) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755C) - Data: 3A 43  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000755C) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755C) - Data: 3A 43  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755E) - Data: D2 18  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x0000755E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000755E) - Data: D2 18  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007560, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007560) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007560, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007560) - Data: 41 18  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007560, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007560) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007560, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007560) - Data: 41 18  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007562, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007562) - Data: 8B 00  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007562, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007562) - Data: 8B 00  returns 0x02 (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007564, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007564) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0583ms total)
T6514 004:479 JLINK_ReadMemEx(0x00007564, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007564) - Data: D2 18  returns 0x02 (0001ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007564, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007564) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007564, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007564) - Data: D2 18  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007566, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007566) - Data: 05 9B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007566, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007566) - Data: 05 9B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007568, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007568) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007568, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007568) - Data: 4B 43  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007568, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007568) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007568, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007568) - Data: 4B 43  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756A) - Data: D1 18  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756A) - Data: D1 18  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000756C) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756C) - Data: 72 7B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000756C) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756C) - Data: 72 7B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756E) - Data: 07 9B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x0000756E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000756E) - Data: 07 9B  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007570, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007570) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007570, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007570) - Data: 53 43  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007570, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007570) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007570, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007570) - Data: 53 43  returns 0x02 (0000ms, 0584ms total)
T6514 004:480 JLINK_ReadMemEx(0x00007572, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007572) - Data: C9 18  returns 0x02 (0000ms, 0584ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007572, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007572) - Data: C9 18  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007574, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007574) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007574, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007574) - Data: 40 19  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007574, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007574) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007574, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007574) - Data: 40 19  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007576, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007576) - Data: 1C 4A  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007576, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007576) - Data: 1C 4A  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007578, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007578) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007578, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007578) - Data: 12 88  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007578, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007578) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007578, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007578) - Data: 12 88  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757A) - Data: 42 43  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757A) - Data: 42 43  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000757C) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F8 F7 CE FD ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757C) - Data: 88 18  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000757C) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F8 F7 CE FD ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757C) - Data: 88 18  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757E) - Data: 01 99  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x0000757E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000757E) - Data: 01 99  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007580, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007580) - Data: 88 42 03 D0 01 99 22 46 F8 F7 CE FD 09 B0 F0 BD ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007580, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007580) - Data: 88 42  returns 0x02 (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007580, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007580) - Data: 88 42 03 D0 01 99 22 46 F8 F7 CE FD 09 B0 F0 BD ...  returns 0x3C (0000ms, 0585ms total)
T6514 004:481 JLINK_ReadMemEx(0x00007580, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007580) - Data: 88 42  returns 0x02 (0001ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007582, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007582) - Data: 03 D0  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007582, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007582) - Data: 03 D0  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007584, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007584) - Data: 01 99 22 46 F8 F7 CE FD 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007584, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007584) - Data: 01 99  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007584, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007584) - Data: 01 99 22 46 F8 F7 CE FD 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007584, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007584) - Data: 01 99  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007586, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007586) - Data: 22 46  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007586, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007586) - Data: 22 46  returns 0x02 (0000ms, 0586ms total)
T6514 004:482 JLINK_ReadMemEx(0x00007588, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000075C0) -- Updating C cache (64 bytes @ 0x000075C0) -- Read from C cache (60 bytes @ 0x00007588) - Data: F8 F7 CE FD 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0001ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x00007588, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007588) - Data: F8 F7  returns 0x02 (0000ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x00007588, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007588) - Data: F8 F7 CE FD 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x00007588, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007588) - Data: F8 F7  returns 0x02 (0000ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x0000758A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000758A) - Data: CE FD  returns 0x02 (0000ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x0000758C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000758C) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 02 F0 ...  returns 0x3C (0000ms, 0587ms total)
T6514 004:483 JLINK_ReadMemEx(0x0000758C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000758C) - Data: 09 B0  returns 0x02 (0001ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000758E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000758E) - Data: F0 BD  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000758E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000758E) - Data: F0 BD  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007590, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007590) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 A3 FA C0 46 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007590, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007590) - Data: FF 22  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007590, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007590) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 A3 FA C0 46 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007590, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007590) - Data: FF 22  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007592, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007592) - Data: 5C 32  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007592, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007592) - Data: 5C 32  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007594, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007594) - Data: 03 48 04 A1 09 A3 02 F0 A3 FA C0 46 34 A7 01 02 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007594, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007594) - Data: 03 48  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007594, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007594) - Data: 03 48 04 A1 09 A3 02 F0 A3 FA C0 46 34 A7 01 02 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007594, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007594) - Data: 03 48  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007596, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007596) - Data: 04 A1  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007596, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007596) - Data: 04 A1  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007598, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007598) - Data: 09 A3 02 F0 A3 FA C0 46 34 A7 01 02 A9 CD 00 00 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007598, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007598) - Data: 09 A3  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007598, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007598) - Data: 09 A3 02 F0 A3 FA C0 46 34 A7 01 02 A9 CD 00 00 ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x00007598, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007598) - Data: 09 A3  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000759A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000759A) - Data: 02 F0  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000759A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000759A) - Data: 02 F0  returns 0x02 (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000759C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000759C) - Data: A3 FA C0 46 34 A7 01 02 A9 CD 00 00 6D 61 63 5F ...  returns 0x3C (0000ms, 0588ms total)
T6514 004:484 JLINK_ReadMemEx(0x0000759C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000759C) - Data: A3 FA  returns 0x02 (0001ms, 0589ms total)
T6514 004:485 JLINK_ReadMemEx(0x0000759E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000759E) - Data: C0 46  returns 0x02 (0000ms, 0589ms total)
T6514 004:485 JLINK_ReadMemEx(0x000075A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075A0) - Data: 34 A7 01 02 A9 CD 00 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 0589ms total)
T6514 004:485 JLINK_ReadMemEx(0x000075A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075A0) - Data: 34 A7  returns 0x02 (0000ms, 0589ms total)
T6514 004:485 JLINK_ReadMemEx(0x000075F0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007600) -- Updating C cache (64 bytes @ 0x00007600) -- Read from C cache (60 bytes @ 0x000075F0) - Data: 01 68 04 4A 11 60 41 68 51 60 81 68 91 60 C0 68 ...  returns 0x3C (0001ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F0) - Data: 01 68  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F2) - Data: 04 4A  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F2) - Data: 04 4A  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075F4) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F4) - Data: 11 60  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075F4) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F4) - Data: 11 60  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F6) - Data: 41 68  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F6) - Data: 41 68  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075F8) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F8) - Data: 51 60  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075F8) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075F8) - Data: 51 60  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FA) - Data: 81 68  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FA) - Data: 81 68  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075FC) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 82 B0 FC F7 ...  returns 0x3C (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FC) - Data: 91 60  returns 0x02 (0000ms, 0590ms total)
T6514 004:486 JLINK_ReadMemEx(0x000075FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000075FC) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 82 B0 FC F7 ...  returns 0x3C (0001ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x000075FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FC) - Data: 91 60  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x000075FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FE) - Data: C0 68  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x000075FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000075FE) - Data: C0 68  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007600, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007600) - Data: D0 60 70 47 80 A0 00 50 82 B0 FC F7 F7 FC 05 20 ...  returns 0x3C (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007600, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007600) - Data: D0 60  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007600, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007600) - Data: D0 60 70 47 80 A0 00 50 82 B0 FC F7 F7 FC 05 20 ...  returns 0x3C (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007600, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007600) - Data: D0 60  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007602, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007602) - Data: 70 47  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007602, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007602) - Data: 70 47  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007604, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007604) - Data: 80 A0 00 50 82 B0 FC F7 F7 FC 05 20 00 25 29 46 ...  returns 0x3C (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007604, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007604) - Data: 80 A0  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007606, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007606) - Data: 00 50  returns 0x02 (0000ms, 0591ms total)
T6514 004:487 JLINK_ReadMemEx(0x00007608, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007640) -- Updating C cache (64 bytes @ 0x00007640) -- Read from C cache (60 bytes @ 0x00007608) - Data: 82 B0 FC F7 F7 FC 05 20 00 25 29 46 FF F7 30 F8 ...  returns 0x3C (0001ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x00007608, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007608) - Data: 82 B0  returns 0x02 (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x00007608, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007608) - Data: 82 B0 FC F7 F7 FC 05 20 00 25 29 46 FF F7 30 F8 ...  returns 0x3C (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x00007608, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007608) - Data: 82 B0  returns 0x02 (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x0000760A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000760A) - Data: FC F7  returns 0x02 (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x0000760A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000760A) - Data: FC F7  returns 0x02 (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x0000760C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000760C) - Data: F7 FC 05 20 00 25 29 46 FF F7 30 F8 06 20 29 46 ...  returns 0x3C (0000ms, 0592ms total)
T6514 004:488 JLINK_ReadMemEx(0x0000760C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000760C) - Data: F7 FC  returns 0x02 (0000ms, 0592ms total)
T6514 004:489 JLINK_ReadMemEx(0x0000760E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000760E) - Data: 05 20  returns 0x02 (0000ms, 0592ms total)
T6514 004:489 JLINK_ReadMemEx(0x00007610, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007610) - Data: 00 25 29 46 FF F7 30 F8 06 20 29 46 FF F7 2C F8 ...  returns 0x3C (0000ms, 0592ms total)
T6514 004:489 JLINK_ReadMemEx(0x00007610, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007610) - Data: 00 25  returns 0x02 (0000ms, 0592ms total)
T6514 006:034 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0592ms total)
T6514 006:034 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0067ms, 0659ms total)
T6514 006:101 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0659ms total)
T6514 006:101 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0659ms total)
T6514 006:103 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0660ms total)
T6514 006:104 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0660ms total)
T6514 006:104 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0661ms total)
T6514 006:105 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, 0662ms total)
T6514 006:106 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0662ms total)
T6514 006:106 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0663ms total)
T6514 006:107 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0664ms total)
T6514 006:108 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0664ms total)
T6514 006:108 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0665ms total)
T6514 006:109 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0665ms total)
T6514 006:109 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, 0666ms total)
T6514 006:110 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0667ms total)
T6514 006:111 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, 0668ms total)
T6514 006:112 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0668ms total)
T6514 006:112 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0669ms total)
T6514 006:113 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0669ms total)
T6514 006:113 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, 0670ms total)
T6514 006:114 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0671ms total)
T6514 006:115 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, 0672ms total)
T6514 006:116 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0672ms total)
T6514 006:117 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R0)  returns 0x00007609 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R1)  returns 0x0201BEB8 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R3)  returns 0x0000BF57 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R4)  returns 0x0000DA6C (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R6)  returns 0x0000DA6C (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R8)  returns 0xC90019BE (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R9)  returns 0x4CFB53E2 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R10)  returns 0xF782AA4B (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R11)  returns 0x665B5BE2 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R14)  returns 0x00000ADD (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0672ms total)
T6514 006:142 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0001ms, 0673ms total)
T6514 006:143 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0673ms total)
T6514 006:143 JLINK_ReadReg(PSP)  returns 0xF50EBFDC (0000ms, 0673ms total)
T6514 006:143 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0673ms total)
T6514 006:143 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0673ms total)
T6514 006:143 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0674ms total)
T6514 006:144 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0674ms total)
T6514 006:144 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0675ms total)
T6514 006:145 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0675ms total)
T6514 006:145 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0676ms total)
T6514 006:146 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0676ms total)
T6514 006:146 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0677ms total)
T6514 006:147 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0677ms total)
T6514 006:180 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 01  returns 0x01 (0002ms, 0679ms total)
T6514 006:250 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0679ms total)
T6514 006:251 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0680ms total)
T6514 006:251 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0681ms total)
T6514 006:264 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0681ms total)
T6514 006:265 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0682ms total)
T6514 006:275 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0683ms total)
T6514 006:276 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0683ms total)
T6514 006:276 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 00 00 00 00  returns 0x04 (0002ms, 0685ms total)
T6514 006:288 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0686ms total)
T6514 006:312 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0687ms total)
T6514 006:334 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0687ms total)
T6514 006:334 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0688ms total)
T6514 006:335 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0688ms total)
T6514 006:335 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0689ms total)
T6514 006:347 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0690ms total)
T6514 006:358 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0691ms total)
T6514 006:359 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0691ms total)
T6514 006:370 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0692ms total)
T6514 006:371 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0692ms total)
T6514 006:371 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0693ms total)
T6514 006:372 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0694ms total)
T6514 006:373 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0694ms total)
T4D64 006:472 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0694ms total)
T4D64 006:472 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0004ms, 0698ms total)
T4D64 006:577 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
T4D64 006:678 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
T4D64 006:780 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
T4D64 006:881 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
T6514 006:982 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0698ms total)
T6514 006:982 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T6514 006:983 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0699ms total)
T6514 006:983 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0700ms total)
T6514 006:984 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0700ms total)
T6514 006:984 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0700ms total)
T6514 006:984 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0002ms, 0702ms total)
T6514 006:986 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0702ms total)
T6514 006:986 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B1 CF 10 00  returns 0x04 (0001ms, 0703ms total)
T6514 007:019 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 0703ms total)
T6514 007:084 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0703ms total)
T6514 007:084 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0704ms total)
T6514 007:085 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0704ms total)
T6514 007:096 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0704ms total)
T6514 007:096 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0704ms total)
T6514 007:108 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0704ms total)
T6514 007:108 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0705ms total)
T6514 007:109 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 69 B9 10 00  returns 0x04 (0000ms, 0705ms total)
T6514 007:120 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B1 CF 10 00  returns 0x04 (0000ms, 0705ms total)
T6514 007:144 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 69 DF C8 03  returns 0x04 (0000ms, 0705ms total)
T6514 007:165 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0706ms total)
T6514 007:166 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0706ms total)
T6514 007:166 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0707ms total)
T6514 007:167 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0707ms total)
T6514 007:178 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0708ms total)
T6514 007:190 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0708ms total)
T6514 007:190 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 0710ms total)
T6514 007:202 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0710ms total)
T6514 007:202 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B1 CF 10 00  returns 0x04 (0001ms, 0711ms total)
T6514 007:203 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0000ms, 0711ms total)
T6514 007:205 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0712ms total)
T6514 007:206 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 6F 52 1C 00  returns 0x04 (0000ms, 0712ms total)
T4D64 007:207 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T4D64 007:308 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T4D64 007:410 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T6514 007:510 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0712ms total)
T6514 007:510 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0713ms total)
T6514 007:511 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0713ms total)
T6514 007:511 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0714ms total)
T6514 007:512 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0714ms total)
T6514 007:512 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0715ms total)
T6514 007:513 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0715ms total)
T6514 007:513 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0716ms total)
T6514 007:514 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B1 CF 10 00  returns 0x04 (0000ms, 0716ms total)
T6514 007:549 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 0716ms total)
T6514 007:614 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0717ms total)
T6514 007:615 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0717ms total)
T6514 007:615 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0002ms, 0719ms total)
T6514 007:628 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0720ms total)
T6514 007:629 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0720ms total)
T6514 007:639 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0721ms total)
T6514 007:640 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0721ms total)
T6514 007:640 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 89 B9 10 00  returns 0x04 (0001ms, 0722ms total)
T6514 007:660 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: EB CF 10 00  returns 0x04 (0000ms, 0722ms total)
T6514 007:687 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 89 DF C8 03  returns 0x04 (0001ms, 0723ms total)
T6514 007:718 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0723ms total)
T6514 007:718 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0724ms total)
T6514 007:719 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0724ms total)
T6514 007:719 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0724ms total)
T6514 007:729 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0724ms total)
T6514 007:739 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0725ms total)
T6514 007:740 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0726ms total)
T6514 007:750 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0727ms total)
T6514 007:751 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: EB CF 10 00  returns 0x04 (0001ms, 0728ms total)
T6514 007:753 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9F 52 1C 00  returns 0x04 (0000ms, 0728ms total)
T6514 007:754 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0728ms total)
T6514 007:754 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9F 52 1C 00  returns 0x04 (0001ms, 0729ms total)
T4D64 007:755 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T4D64 007:856 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T4D64 007:958 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T6514 008:060 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0729ms total)
T6514 008:060 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T6514 008:061 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0730ms total)
T6514 008:061 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0731ms total)
T6514 008:062 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0731ms total)
T6514 008:062 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0732ms total)
T6514 008:063 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0732ms total)
T6514 008:063 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0733ms total)
T6514 008:064 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: EB CF 10 00  returns 0x04 (0001ms, 0734ms total)
T6514 008:097 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 0734ms total)
T6514 008:151 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0735ms total)
T6514 008:152 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0735ms total)
T6514 008:152 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0736ms total)
T6514 008:153 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0736ms total)
T6514 008:153 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0737ms total)
T6514 008:163 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0738ms total)
T6514 008:164 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0739ms total)
T6514 008:165 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 89 B9 10 00  returns 0x04 (0000ms, 0739ms total)
T6514 008:177 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: EB CF 10 00  returns 0x04 (0000ms, 0739ms total)
T6514 008:195 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 89 DF C8 03  returns 0x04 (0000ms, 0739ms total)
T6514 008:212 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0740ms total)
T6514 008:213 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0741ms total)
T6514 008:214 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0741ms total)
T6514 008:214 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0742ms total)
T6514 008:224 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0742ms total)
T6514 008:232 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0743ms total)
T6514 008:233 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T6514 008:242 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0745ms total)
T6514 008:243 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: EB CF 10 00  returns 0x04 (0000ms, 0745ms total)
T6514 008:252 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9F 52 1C 00  returns 0x04 (0000ms, 0745ms total)
T6514 008:271 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0746ms total)
T6514 008:272 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9F 52 1C 00  returns 0x04 (0000ms, 0746ms total)
T4D64 008:281 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T4D64 008:382 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T4D64 008:483 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T6514 008:584 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0746ms total)
T6514 008:584 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0747ms total)
T6514 008:585 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0747ms total)
T6514 008:585 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0748ms total)
T6514 008:586 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0748ms total)
T6514 008:586 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0749ms total)
T6514 008:587 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0749ms total)
T6514 008:587 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0750ms total)
T6514 008:588 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0000ms, 0750ms total)
T6514 008:628 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0751ms total)
T6514 008:673 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0752ms total)
T6514 008:674 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0752ms total)
T6514 008:674 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0753ms total)
T6514 008:675 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0753ms total)
T6514 008:675 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0754ms total)
T6514 008:684 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0755ms total)
T6514 008:685 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0755ms total)
T6514 008:685 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 B9 10 00  returns 0x04 (0001ms, 0756ms total)
T6514 008:694 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0001ms, 0757ms total)
T6514 008:712 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 DF C8 03  returns 0x04 (0001ms, 0758ms total)
T6514 008:731 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0759ms total)
T6514 008:732 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0759ms total)
T6514 008:732 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0760ms total)
T6514 008:733 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T6514 008:742 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T6514 008:751 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0761ms total)
T6514 008:752 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0761ms total)
T6514 008:762 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0762ms total)
T6514 008:763 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0000ms, 0762ms total)
T6514 008:772 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 65 52 1C 00  returns 0x04 (0001ms, 0763ms total)
T6514 008:791 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 95 40 05 00  returns 0x04 (0000ms, 0763ms total)
T6514 008:800 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 65 52 1C 00  returns 0x04 (0001ms, 0764ms total)
T4D64 008:809 JLINK_IsHalted()  returns FALSE (0001ms, 0765ms total)
T4D64 008:911 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T4D64 009:011 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T6514 009:113 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0764ms total)
T6514 009:113 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0764ms total)
T6514 009:113 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0765ms total)
T6514 009:114 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0765ms total)
T6514 009:114 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0766ms total)
T6514 009:115 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0766ms total)
T6514 009:115 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0767ms total)
T6514 009:116 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0767ms total)
T6514 009:116 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0000ms, 0767ms total)
T6514 009:150 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0768ms total)
T6514 009:201 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0769ms total)
T6514 009:202 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0770ms total)
T6514 009:203 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0770ms total)
T6514 009:203 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0771ms total)
T6514 009:204 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0771ms total)
T6514 009:215 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0771ms total)
T6514 009:215 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0771ms total)
T6514 009:217 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 B9 10 00  returns 0x04 (0000ms, 0771ms total)
T6514 009:227 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0000ms, 0771ms total)
T6514 009:247 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 DF C8 03  returns 0x04 (0001ms, 0772ms total)
T6514 009:268 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0773ms total)
T6514 009:269 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0773ms total)
T6514 009:269 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0774ms total)
T6514 009:270 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0774ms total)
T6514 009:281 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0775ms total)
T6514 009:291 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0776ms total)
T6514 009:292 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0776ms total)
T6514 009:301 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0777ms total)
T6514 009:302 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: B5 CF 10 00  returns 0x04 (0000ms, 0777ms total)
T6514 009:312 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 65 52 1C 00  returns 0x04 (0000ms, 0777ms total)
T6514 009:329 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 95 40 05 00  returns 0x04 (0001ms, 0778ms total)
T6514 009:339 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 65 52 1C 00  returns 0x04 (0000ms, 0778ms total)
T4D64 009:348 JLINK_IsHalted()  returns FALSE (0001ms, 0779ms total)
T4D64 009:450 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T4D64 009:551 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T6514 009:653 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0779ms total)
T6514 009:654 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0779ms total)
T6514 009:654 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0780ms total)
T6514 009:655 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0780ms total)
T6514 009:655 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0781ms total)
T6514 009:656 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0781ms total)
T6514 009:656 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0782ms total)
T6514 009:657 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0782ms total)
T6514 009:657 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0001ms, 0783ms total)
T6514 009:690 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0784ms total)
T6514 009:741 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0785ms total)
T6514 009:742 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0785ms total)
T6514 009:742 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0786ms total)
T6514 009:743 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0786ms total)
T6514 009:743 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0787ms total)
T6514 009:754 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0788ms total)
T6514 009:755 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0788ms total)
T6514 009:755 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 87 B9 10 00  returns 0x04 (0001ms, 0789ms total)
T6514 009:767 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0001ms, 0790ms total)
T6514 009:788 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 87 DF C8 03  returns 0x04 (0001ms, 0791ms total)
T6514 009:810 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0791ms total)
T6514 009:810 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0792ms total)
T6514 009:811 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0793ms total)
T6514 009:812 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0793ms total)
T6514 009:823 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0002ms, 0795ms total)
T6514 009:835 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0795ms total)
T6514 009:835 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0796ms total)
T6514 009:845 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0797ms total)
T6514 009:846 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0000ms, 0797ms total)
T6514 009:856 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 67 52 1C 00  returns 0x04 (0000ms, 0797ms total)
T6514 009:874 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0798ms total)
T6514 009:883 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 67 52 1C 00  returns 0x04 (0001ms, 0799ms total)
T4D64 009:894 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T4D64 009:995 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T4D64 010:097 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T6514 010:198 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0800ms total)
T6514 010:199 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0800ms total)
T6514 010:199 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0801ms total)
T6514 010:200 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0801ms total)
T6514 010:200 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0802ms total)
T6514 010:201 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0000ms, 0802ms total)
T6514 010:201 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0803ms total)
T6514 010:202 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0803ms total)
T6514 010:202 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0001ms, 0804ms total)
T6514 010:233 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0805ms total)
T6514 010:285 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0805ms total)
T6514 010:285 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0806ms total)
T6514 010:286 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0806ms total)
T6514 010:287 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0806ms total)
T6514 010:287 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0807ms total)
T6514 010:298 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0807ms total)
T6514 010:298 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0808ms total)
T6514 010:299 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 87 B9 10 00  returns 0x04 (0000ms, 0808ms total)
T6514 010:309 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0001ms, 0809ms total)
T6514 010:330 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 87 DF C8 03  returns 0x04 (0001ms, 0810ms total)
T6514 010:353 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0810ms total)
T6514 010:353 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0811ms total)
T6514 010:354 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0811ms total)
T6514 010:354 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0811ms total)
T6514 010:365 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0811ms total)
T6514 010:376 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0811ms total)
T6514 010:377 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0811ms total)
T6514 010:386 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0812ms total)
T6514 010:387 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C9 CF 10 00  returns 0x04 (0000ms, 0812ms total)
T6514 010:396 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 67 52 1C 00  returns 0x04 (0001ms, 0813ms total)
T6514 010:417 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0814ms total)
T6514 010:427 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 67 52 1C 00  returns 0x04 (0000ms, 0814ms total)
T4D64 010:437 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T4D64 010:539 JLINK_IsHalted()  returns FALSE (0001ms, 0815ms total)
T4D64 010:641 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T6514 010:741 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0814ms total)
T6514 010:741 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0814ms total)
T6514 010:741 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 0816ms total)
T6514 010:743 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0816ms total)
T6514 010:743 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0816ms total)
T6514 010:743 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0817ms total)
T6514 010:744 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0818ms total)
T6514 010:745 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0818ms total)
T6514 010:745 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0000ms, 0818ms total)
T6514 010:778 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0819ms total)
T6514 010:830 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0820ms total)
T6514 010:831 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0820ms total)
T6514 010:832 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0820ms total)
T6514 010:832 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0821ms total)
T6514 010:833 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0821ms total)
T6514 010:843 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0822ms total)
T6514 010:844 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0822ms total)
T6514 010:844 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 73 B9 10 00  returns 0x04 (0000ms, 0822ms total)
T6514 010:855 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0001ms, 0823ms total)
T6514 010:879 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 73 DF C8 03  returns 0x04 (0001ms, 0824ms total)
T6514 010:901 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0825ms total)
T6514 010:902 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0825ms total)
T6514 010:902 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0825ms total)
T6514 010:902 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0826ms total)
T6514 010:914 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0826ms total)
T6514 010:925 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0827ms total)
T6514 010:926 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0827ms total)
T6514 010:936 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0827ms total)
T6514 010:936 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0001ms, 0828ms total)
T6514 010:948 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 5B 52 1C 00  returns 0x04 (0000ms, 0828ms total)
T6514 010:965 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0829ms total)
T6514 010:966 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 5B 52 1C 00  returns 0x04 (0000ms, 0829ms total)
T4D64 010:978 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T4D64 011:078 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T4D64 011:180 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T6514 011:281 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0829ms total)
T6514 011:281 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0830ms total)
T6514 011:282 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0830ms total)
T6514 011:282 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0831ms total)
T6514 011:283 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0831ms total)
T6514 011:283 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0832ms total)
T6514 011:284 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0832ms total)
T6514 011:284 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0833ms total)
T6514 011:285 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0000ms, 0833ms total)
T6514 011:318 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0834ms total)
T6514 011:369 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0835ms total)
T6514 011:370 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0835ms total)
T6514 011:370 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0835ms total)
T6514 011:370 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0835ms total)
T6514 011:370 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0837ms total)
T6514 011:383 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0837ms total)
T6514 011:383 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0838ms total)
T6514 011:384 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 73 B9 10 00  returns 0x04 (0000ms, 0838ms total)
T6514 011:394 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0001ms, 0839ms total)
T6514 011:415 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 73 DF C8 03  returns 0x04 (0001ms, 0840ms total)
T6514 011:437 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0840ms total)
T6514 011:437 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0840ms total)
T6514 011:437 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0840ms total)
T6514 011:437 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0841ms total)
T6514 011:447 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0842ms total)
T6514 011:456 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0843ms total)
T6514 011:457 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0843ms total)
T6514 011:467 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0844ms total)
T6514 011:468 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: BD CF 10 00  returns 0x04 (0000ms, 0844ms total)
T6514 011:477 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 5B 52 1C 00  returns 0x04 (0001ms, 0845ms total)
T6514 011:495 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0846ms total)
T6514 011:496 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 5B 52 1C 00  returns 0x04 (0000ms, 0846ms total)
T4D64 011:506 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T4D64 011:607 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T4D64 011:709 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T6514 011:810 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0846ms total)
T6514 011:810 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0847ms total)
T6514 011:811 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0847ms total)
T6514 011:811 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0848ms total)
T6514 011:812 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0848ms total)
T6514 011:812 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0849ms total)
T6514 011:813 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0849ms total)
T6514 011:813 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0850ms total)
T6514 011:814 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: DD CF 10 00  returns 0x04 (0000ms, 0850ms total)
T6514 011:847 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0851ms total)
T6514 011:897 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0851ms total)
T6514 011:897 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0852ms total)
T6514 011:898 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0852ms total)
T6514 011:898 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0853ms total)
T6514 011:899 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0854ms total)
T6514 011:910 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0854ms total)
T6514 011:910 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0855ms total)
T6514 011:911 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 9D B9 10 00  returns 0x04 (0001ms, 0856ms total)
T6514 011:921 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: DD CF 10 00  returns 0x04 (0001ms, 0857ms total)
T6514 011:944 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 9D DF C8 03  returns 0x04 (0000ms, 0857ms total)
T6514 011:965 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0857ms total)
T6514 011:965 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0858ms total)
T6514 011:966 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0858ms total)
T6514 011:966 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0859ms total)
T6514 011:976 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0860ms total)
T6514 011:986 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0861ms total)
T6514 011:987 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0862ms total)
T6514 011:997 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0863ms total)
T6514 011:998 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: DD CF 10 00  returns 0x04 (0000ms, 0863ms total)
T6514 012:008 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 7D 52 1C 00  returns 0x04 (0000ms, 0863ms total)
T6514 012:026 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 95 40 05 00  returns 0x04 (0001ms, 0864ms total)
T6514 012:036 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 7D 52 1C 00  returns 0x04 (0001ms, 0865ms total)
T4D64 012:045 JLINK_IsHalted()  returns FALSE (0001ms, 0866ms total)
T4D64 012:147 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T4D64 012:248 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T6514 012:350 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0865ms total)
T6514 012:350 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0866ms total)
T6514 012:351 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0866ms total)
T6514 012:351 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0867ms total)
T6514 012:352 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0867ms total)
T6514 012:352 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0868ms total)
T6514 012:353 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0868ms total)
T6514 012:353 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0869ms total)
T6514 012:354 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: DD CF 10 00  returns 0x04 (0000ms, 0869ms total)
T6514 012:387 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0870ms total)
T6514 012:440 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0870ms total)
T6514 012:440 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0871ms total)
T6514 012:441 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0871ms total)
T6514 012:441 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0871ms total)
T6514 012:441 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0872ms total)
T6514 012:453 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0872ms total)
T6514 012:453 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0873ms total)
T6514 012:454 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 9D B9 10 00  returns 0x04 (0000ms, 0873ms total)
T6514 012:465 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: DD CF 10 00  returns 0x04 (0001ms, 0874ms total)
T6514 012:487 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 9D DF C8 03  returns 0x04 (0000ms, 0874ms total)
T6514 012:507 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0874ms total)
T6514 012:507 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0875ms total)
T6514 012:508 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0875ms total)
T6514 012:508 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0876ms total)
T6514 012:520 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0876ms total)
T6514 012:530 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0877ms total)
T6514 012:531 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0877ms total)
T6514 012:542 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0877ms total)
T6514 012:542 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C1 CF 10 00  returns 0x04 (0001ms, 0878ms total)
T6514 012:563 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 89 52 1C 00  returns 0x04 (0001ms, 0879ms total)
T6514 012:590 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0001ms, 0880ms total)
T6514 012:610 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 89 52 1C 00  returns 0x04 (0000ms, 0880ms total)
T4D64 012:629 JLINK_IsHalted()  returns FALSE (0001ms, 0881ms total)
T4D64 012:731 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T4D64 012:832 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T6514 012:933 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0880ms total)
T6514 012:933 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0881ms total)
T6514 012:934 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0881ms total)
T6514 012:934 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0882ms total)
T6514 012:935 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0882ms total)
T6514 012:935 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0883ms total)
T6514 012:936 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0883ms total)
T6514 012:936 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0884ms total)
T6514 012:937 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C1 CF 10 00  returns 0x04 (0000ms, 0884ms total)
T6514 012:968 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 0884ms total)
T6514 013:019 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0885ms total)
T6514 013:020 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0885ms total)
T6514 013:020 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0886ms total)
T6514 013:021 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0886ms total)
T6514 013:021 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0887ms total)
T6514 013:032 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0887ms total)
T6514 013:032 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0888ms total)
T6514 013:033 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 7F B9 10 00  returns 0x04 (0000ms, 0888ms total)
T6514 013:045 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C1 CF 10 00  returns 0x04 (0000ms, 0888ms total)
T6514 013:066 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 7F DF C8 03  returns 0x04 (0000ms, 0888ms total)
T6514 013:086 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0889ms total)
T6514 013:087 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0889ms total)
T6514 013:087 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0890ms total)
T6514 013:088 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0890ms total)
T6514 013:099 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0890ms total)
T6514 013:109 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0891ms total)
T6514 013:110 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0891ms total)
T6514 013:120 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0892ms total)
T6514 013:121 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C1 CF 10 00  returns 0x04 (0000ms, 0892ms total)
T6514 013:131 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 89 52 1C 00  returns 0x04 (0000ms, 0892ms total)
T6514 013:150 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0892ms total)
T6514 013:159 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 89 52 1C 00  returns 0x04 (0001ms, 0893ms total)
T4D64 013:170 JLINK_IsHalted()  returns FALSE (0001ms, 0894ms total)
T4D64 013:272 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T4D64 013:373 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T6514 013:474 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0893ms total)
T6514 013:474 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0894ms total)
T6514 013:475 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0894ms total)
T6514 013:475 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0895ms total)
T6514 013:476 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0895ms total)
T6514 013:476 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0896ms total)
T6514 013:477 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0896ms total)
T6514 013:477 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0896ms total)
T6514 013:477 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: C1 CF 10 00  returns 0x04 (0001ms, 0897ms total)
T6514 013:510 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0898ms total)
T6514 013:562 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0900ms total)
T6514 013:564 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0901ms total)
T6514 013:565 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0901ms total)
T6514 013:565 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0902ms total)
T6514 013:566 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0902ms total)
T6514 013:575 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0903ms total)
T6514 013:576 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0903ms total)
T6514 013:576 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 91 B9 10 00  returns 0x04 (0001ms, 0904ms total)
T6514 013:600 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: D9 CF 10 00  returns 0x04 (0000ms, 0904ms total)
T6514 013:632 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 91 DF C8 03  returns 0x04 (0001ms, 0905ms total)
T6514 013:663 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0906ms total)
T6514 013:664 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0907ms total)
T6514 013:665 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0907ms total)
T6514 013:665 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0907ms total)
T6514 013:675 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0907ms total)
T6514 013:685 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0907ms total)
T6514 013:685 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0908ms total)
T6514 013:696 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0908ms total)
T6514 013:696 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: D9 CF 10 00  returns 0x04 (0001ms, 0909ms total)
T6514 013:706 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 77 52 1C 00  returns 0x04 (0001ms, 0910ms total)
T6514 013:725 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0910ms total)
T6514 013:725 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 77 52 1C 00  returns 0x04 (0001ms, 0911ms total)
T4D64 013:734 JLINK_IsHalted()  returns FALSE (0001ms, 0912ms total)
T4D64 013:836 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T4D64 013:937 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T6514 014:039 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0911ms total)
T6514 014:039 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0000ms, 0911ms total)
T6514 014:039 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0911ms total)
T6514 014:039 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0002ms, 0913ms total)
T6514 014:041 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0913ms total)
T6514 014:041 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 00 00  returns 0x02 (0001ms, 0914ms total)
T6514 014:042 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0914ms total)
T6514 014:042 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0915ms total)
T6514 014:043 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: D9 CF 10 00  returns 0x04 (0000ms, 0915ms total)
T6514 014:076 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0916ms total)
T6514 014:127 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0917ms total)
T6514 014:128 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0917ms total)
T6514 014:128 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0918ms total)
T6514 014:129 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0918ms total)
T6514 014:129 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0919ms total)
T6514 014:140 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0002ms, 0921ms total)
T6514 014:142 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0000ms, 0921ms total)
T6514 014:142 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 91 B9 10 00  returns 0x04 (0000ms, 0921ms total)
T6514 014:152 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: D9 CF 10 00  returns 0x04 (0001ms, 0922ms total)
T6514 014:174 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 91 DF C8 03  returns 0x04 (0001ms, 0923ms total)
T6514 014:195 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0924ms total)
T6514 014:196 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: 00 00 00 00  returns 0x04 (0001ms, 0925ms total)
T6514 014:197 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0926ms total)
T6514 014:198 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0926ms total)
T6514 014:208 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 00  returns 0x01 (0001ms, 0927ms total)
T6514 014:219 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 0927ms total)
T6514 014:219 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0928ms total)
T6514 014:228 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0929ms total)
T6514 014:229 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: D9 CF 10 00  returns 0x04 (0000ms, 0929ms total)
T6514 014:238 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 77 52 1C 00  returns 0x04 (0001ms, 0930ms total)
T6514 014:257 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 8F 40 05 00  returns 0x04 (0000ms, 0930ms total)
T6514 014:257 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 77 52 1C 00  returns 0x04 (0001ms, 0931ms total)
T4D64 014:266 JLINK_IsHalted()  returns FALSE (0001ms, 0932ms total)
T4D64 014:368 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T4D64 014:470 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T6514 014:571 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0931ms total)
T6514 014:571 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 0932ms total)
T6514 014:572 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0932ms total)
T6514 014:572 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0001ms, 0933ms total)
T6514 014:573 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0933ms total)
T6514 014:573 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 0934ms total)
T6514 014:574 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0934ms total)
T6514 014:574 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 90 E1 A8 50 20 2A 0E C0  returns 0x08 (0001ms, 0935ms total)
T6514 014:586 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0000ms, 0935ms total)
T6514 014:629 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0936ms total)
T6514 014:680 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 4B 5E 6D 0B 00 00 00 00  returns 0x08 (0000ms, 0936ms total)
T6514 014:690 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: DB 5E 6D 0B 00 00 00 00  returns 0x08 (0000ms, 0936ms total)
T6514 014:698 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0002ms, 0938ms total)
T6514 014:700 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 0938ms total)
T6514 014:700 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 90 E1 A8 50 20 2A 0E C0  returns 0x08 (0001ms, 0939ms total)
T6514 014:719 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0939ms total)
T6514 014:719 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0001ms, 0940ms total)
T6514 014:730 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 B9 10 00  returns 0x04 (0000ms, 0940ms total)
T6514 014:739 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0001ms, 0941ms total)
T6514 014:758 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 DF C8 03  returns 0x04 (0000ms, 0941ms total)
T6514 014:777 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0000ms, 0941ms total)
T6514 014:777 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0001ms, 0942ms total)
T6514 014:786 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0943ms total)
T6514 014:787 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0943ms total)
T6514 014:804 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 0943ms total)
T6514 014:822 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0943ms total)
T6514 014:831 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0943ms total)
T6514 014:840 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 01 00 00 00  returns 0x04 (0002ms, 0945ms total)
T6514 014:850 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0000ms, 0945ms total)
T6514 014:861 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 29 74 26 00  returns 0x04 (0000ms, 0945ms total)
T6514 014:878 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 95 40 05 00  returns 0x04 (0001ms, 0946ms total)
T6514 014:888 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 29 74 26 00  returns 0x04 (0001ms, 0947ms total)
T4D64 014:897 JLINK_IsHalted()  returns FALSE (0001ms, 0948ms total)
T4D64 015:000 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T6514 015:101 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 0948ms total)
T6514 015:102 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 0948ms total)
T6514 015:102 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0949ms total)
T6514 015:103 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0000ms, 0949ms total)
T6514 015:103 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0950ms total)
T6514 015:104 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 0950ms total)
T6514 015:104 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0950ms total)
T6514 015:104 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 90 E1 A8 50 20 2A 0E C0  returns 0x08 (0001ms, 0951ms total)
T6514 015:116 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0000ms, 0951ms total)
T6514 015:148 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0952ms total)
T6514 015:200 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 4B 5E 6D 0B 00 00 00 00  returns 0x08 (0000ms, 0952ms total)
T6514 015:210 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: DB 5E 6D 0B 00 00 00 00  returns 0x08 (0001ms, 0953ms total)
T6514 015:221 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0953ms total)
T6514 015:221 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0954ms total)
T6514 015:222 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 90 E1 A8 50 20 2A 0E C0  returns 0x08 (0000ms, 0954ms total)
T6514 015:243 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0955ms total)
T6514 015:244 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0001ms, 0956ms total)
T6514 015:254 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 B9 10 00  returns 0x04 (0001ms, 0957ms total)
T6514 015:265 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0002ms, 0959ms total)
T6514 015:288 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 DF C8 03  returns 0x04 (0000ms, 0959ms total)
T6514 015:309 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0960ms total)
T6514 015:310 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F0 01 00 00  returns 0x04 (0000ms, 0960ms total)
T6514 015:319 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: 00 00  returns 0x02 (0001ms, 0961ms total)
T6514 015:320 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0961ms total)
T6514 015:339 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 0962ms total)
T6514 015:357 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 0963ms total)
T6514 015:368 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0963ms total)
T6514 015:378 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 01 00 00 00  returns 0x04 (0001ms, 0964ms total)
T6514 015:387 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 75 F1 1A 00  returns 0x04 (0001ms, 0965ms total)
T6514 015:396 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 29 74 26 00  returns 0x04 (0001ms, 0966ms total)
T6514 015:416 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: 95 40 05 00  returns 0x04 (0001ms, 0967ms total)
T6514 015:425 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 29 74 26 00  returns 0x04 (0001ms, 0968ms total)
T4D64 015:435 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T4D64 015:537 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T6514 015:638 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0968ms total)
T6514 015:638 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0002ms, 0970ms total)
T6514 015:640 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0970ms total)
T6514 015:640 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 0970ms total)
T6514 015:640 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 0970ms total)
T6514 015:640 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 0971ms total)
T6514 015:641 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 0971ms total)
T6514 015:641 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0002ms, 0973ms total)
T6514 015:653 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0001ms, 0974ms total)
T6514 015:687 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0975ms total)
T6514 015:740 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 0975ms total)
T6514 015:751 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 0975ms total)
T6514 015:761 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0975ms total)
T6514 015:761 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0976ms total)
T6514 015:762 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 0977ms total)
T6514 015:780 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0001ms, 0978ms total)
T6514 015:790 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 0978ms total)
T6514 015:801 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 83 5E 12 00  returns 0x04 (0000ms, 0978ms total)
T6514 015:810 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0001ms, 0979ms total)
T6514 015:831 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 83 84 CA 03  returns 0x04 (0001ms, 0980ms total)
T6514 015:849 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0000ms, 0980ms total)
T6514 015:860 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 0980ms total)
T6514 015:869 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0001ms, 0981ms total)
T6514 015:878 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 0982ms total)
T6514 015:888 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 0983ms total)
T6514 015:898 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 0984ms total)
T6514 015:899 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 0985ms total)
T6514 015:908 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0001ms, 0986ms total)
T6514 015:919 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0000ms, 0986ms total)
T6514 015:927 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 93 A2 27 00  returns 0x04 (0001ms, 0987ms total)
T6514 015:945 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0002ms, 0989ms total)
T6514 015:955 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 93 A2 27 00  returns 0x04 (0001ms, 0990ms total)
T4D64 015:965 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T4D64 016:066 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T6514 016:167 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 0990ms total)
T6514 016:167 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0002ms, 0992ms total)
T6514 016:169 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 0992ms total)
T6514 016:169 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 0992ms total)
T6514 016:169 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 0993ms total)
T6514 016:170 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 0993ms total)
T6514 016:170 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 0994ms total)
T6514 016:171 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0000ms, 0994ms total)
T6514 016:181 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0001ms, 0995ms total)
T6514 016:213 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 0996ms total)
T6514 016:264 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 0997ms total)
T6514 016:275 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 0998ms total)
T6514 016:287 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 0998ms total)
T6514 016:287 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 0999ms total)
T6514 016:288 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0000ms, 0999ms total)
T6514 016:311 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0000ms, 0999ms total)
T6514 016:322 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 0999ms total)
T6514 016:333 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 83 5E 12 00  returns 0x04 (0001ms, 1000ms total)
T6514 016:344 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0000ms, 1000ms total)
T6514 016:364 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 83 84 CA 03  returns 0x04 (0001ms, 1001ms total)
T6514 016:384 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0001ms, 1002ms total)
T6514 016:393 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1003ms total)
T6514 016:403 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F0 01  returns 0x02 (0001ms, 1004ms total)
T6514 016:412 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1005ms total)
T6514 016:423 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1006ms total)
T6514 016:432 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1007ms total)
T6514 016:433 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1007ms total)
T6514 016:443 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0000ms, 1007ms total)
T6514 016:452 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E5 1F 1C 00  returns 0x04 (0000ms, 1007ms total)
T6514 016:462 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 93 A2 27 00  returns 0x04 (0000ms, 1007ms total)
T6514 016:480 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1008ms total)
T6514 016:491 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 93 A2 27 00  returns 0x04 (0001ms, 1009ms total)
T4D64 016:501 JLINK_IsHalted()  returns FALSE (0001ms, 1010ms total)
T4D64 016:602 JLINK_IsHalted()  returns FALSE (0001ms, 1010ms total)
T6514 016:704 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1010ms total)
T6514 016:705 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1010ms total)
T6514 016:705 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1011ms total)
T6514 016:706 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1011ms total)
T6514 016:706 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1012ms total)
T6514 016:707 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1012ms total)
T6514 016:707 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1013ms total)
T6514 016:708 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0000ms, 1013ms total)
T6514 016:708 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0001ms, 1014ms total)
T6514 016:741 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1015ms total)
T6514 016:793 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1016ms total)
T6514 016:794 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1016ms total)
T6514 016:794 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1017ms total)
T6514 016:795 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1017ms total)
T6514 016:795 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1018ms total)
T6514 016:806 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1018ms total)
T6514 016:816 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1019ms total)
T6514 016:817 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1019ms total)
T6514 016:827 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0000ms, 1019ms total)
T6514 016:849 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0000ms, 1019ms total)
T6514 016:870 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1019ms total)
T6514 016:881 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1020ms total)
T6514 016:882 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1020ms total)
T6514 016:893 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1020ms total)
T6514 016:903 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1020ms total)
T6514 016:923 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1021ms total)
T6514 016:924 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1021ms total)
T6514 016:932 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0001ms, 1022ms total)
T6514 016:933 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0001ms, 1023ms total)
T6514 016:943 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: CB 55 28 00  returns 0x04 (0000ms, 1023ms total)
T6514 016:963 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1023ms total)
T6514 016:963 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: CB 55 28 00  returns 0x04 (0001ms, 1024ms total)
T4D64 016:973 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T4D64 017:075 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T4D64 017:176 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T6514 017:277 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1024ms total)
T6514 017:277 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1025ms total)
T6514 017:278 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 1027ms total)
T6514 017:280 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1027ms total)
T6514 017:280 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1027ms total)
T6514 017:280 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1028ms total)
T6514 017:281 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1028ms total)
T6514 017:281 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1029ms total)
T6514 017:282 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0000ms, 1029ms total)
T6514 017:314 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1029ms total)
T6514 017:364 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1030ms total)
T6514 017:365 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1030ms total)
T6514 017:365 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1031ms total)
T6514 017:366 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1031ms total)
T6514 017:366 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1032ms total)
T6514 017:378 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1032ms total)
T6514 017:388 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1032ms total)
T6514 017:388 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0002ms, 1034ms total)
T6514 017:400 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0000ms, 1034ms total)
T6514 017:421 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1035ms total)
T6514 017:441 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1036ms total)
T6514 017:452 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1037ms total)
T6514 017:453 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1037ms total)
T6514 017:463 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1038ms total)
T6514 017:475 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1038ms total)
T6514 017:495 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1039ms total)
T6514 017:496 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1039ms total)
T6514 017:507 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0000ms, 1039ms total)
T6514 017:507 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2D D3 1C 00  returns 0x04 (0001ms, 1040ms total)
T6514 017:518 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: CB 55 28 00  returns 0x04 (0000ms, 1040ms total)
T6514 017:536 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1040ms total)
T6514 017:545 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 17 50 11 00  returns 0x04 (0002ms, 1042ms total)
T4D64 017:564 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T4D64 017:665 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T4D64 017:766 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T6514 017:867 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1042ms total)
T6514 017:867 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1043ms total)
T6514 017:868 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1044ms total)
T6514 017:869 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1044ms total)
T6514 017:869 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1045ms total)
T6514 017:870 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1045ms total)
T6514 017:870 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1046ms total)
T6514 017:871 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0000ms, 1046ms total)
T6514 017:871 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0001ms, 1047ms total)
T6514 017:904 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1047ms total)
T6514 017:956 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1047ms total)
T6514 017:956 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1048ms total)
T6514 017:957 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1048ms total)
T6514 017:957 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1049ms total)
T6514 017:958 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0000ms, 1049ms total)
T6514 017:968 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1050ms total)
T6514 017:969 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1050ms total)
T6514 017:969 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0001ms, 1051ms total)
T6514 017:982 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1051ms total)
T6514 018:002 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 75 84 CA 03  returns 0x04 (0000ms, 1051ms total)
T6514 018:023 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1052ms total)
T6514 018:024 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1052ms total)
T6514 018:024 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1052ms total)
T6514 018:024 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1053ms total)
T6514 018:035 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1054ms total)
T6514 018:055 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1054ms total)
T6514 018:055 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1055ms total)
T6514 018:065 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0000ms, 1055ms total)
T6514 018:065 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1055ms total)
T6514 018:076 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FF 55 28 00  returns 0x04 (0000ms, 1055ms total)
T6514 018:094 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1056ms total)
T6514 018:103 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FF 55 28 00  returns 0x04 (0001ms, 1057ms total)
T4D64 018:124 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T4D64 018:225 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T4D64 018:326 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T6514 018:427 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1058ms total)
T6514 018:428 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0000ms, 1058ms total)
T6514 018:428 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1058ms total)
T6514 018:428 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1059ms total)
T6514 018:429 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1059ms total)
T6514 018:429 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1060ms total)
T6514 018:430 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1060ms total)
T6514 018:430 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1061ms total)
T6514 018:431 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1061ms total)
T6514 018:464 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1061ms total)
T6514 018:516 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1062ms total)
T6514 018:517 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1063ms total)
T6514 018:518 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1063ms total)
T6514 018:518 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1063ms total)
T6514 018:518 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1064ms total)
T6514 018:529 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1065ms total)
T6514 018:530 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1065ms total)
T6514 018:530 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0000ms, 1065ms total)
T6514 018:543 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 55 50 11 00  returns 0x04 (0000ms, 1065ms total)
T6514 018:573 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1066ms total)
T6514 018:605 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1067ms total)
T6514 018:606 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1067ms total)
T6514 018:606 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1067ms total)
T6514 018:606 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0002ms, 1069ms total)
T6514 018:619 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0000ms, 1069ms total)
T6514 018:647 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1070ms total)
T6514 018:648 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1070ms total)
T6514 018:658 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0001ms, 1071ms total)
T6514 018:659 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 39 D3 1C 00  returns 0x04 (0000ms, 1071ms total)
T6514 018:677 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D5 55 28 00  returns 0x04 (0000ms, 1071ms total)
T6514 018:705 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1072ms total)
T6514 018:716 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D5 55 28 00  returns 0x04 (0000ms, 1072ms total)
T4D64 018:733 JLINK_IsHalted()  returns FALSE (0001ms, 1073ms total)
T4D64 018:835 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T6514 018:936 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1072ms total)
T6514 018:936 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0000ms, 1072ms total)
T6514 018:936 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1072ms total)
T6514 018:936 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1073ms total)
T6514 018:937 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1073ms total)
T6514 018:937 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1074ms total)
T6514 018:938 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1074ms total)
T6514 018:938 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1075ms total)
T6514 018:939 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 39 D3 1C 00  returns 0x04 (0000ms, 1075ms total)
T6514 018:967 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1076ms total)
T6514 019:012 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CB DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1077ms total)
T6514 019:013 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 66 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1077ms total)
T6514 019:013 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1078ms total)
T6514 019:014 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1078ms total)
T6514 019:014 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1079ms total)
T6514 019:024 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1079ms total)
T6514 019:024 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1079ms total)
T6514 019:024 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0001ms, 1080ms total)
T6514 019:035 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 39 D3 1C 00  returns 0x04 (0001ms, 1081ms total)
T6514 019:061 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1082ms total)
T6514 019:081 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1083ms total)
T6514 019:082 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1083ms total)
T6514 019:082 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1083ms total)
T6514 019:082 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0002ms, 1085ms total)
T6514 019:092 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1086ms total)
T6514 019:111 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1087ms total)
T6514 019:112 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1088ms total)
T6514 019:121 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 02 00 00 00  returns 0x04 (0001ms, 1089ms total)
T6514 019:122 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 39 D3 1C 00  returns 0x04 (0000ms, 1089ms total)
T6514 019:131 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D5 55 28 00  returns 0x04 (0000ms, 1089ms total)
T6514 019:150 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1089ms total)
T6514 019:159 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D5 55 28 00  returns 0x04 (0000ms, 1089ms total)
T4D64 019:169 JLINK_IsHalted()  returns FALSE (0001ms, 1090ms total)
T4D64 019:270 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T4D64 019:372 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T6514 019:473 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1089ms total)
T6514 019:473 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1090ms total)
T6514 019:474 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1090ms total)
T6514 019:474 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1091ms total)
T6514 019:475 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1091ms total)
T6514 019:475 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1092ms total)
T6514 019:476 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1092ms total)
T6514 019:476 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: D8 86 E8 9C 86 76 18 C0  returns 0x08 (0001ms, 1093ms total)
T6514 019:477 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 39 D3 1C 00  returns 0x04 (0000ms, 1093ms total)
T6514 019:509 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1094ms total)
T6514 019:561 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3E DE C9 0D 00 00 00 00  returns 0x08 (0002ms, 1096ms total)
T6514 019:573 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: DB DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1096ms total)
T6514 019:583 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1097ms total)
T6514 019:584 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1097ms total)
T6514 019:584 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: E0 24 06 81 D1 56 1A C0  returns 0x08 (0000ms, 1097ms total)
T6514 019:606 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1098ms total)
T6514 019:607 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1098ms total)
T6514 019:607 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0000ms, 1098ms total)
T6514 019:631 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 93 20 1C 00  returns 0x04 (0001ms, 1100ms total)
T6514 019:661 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0000ms, 1100ms total)
T6514 019:680 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1101ms total)
T6514 019:681 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1101ms total)
T6514 019:681 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1102ms total)
T6514 019:682 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1102ms total)
T6514 019:690 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1103ms total)
T6514 019:708 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1104ms total)
T6514 019:709 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1104ms total)
T6514 019:720 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 03 00 00 00  returns 0x04 (0001ms, 1105ms total)
T6514 019:730 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 93 20 1C 00  returns 0x04 (0000ms, 1105ms total)
T6514 019:739 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 2F A3 27 00  returns 0x04 (0001ms, 1106ms total)
T6514 019:757 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0002ms, 1108ms total)
T6514 019:759 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 2F A3 27 00  returns 0x04 (0000ms, 1108ms total)
T4D64 019:767 JLINK_IsHalted()  returns FALSE (0001ms, 1109ms total)
T4D64 019:869 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T4D64 019:970 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T6514 020:073 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1108ms total)
T6514 020:073 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1109ms total)
T6514 020:074 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1109ms total)
T6514 020:074 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0001ms, 1110ms total)
T6514 020:075 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1110ms total)
T6514 020:075 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1111ms total)
T6514 020:076 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1111ms total)
T6514 020:076 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: E0 24 06 81 D1 56 1A C0  returns 0x08 (0001ms, 1112ms total)
T6514 020:087 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 93 20 1C 00  returns 0x04 (0000ms, 1112ms total)
T6514 020:122 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1113ms total)
T6514 020:174 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3E DE C9 0D 00 00 00 00  returns 0x08 (0002ms, 1115ms total)
T6514 020:186 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: DB DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1115ms total)
T6514 020:196 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1116ms total)
T6514 020:197 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1116ms total)
T6514 020:197 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: E0 24 06 81 D1 56 1A C0  returns 0x08 (0000ms, 1116ms total)
T6514 020:219 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1117ms total)
T6514 020:220 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1117ms total)
T6514 020:220 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1118ms total)
T6514 020:231 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 93 20 1C 00  returns 0x04 (0001ms, 1119ms total)
T6514 020:250 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0000ms, 1119ms total)
T6514 020:268 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1120ms total)
T6514 020:269 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: ED 01 00 00  returns 0x04 (0000ms, 1120ms total)
T6514 020:269 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1121ms total)
T6514 020:270 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1121ms total)
T6514 020:279 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1122ms total)
T6514 020:297 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1123ms total)
T6514 020:298 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1123ms total)
T6514 020:308 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 03 00 00 00  returns 0x04 (0001ms, 1124ms total)
T6514 020:317 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 93 20 1C 00  returns 0x04 (0001ms, 1125ms total)
T6514 020:326 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 2F A3 27 00  returns 0x04 (0001ms, 1126ms total)
T6514 020:345 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1127ms total)
T6514 020:346 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 2F A3 27 00  returns 0x04 (0000ms, 1127ms total)
T4D64 020:355 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T4D64 020:457 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T4D64 020:558 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T6514 020:658 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1128ms total)
T6514 020:659 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1128ms total)
T6514 020:660 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1128ms total)
T6514 020:660 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1129ms total)
T6514 020:661 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1129ms total)
T6514 020:661 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1130ms total)
T6514 020:662 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1130ms total)
T6514 020:662 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1131ms total)
T6514 020:684 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0000ms, 1131ms total)
T6514 020:728 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1132ms total)
T6514 020:781 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0001ms, 1133ms total)
T6514 020:792 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1134ms total)
T6514 020:803 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1135ms total)
T6514 020:804 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1135ms total)
T6514 020:804 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1136ms total)
T6514 020:827 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1137ms total)
T6514 020:828 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1138ms total)
T6514 020:839 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0000ms, 1138ms total)
T6514 020:851 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0001ms, 1139ms total)
T6514 020:873 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0000ms, 1139ms total)
T6514 020:891 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1139ms total)
T6514 020:891 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1140ms total)
T6514 020:902 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1140ms total)
T6514 020:902 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1141ms total)
T6514 020:912 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1141ms total)
T6514 020:922 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1141ms total)
T6514 020:922 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1141ms total)
T6514 020:932 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0001ms, 1143ms total)
T6514 020:943 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0000ms, 1143ms total)
T6514 020:952 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 35 A3 27 00  returns 0x04 (0000ms, 1143ms total)
T6514 020:970 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1144ms total)
T6514 020:980 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 35 A3 27 00  returns 0x04 (0001ms, 1145ms total)
T4D64 020:990 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T4D64 021:091 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T6514 021:193 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1145ms total)
T6514 021:193 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1146ms total)
T6514 021:194 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1146ms total)
T6514 021:194 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1147ms total)
T6514 021:195 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1147ms total)
T6514 021:196 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1147ms total)
T6514 021:196 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1147ms total)
T6514 021:196 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1147ms total)
T6514 021:208 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0000ms, 1147ms total)
T6514 021:240 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1147ms total)
T6514 021:288 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0002ms, 1149ms total)
T6514 021:299 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1150ms total)
T6514 021:308 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1151ms total)
T6514 021:309 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1151ms total)
T6514 021:309 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1152ms total)
T6514 021:327 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1153ms total)
T6514 021:328 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1153ms total)
T6514 021:337 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0001ms, 1154ms total)
T6514 021:348 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0000ms, 1154ms total)
T6514 021:366 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0001ms, 1155ms total)
T6514 021:387 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0001ms, 1156ms total)
T6514 021:388 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1156ms total)
T6514 021:397 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: ED 01  returns 0x02 (0000ms, 1156ms total)
T6514 021:397 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1157ms total)
T6514 021:407 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1157ms total)
T6514 021:416 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1158ms total)
T6514 021:417 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1159ms total)
T6514 021:426 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0001ms, 1160ms total)
T6514 021:435 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 91 20 1C 00  returns 0x04 (0001ms, 1161ms total)
T6514 021:445 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 35 A3 27 00  returns 0x04 (0001ms, 1162ms total)
T6514 021:463 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1163ms total)
T6514 021:474 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 35 A3 27 00  returns 0x04 (0000ms, 1163ms total)
T4D64 021:483 JLINK_IsHalted()  returns FALSE (0001ms, 1164ms total)
T4D64 021:585 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T4D64 021:686 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T6514 021:788 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1163ms total)
T6514 021:788 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1164ms total)
T6514 021:789 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1164ms total)
T6514 021:789 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1165ms total)
T6514 021:790 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1165ms total)
T6514 021:790 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1166ms total)
T6514 021:791 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1166ms total)
T6514 021:791 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1167ms total)
T6514 021:792 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 27 D3 1C 00  returns 0x04 (0001ms, 1168ms total)
T6514 021:825 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T6514 021:879 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0001ms, 1170ms total)
T6514 021:880 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1171ms total)
T6514 021:881 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1171ms total)
T6514 021:881 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1172ms total)
T6514 021:882 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1172ms total)
T6514 021:894 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1172ms total)
T6514 021:905 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1173ms total)
T6514 021:906 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 67 5E 12 00  returns 0x04 (0000ms, 1173ms total)
T6514 021:916 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 27 D3 1C 00  returns 0x04 (0001ms, 1174ms total)
T6514 021:939 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 67 84 CA 03  returns 0x04 (0000ms, 1174ms total)
T6514 021:961 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1174ms total)
T6514 021:972 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1174ms total)
T6514 021:972 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1175ms total)
T6514 021:982 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1176ms total)
T6514 021:994 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1177ms total)
T6514 022:013 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1177ms total)
T6514 022:013 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1178ms total)
T6514 022:023 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0001ms, 1179ms total)
T6514 022:024 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 27 D3 1C 00  returns 0x04 (0000ms, 1179ms total)
T6514 022:034 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C3 55 28 00  returns 0x04 (0000ms, 1179ms total)
T6514 022:052 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1179ms total)
T6514 022:061 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C3 55 28 00  returns 0x04 (0000ms, 1179ms total)
T4D64 022:071 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T4D64 022:171 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T4D64 022:272 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T6514 022:373 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1180ms total)
T6514 022:374 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1180ms total)
T6514 022:375 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1180ms total)
T6514 022:375 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1181ms total)
T6514 022:376 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1181ms total)
T6514 022:376 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1182ms total)
T6514 022:377 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1182ms total)
T6514 022:377 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1183ms total)
T6514 022:378 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 27 D3 1C 00  returns 0x04 (0000ms, 1183ms total)
T6514 022:410 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1183ms total)
T6514 022:461 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0000ms, 1183ms total)
T6514 022:461 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1184ms total)
T6514 022:462 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1184ms total)
T6514 022:462 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1185ms total)
T6514 022:463 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1185ms total)
T6514 022:473 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1186ms total)
T6514 022:485 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1186ms total)
T6514 022:485 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 67 5E 12 00  returns 0x04 (0001ms, 1187ms total)
T6514 022:496 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 27 D3 1C 00  returns 0x04 (0001ms, 1188ms total)
T6514 022:516 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 67 84 CA 03  returns 0x04 (0001ms, 1189ms total)
T6514 022:537 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1189ms total)
T6514 022:549 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1190ms total)
T6514 022:549 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1191ms total)
T6514 022:559 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1192ms total)
T6514 022:570 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1193ms total)
T6514 022:598 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1193ms total)
T6514 022:598 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 1195ms total)
T6514 022:608 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0000ms, 1195ms total)
T6514 022:608 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0002ms, 1197ms total)
T6514 022:629 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: F9 55 28 00  returns 0x04 (0000ms, 1197ms total)
T6514 022:656 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1197ms total)
T6514 022:665 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: F9 55 28 00  returns 0x04 (0001ms, 1198ms total)
T4D64 022:683 JLINK_IsHalted()  returns FALSE (0001ms, 1199ms total)
T4D64 022:785 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T6514 022:886 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1198ms total)
T6514 022:886 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1199ms total)
T6514 022:887 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1199ms total)
T6514 022:887 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1199ms total)
T6514 022:887 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0002ms, 1201ms total)
T6514 022:889 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1201ms total)
T6514 022:889 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1202ms total)
T6514 022:890 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1202ms total)
T6514 022:890 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0001ms, 1203ms total)
T6514 022:918 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1204ms total)
T6514 022:965 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0001ms, 1205ms total)
T6514 022:966 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1205ms total)
T6514 022:966 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1206ms total)
T6514 022:967 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1206ms total)
T6514 022:967 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1207ms total)
T6514 022:978 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1208ms total)
T6514 022:979 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1208ms total)
T6514 022:979 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 53 5E 12 00  returns 0x04 (0001ms, 1209ms total)
T6514 022:989 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0001ms, 1210ms total)
T6514 023:007 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 53 84 CA 03  returns 0x04 (0000ms, 1210ms total)
T6514 023:026 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1211ms total)
T6514 023:027 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1211ms total)
T6514 023:027 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1211ms total)
T6514 023:027 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0002ms, 1213ms total)
T6514 023:039 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0000ms, 1213ms total)
T6514 023:057 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1214ms total)
T6514 023:058 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1214ms total)
T6514 023:067 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0001ms, 1215ms total)
T6514 023:068 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0000ms, 1215ms total)
T6514 023:077 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: F9 55 28 00  returns 0x04 (0000ms, 1215ms total)
T6514 023:096 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1216ms total)
T6514 023:097 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: F9 55 28 00  returns 0x04 (0000ms, 1216ms total)
T4D64 023:106 JLINK_IsHalted()  returns FALSE (0001ms, 1217ms total)
T4D64 023:208 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T4D64 023:309 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T6514 023:411 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1216ms total)
T6514 023:411 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1217ms total)
T6514 023:412 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1217ms total)
T6514 023:412 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1218ms total)
T6514 023:413 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1218ms total)
T6514 023:413 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1219ms total)
T6514 023:414 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1219ms total)
T6514 023:414 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1220ms total)
T6514 023:415 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0000ms, 1220ms total)
T6514 023:448 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1220ms total)
T6514 023:499 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0000ms, 1220ms total)
T6514 023:499 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1221ms total)
T6514 023:500 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1221ms total)
T6514 023:500 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T6514 023:501 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1222ms total)
T6514 023:511 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1222ms total)
T6514 023:511 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1223ms total)
T6514 023:512 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 53 5E 12 00  returns 0x04 (0000ms, 1223ms total)
T6514 023:523 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: E9 D2 1C 00  returns 0x04 (0001ms, 1224ms total)
T6514 023:543 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 7D 84 CA 03  returns 0x04 (0001ms, 1225ms total)
T6514 023:573 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1226ms total)
T6514 023:574 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1226ms total)
T6514 023:574 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1227ms total)
T6514 023:575 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1227ms total)
T6514 023:586 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1228ms total)
T6514 023:605 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1228ms total)
T6514 023:606 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1228ms total)
T6514 023:617 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0000ms, 1228ms total)
T6514 023:617 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0001ms, 1229ms total)
T6514 023:627 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: ED 55 28 00  returns 0x04 (0001ms, 1230ms total)
T6514 023:645 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1231ms total)
T6514 023:656 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: ED 55 28 00  returns 0x04 (0000ms, 1231ms total)
T4D64 023:665 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T4D64 023:767 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T4D64 023:868 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T6514 023:969 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1231ms total)
T6514 023:969 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1232ms total)
T6514 023:970 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1232ms total)
T6514 023:970 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1233ms total)
T6514 023:971 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1233ms total)
T6514 023:971 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1234ms total)
T6514 023:972 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1234ms total)
T6514 023:972 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1235ms total)
T6514 023:973 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1235ms total)
T6514 024:005 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1236ms total)
T6514 024:057 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0001ms, 1237ms total)
T6514 024:058 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1237ms total)
T6514 024:058 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1238ms total)
T6514 024:059 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1238ms total)
T6514 024:059 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1239ms total)
T6514 024:070 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1240ms total)
T6514 024:071 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1240ms total)
T6514 024:071 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 7D 5E 12 00  returns 0x04 (0001ms, 1241ms total)
T6514 024:082 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1241ms total)
T6514 024:104 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 7D 84 CA 03  returns 0x04 (0001ms, 1242ms total)
T6514 024:125 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1243ms total)
T6514 024:126 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1244ms total)
T6514 024:127 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1244ms total)
T6514 024:127 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1245ms total)
T6514 024:139 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1246ms total)
T6514 024:160 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1246ms total)
T6514 024:160 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T6514 024:171 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0000ms, 1247ms total)
T6514 024:171 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0001ms, 1248ms total)
T6514 024:180 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: ED 55 28 00  returns 0x04 (0001ms, 1249ms total)
T6514 024:201 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1250ms total)
T6514 024:210 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: ED 55 28 00  returns 0x04 (0000ms, 1250ms total)
T4D64 024:220 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T4D64 024:321 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T4D64 024:423 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T6514 024:523 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1250ms total)
T6514 024:523 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0002ms, 1252ms total)
T6514 024:525 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1253ms total)
T6514 024:526 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1253ms total)
T6514 024:526 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1254ms total)
T6514 024:527 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1254ms total)
T6514 024:527 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1254ms total)
T6514 024:527 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1255ms total)
T6514 024:528 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3B D3 1C 00  returns 0x04 (0000ms, 1255ms total)
T6514 024:559 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1256ms total)
T6514 024:611 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0000ms, 1256ms total)
T6514 024:611 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1257ms total)
T6514 024:612 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1257ms total)
T6514 024:612 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0002ms, 1259ms total)
T6514 024:614 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1259ms total)
T6514 024:624 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1259ms total)
T6514 024:624 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0001ms, 1260ms total)
T6514 024:625 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: D1 5E 12 00  returns 0x04 (0000ms, 1260ms total)
T6514 024:646 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 6D D3 1C 00  returns 0x04 (0001ms, 1261ms total)
T6514 024:678 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: D1 84 CA 03  returns 0x04 (0000ms, 1261ms total)
T6514 024:698 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1262ms total)
T6514 024:699 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1262ms total)
T6514 024:699 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1263ms total)
T6514 024:700 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1264ms total)
T6514 024:709 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0000ms, 1264ms total)
T6514 024:726 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1265ms total)
T6514 024:727 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1266ms total)
T6514 024:737 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0001ms, 1267ms total)
T6514 024:738 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 6D D3 1C 00  returns 0x04 (0000ms, 1267ms total)
T6514 024:747 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 19 56 28 00  returns 0x04 (0001ms, 1268ms total)
T6514 024:765 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1268ms total)
T6514 024:774 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 19 56 28 00  returns 0x04 (0001ms, 1269ms total)
T4D64 024:784 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T4D64 024:886 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T4D64 024:987 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T6514 025:089 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1269ms total)
T6514 025:089 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0001ms, 1270ms total)
T6514 025:090 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1270ms total)
T6514 025:090 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1270ms total)
T6514 025:091 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1271ms total)
T6514 025:091 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1271ms total)
T6514 025:091 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1271ms total)
T6514 025:091 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0001ms, 1272ms total)
T6514 025:092 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 6D D3 1C 00  returns 0x04 (0000ms, 1272ms total)
T6514 025:124 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T6514 025:177 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: E1 DC C9 0D 00 00 00 00  returns 0x08 (0000ms, 1273ms total)
T6514 025:177 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 60 DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1273ms total)
T6514 025:177 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1274ms total)
T6514 025:178 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T6514 025:179 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 00 D5 61 CB 1D D9 DC 3F  returns 0x08 (0000ms, 1275ms total)
T6514 025:189 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0002ms, 1278ms total)
T6514 025:191 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1278ms total)
T6514 025:191 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: D1 5E 12 00  returns 0x04 (0000ms, 1278ms total)
T6514 025:203 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 6D D3 1C 00  returns 0x04 (0000ms, 1278ms total)
T6514 025:221 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: D1 84 CA 03  returns 0x04 (0000ms, 1278ms total)
T6514 025:239 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1279ms total)
T6514 025:240 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: F4 01 00 00  returns 0x04 (0000ms, 1279ms total)
T6514 025:240 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1279ms total)
T6514 025:240 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1279ms total)
T6514 025:250 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0000ms, 1280ms total)
T6514 025:270 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1280ms total)
T6514 025:270 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1281ms total)
T6514 025:280 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 04 00 00 00  returns 0x04 (0000ms, 1281ms total)
T6514 025:280 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 6D D3 1C 00  returns 0x04 (0001ms, 1282ms total)
T6514 025:290 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 19 56 28 00  returns 0x04 (0000ms, 1282ms total)
T6514 025:308 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1283ms total)
T6514 025:317 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 19 56 28 00  returns 0x04 (0001ms, 1284ms total)
T4D64 025:328 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T4D64 025:429 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T4D64 025:531 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T6514 025:632 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1284ms total)
T6514 025:632 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1285ms total)
T6514 025:633 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1285ms total)
T6514 025:633 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1286ms total)
T6514 025:634 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1286ms total)
T6514 025:634 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1287ms total)
T6514 025:635 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1287ms total)
T6514 025:635 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1288ms total)
T6514 025:648 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0001ms, 1289ms total)
T6514 025:690 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1289ms total)
T6514 025:739 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1290ms total)
T6514 025:748 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1291ms total)
T6514 025:758 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1292ms total)
T6514 025:759 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1292ms total)
T6514 025:759 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1293ms total)
T6514 025:778 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1293ms total)
T6514 025:778 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0002ms, 1295ms total)
T6514 025:789 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1296ms total)
T6514 025:798 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0001ms, 1297ms total)
T6514 025:817 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0001ms, 1298ms total)
T6514 025:835 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1299ms total)
T6514 025:836 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1299ms total)
T6514 025:845 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1299ms total)
T6514 025:845 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1300ms total)
T6514 025:856 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1300ms total)
T6514 025:874 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1301ms total)
T6514 025:875 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1301ms total)
T6514 025:885 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1302ms total)
T6514 025:895 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0001ms, 1303ms total)
T6514 025:904 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E3 A1 27 00  returns 0x04 (0001ms, 1304ms total)
T6514 025:922 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1305ms total)
T6514 025:923 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E3 A1 27 00  returns 0x04 (0000ms, 1305ms total)
T4D64 025:933 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T4D64 026:034 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T6514 026:135 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1305ms total)
T6514 026:135 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1306ms total)
T6514 026:136 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1306ms total)
T6514 026:136 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1307ms total)
T6514 026:137 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1307ms total)
T6514 026:137 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1308ms total)
T6514 026:138 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1308ms total)
T6514 026:138 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1309ms total)
T6514 026:150 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0000ms, 1309ms total)
T6514 026:182 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1310ms total)
T6514 026:230 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1310ms total)
T6514 026:240 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1310ms total)
T6514 026:249 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1310ms total)
T6514 026:249 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1311ms total)
T6514 026:250 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1312ms total)
T6514 026:269 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1312ms total)
T6514 026:269 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1313ms total)
T6514 026:278 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1314ms total)
T6514 026:288 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0000ms, 1314ms total)
T6514 026:307 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0000ms, 1314ms total)
T6514 026:326 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0000ms, 1314ms total)
T6514 026:326 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1315ms total)
T6514 026:336 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: F4 01  returns 0x02 (0001ms, 1316ms total)
T6514 026:337 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1316ms total)
T6514 026:346 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1317ms total)
T6514 026:364 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1317ms total)
T6514 026:364 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1318ms total)
T6514 026:373 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1319ms total)
T6514 026:384 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 1F 1C 00  returns 0x04 (0000ms, 1319ms total)
T6514 026:392 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E3 A1 27 00  returns 0x04 (0002ms, 1321ms total)
T6514 026:411 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1322ms total)
T6514 026:412 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E3 A1 27 00  returns 0x04 (0000ms, 1322ms total)
T4D64 026:423 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T4D64 026:524 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T4D64 026:626 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T6514 026:727 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1322ms total)
T6514 026:727 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1322ms total)
T6514 026:727 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1323ms total)
T6514 026:728 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1323ms total)
T6514 026:728 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0002ms, 1325ms total)
T6514 026:730 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1325ms total)
T6514 026:730 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1326ms total)
T6514 026:731 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1326ms total)
T6514 026:731 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0001ms, 1327ms total)
T6514 026:763 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1328ms total)
T6514 026:817 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1329ms total)
T6514 026:818 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1330ms total)
T6514 026:819 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1330ms total)
T6514 026:819 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1331ms total)
T6514 026:820 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1331ms total)
T6514 026:831 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1332ms total)
T6514 026:841 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1333ms total)
T6514 026:842 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0001ms, 1334ms total)
T6514 026:853 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0001ms, 1335ms total)
T6514 026:875 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0000ms, 1335ms total)
T6514 026:895 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1336ms total)
T6514 026:906 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1337ms total)
T6514 026:907 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1337ms total)
T6514 026:917 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1338ms total)
T6514 026:928 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1339ms total)
T6514 026:948 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1340ms total)
T6514 026:949 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1340ms total)
T6514 026:960 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1340ms total)
T6514 026:960 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0001ms, 1341ms total)
T6514 026:970 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: B9 55 28 00  returns 0x04 (0001ms, 1342ms total)
T6514 026:988 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1343ms total)
T6514 026:998 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: B9 55 28 00  returns 0x04 (0001ms, 1344ms total)
T4D64 027:008 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T4D64 027:109 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T4D64 027:210 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T6514 027:311 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1344ms total)
T6514 027:311 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1345ms total)
T6514 027:312 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1345ms total)
T6514 027:312 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1346ms total)
T6514 027:313 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1346ms total)
T6514 027:313 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1347ms total)
T6514 027:314 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1348ms total)
T6514 027:315 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1348ms total)
T6514 027:315 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0000ms, 1348ms total)
T6514 027:347 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1348ms total)
T6514 027:399 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1349ms total)
T6514 027:400 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1349ms total)
T6514 027:400 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1349ms total)
T6514 027:400 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1350ms total)
T6514 027:401 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1350ms total)
T6514 027:412 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1350ms total)
T6514 027:423 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1350ms total)
T6514 027:423 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0001ms, 1351ms total)
T6514 027:435 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0001ms, 1352ms total)
T6514 027:455 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0001ms, 1353ms total)
T6514 027:476 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1353ms total)
T6514 027:485 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1354ms total)
T6514 027:486 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1354ms total)
T6514 027:496 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1354ms total)
T6514 027:505 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1354ms total)
T6514 027:524 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1354ms total)
T6514 027:524 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T6514 027:533 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1356ms total)
T6514 027:534 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 05 D3 1C 00  returns 0x04 (0000ms, 1356ms total)
T6514 027:543 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 29 50 11 00  returns 0x04 (0000ms, 1356ms total)
T6514 027:570 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1357ms total)
T6514 027:589 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 0B 56 28 00  returns 0x04 (0001ms, 1358ms total)
T4D64 027:608 JLINK_IsHalted()  returns FALSE (0001ms, 1359ms total)
T4D64 027:709 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T4D64 027:810 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T6514 027:911 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1358ms total)
T6514 027:911 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1359ms total)
T6514 027:912 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1359ms total)
T6514 027:912 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1360ms total)
T6514 027:913 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1361ms total)
T6514 027:914 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1361ms total)
T6514 027:914 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1361ms total)
T6514 027:914 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1362ms total)
T6514 027:915 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 45 D3 1C 00  returns 0x04 (0000ms, 1362ms total)
T6514 027:947 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1362ms total)
T6514 028:000 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1363ms total)
T6514 028:001 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1363ms total)
T6514 028:001 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1364ms total)
T6514 028:002 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1364ms total)
T6514 028:002 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1365ms total)
T6514 028:013 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1366ms total)
T6514 028:014 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1366ms total)
T6514 028:014 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 83 5E 12 00  returns 0x04 (0001ms, 1367ms total)
T6514 028:025 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 45 D3 1C 00  returns 0x04 (0001ms, 1368ms total)
T6514 028:046 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 83 84 CA 03  returns 0x04 (0000ms, 1368ms total)
T6514 028:067 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1368ms total)
T6514 028:067 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1369ms total)
T6514 028:068 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1369ms total)
T6514 028:069 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1369ms total)
T6514 028:080 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1370ms total)
T6514 028:101 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1371ms total)
T6514 028:102 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1371ms total)
T6514 028:112 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1372ms total)
T6514 028:113 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 45 D3 1C 00  returns 0x04 (0001ms, 1373ms total)
T6514 028:124 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 0B 56 28 00  returns 0x04 (0000ms, 1373ms total)
T6514 028:151 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1374ms total)
T6514 028:161 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 0B 56 28 00  returns 0x04 (0001ms, 1375ms total)
T4D64 028:171 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T4D64 028:273 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T4D64 028:374 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T6514 028:475 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1375ms total)
T6514 028:475 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1376ms total)
T6514 028:476 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1376ms total)
T6514 028:476 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1377ms total)
T6514 028:477 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1377ms total)
T6514 028:477 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1378ms total)
T6514 028:478 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1378ms total)
T6514 028:478 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1379ms total)
T6514 028:479 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 45 D3 1C 00  returns 0x04 (0000ms, 1379ms total)
T6514 028:511 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1380ms total)
T6514 028:564 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1380ms total)
T6514 028:564 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1381ms total)
T6514 028:565 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1381ms total)
T6514 028:565 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1382ms total)
T6514 028:566 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1382ms total)
T6514 028:576 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1383ms total)
T6514 028:577 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1384ms total)
T6514 028:578 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1384ms total)
T6514 028:599 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 D3 1C 00  returns 0x04 (0001ms, 1385ms total)
T6514 028:631 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1386ms total)
T6514 028:659 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1386ms total)
T6514 028:660 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1386ms total)
T6514 028:660 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1386ms total)
T6514 028:661 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1386ms total)
T6514 028:671 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0000ms, 1386ms total)
T6514 028:698 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1386ms total)
T6514 028:698 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1387ms total)
T6514 028:708 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1387ms total)
T6514 028:708 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 D3 1C 00  returns 0x04 (0000ms, 1387ms total)
T6514 028:726 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D3 55 28 00  returns 0x04 (0000ms, 1387ms total)
T6514 028:754 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1387ms total)
T6514 028:754 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D3 55 28 00  returns 0x04 (0001ms, 1388ms total)
T4D64 028:765 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T4D64 028:866 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T4D64 028:968 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T6514 029:070 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1388ms total)
T6514 029:070 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1389ms total)
T6514 029:071 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1389ms total)
T6514 029:071 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1390ms total)
T6514 029:072 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1390ms total)
T6514 029:072 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1390ms total)
T6514 029:072 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1391ms total)
T6514 029:073 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1391ms total)
T6514 029:073 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 D3 1C 00  returns 0x04 (0000ms, 1391ms total)
T6514 029:105 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1392ms total)
T6514 029:156 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1393ms total)
T6514 029:157 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1394ms total)
T6514 029:158 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1394ms total)
T6514 029:158 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1394ms total)
T6514 029:158 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1395ms total)
T6514 029:170 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1395ms total)
T6514 029:170 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1396ms total)
T6514 029:171 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1396ms total)
T6514 029:182 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 D3 1C 00  returns 0x04 (0001ms, 1397ms total)
T6514 029:202 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1398ms total)
T6514 029:224 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1398ms total)
T6514 029:224 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1399ms total)
T6514 029:225 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1399ms total)
T6514 029:225 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1400ms total)
T6514 029:237 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0000ms, 1400ms total)
T6514 029:258 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1400ms total)
T6514 029:258 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T6514 029:269 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1402ms total)
T6514 029:270 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 35 D3 1C 00  returns 0x04 (0000ms, 1402ms total)
T6514 029:279 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D3 55 28 00  returns 0x04 (0001ms, 1403ms total)
T6514 029:297 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1404ms total)
T6514 029:298 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D3 55 28 00  returns 0x04 (0000ms, 1404ms total)
T4D64 029:308 JLINK_IsHalted()  returns FALSE (0001ms, 1405ms total)
T4D64 029:410 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T4D64 029:511 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T6514 029:613 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1404ms total)
T6514 029:613 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0001ms, 1405ms total)
T6514 029:614 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1405ms total)
T6514 029:614 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1406ms total)
T6514 029:615 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1406ms total)
T6514 029:615 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1407ms total)
T6514 029:616 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1407ms total)
T6514 029:616 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1408ms total)
T6514 029:617 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0000ms, 1408ms total)
T6514 029:659 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1409ms total)
T6514 029:711 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1409ms total)
T6514 029:711 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1409ms total)
T6514 029:711 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1410ms total)
T6514 029:712 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1411ms total)
T6514 029:713 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1411ms total)
T6514 029:724 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1412ms total)
T6514 029:725 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1412ms total)
T6514 029:725 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0000ms, 1412ms total)
T6514 029:736 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0000ms, 1412ms total)
T6514 029:757 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 75 84 CA 03  returns 0x04 (0001ms, 1413ms total)
T6514 029:779 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1413ms total)
T6514 029:779 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1414ms total)
T6514 029:780 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1414ms total)
T6514 029:780 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1415ms total)
T6514 029:791 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0001ms, 1416ms total)
T6514 029:810 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1417ms total)
T6514 029:811 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1417ms total)
T6514 029:820 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1418ms total)
T6514 029:821 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0000ms, 1418ms total)
T6514 029:830 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FB 55 28 00  returns 0x04 (0001ms, 1419ms total)
T6514 029:848 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1419ms total)
T6514 029:857 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FB 55 28 00  returns 0x04 (0001ms, 1420ms total)
T4D64 029:869 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T4D64 029:970 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T4D64 030:071 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T6514 030:174 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1421ms total)
T6514 030:175 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0000ms, 1421ms total)
T6514 030:175 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1422ms total)
T6514 030:176 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1422ms total)
T6514 030:176 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1423ms total)
T6514 030:177 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1423ms total)
T6514 030:177 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1424ms total)
T6514 030:178 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1424ms total)
T6514 030:178 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0001ms, 1425ms total)
T6514 030:211 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1425ms total)
T6514 030:263 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1425ms total)
T6514 030:263 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0002ms, 1427ms total)
T6514 030:265 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1427ms total)
T6514 030:265 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1427ms total)
T6514 030:265 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1428ms total)
T6514 030:277 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1428ms total)
T6514 030:277 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1429ms total)
T6514 030:278 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0000ms, 1429ms total)
T6514 030:289 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0000ms, 1429ms total)
T6514 030:309 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 75 84 CA 03  returns 0x04 (0002ms, 1431ms total)
T6514 030:330 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1432ms total)
T6514 030:331 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1433ms total)
T6514 030:332 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1433ms total)
T6514 030:332 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1433ms total)
T6514 030:342 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5F  returns 0x01 (0000ms, 1433ms total)
T6514 030:361 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1434ms total)
T6514 030:362 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1434ms total)
T6514 030:371 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1435ms total)
T6514 030:372 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 37 D3 1C 00  returns 0x04 (0001ms, 1436ms total)
T6514 030:382 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FB 55 28 00  returns 0x04 (0000ms, 1436ms total)
T6514 030:401 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1436ms total)
T6514 030:410 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: FB 55 28 00  returns 0x04 (0001ms, 1437ms total)
T4D64 030:420 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T4D64 030:521 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T4D64 030:622 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T6514 030:723 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1437ms total)
T6514 030:723 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5E  returns 0x01 (0001ms, 1438ms total)
T6514 030:724 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1438ms total)
T6514 030:724 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1439ms total)
T6514 030:725 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1439ms total)
T6514 030:725 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1439ms total)
T6514 030:725 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1440ms total)
T6514 030:726 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1440ms total)
T6514 030:726 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0001ms, 1441ms total)
T6514 030:758 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T6514 030:810 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1442ms total)
T6514 030:810 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1443ms total)
T6514 030:811 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1443ms total)
T6514 030:811 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1444ms total)
T6514 030:812 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1444ms total)
T6514 030:823 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1444ms total)
T6514 030:824 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1444ms total)
T6514 030:824 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1444ms total)
T6514 030:835 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0000ms, 1444ms total)
T6514 030:855 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1445ms total)
T6514 030:876 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1446ms total)
T6514 030:877 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1447ms total)
T6514 030:878 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1447ms total)
T6514 030:878 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1447ms total)
T6514 030:888 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5E  returns 0x01 (0001ms, 1448ms total)
T6514 030:909 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1449ms total)
T6514 030:910 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1449ms total)
T6514 030:920 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1449ms total)
T6514 030:920 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0001ms, 1450ms total)
T6514 030:930 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D9 55 28 00  returns 0x04 (0001ms, 1451ms total)
T6514 030:950 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1451ms total)
T6514 030:959 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D9 55 28 00  returns 0x04 (0001ms, 1452ms total)
T4D64 030:968 JLINK_IsHalted()  returns FALSE (0001ms, 1453ms total)
T4D64 031:070 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T4D64 031:171 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T6514 031:273 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1452ms total)
T6514 031:273 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5E  returns 0x01 (0000ms, 1452ms total)
T6514 031:273 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1453ms total)
T6514 031:274 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1453ms total)
T6514 031:274 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1454ms total)
T6514 031:275 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1454ms total)
T6514 031:275 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1454ms total)
T6514 031:275 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1455ms total)
T6514 031:276 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0000ms, 1455ms total)
T6514 031:309 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1456ms total)
T6514 031:356 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1457ms total)
T6514 031:357 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1457ms total)
T6514 031:357 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1458ms total)
T6514 031:358 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1458ms total)
T6514 031:358 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1459ms total)
T6514 031:369 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1459ms total)
T6514 031:369 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1460ms total)
T6514 031:370 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1460ms total)
T6514 031:379 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0000ms, 1460ms total)
T6514 031:396 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1461ms total)
T6514 031:417 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1462ms total)
T6514 031:418 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1462ms total)
T6514 031:418 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1463ms total)
T6514 031:419 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1463ms total)
T6514 031:429 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5E  returns 0x01 (0001ms, 1464ms total)
T6514 031:448 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1465ms total)
T6514 031:449 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1465ms total)
T6514 031:458 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1465ms total)
T6514 031:458 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 3D D3 1C 00  returns 0x04 (0000ms, 1465ms total)
T6514 031:470 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D9 55 28 00  returns 0x04 (0000ms, 1465ms total)
T6514 031:487 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1466ms total)
T6514 031:496 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: D9 55 28 00  returns 0x04 (0001ms, 1467ms total)
T4D64 031:507 JLINK_IsHalted()  returns FALSE (0001ms, 1468ms total)
T4D64 031:608 JLINK_IsHalted()  returns FALSE (0001ms, 1468ms total)
T4D64 031:710 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T6514 031:810 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1468ms total)
T6514 031:811 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5D  returns 0x01 (0000ms, 1468ms total)
T6514 031:811 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1469ms total)
T6514 031:812 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1469ms total)
T6514 031:812 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1470ms total)
T6514 031:813 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1470ms total)
T6514 031:813 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1471ms total)
T6514 031:814 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1471ms total)
T6514 031:814 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 21 D3 1C 00  returns 0x04 (0002ms, 1473ms total)
T6514 031:848 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1474ms total)
T6514 031:898 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0002ms, 1476ms total)
T6514 031:900 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1476ms total)
T6514 031:900 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1477ms total)
T6514 031:901 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T6514 031:901 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1478ms total)
T6514 031:913 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1479ms total)
T6514 031:914 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1479ms total)
T6514 031:914 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1480ms total)
T6514 031:925 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 21 D3 1C 00  returns 0x04 (0000ms, 1480ms total)
T6514 031:945 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0001ms, 1481ms total)
T6514 031:966 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1482ms total)
T6514 031:967 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1482ms total)
T6514 031:967 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1483ms total)
T6514 031:968 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1483ms total)
T6514 031:978 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5D  returns 0x01 (0000ms, 1483ms total)
T6514 031:997 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1484ms total)
T6514 031:998 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1485ms total)
T6514 032:007 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1486ms total)
T6514 032:008 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 21 D3 1C 00  returns 0x04 (0000ms, 1486ms total)
T6514 032:017 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0000ms, 1486ms total)
T6514 032:036 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1487ms total)
T6514 032:037 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0001ms, 1488ms total)
T4D64 032:047 JLINK_IsHalted()  returns FALSE (0000ms, 1488ms total)
T4D64 032:148 JLINK_IsHalted()  returns FALSE (0001ms, 1489ms total)
T4D64 032:250 JLINK_IsHalted()  returns FALSE (0000ms, 1488ms total)
T6514 032:350 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1488ms total)
T6514 032:350 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5D  returns 0x01 (0002ms, 1490ms total)
T6514 032:352 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1490ms total)
T6514 032:352 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1491ms total)
T6514 032:353 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1491ms total)
T6514 032:353 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1492ms total)
T6514 032:354 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1492ms total)
T6514 032:354 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1493ms total)
T6514 032:355 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 21 D3 1C 00  returns 0x04 (0000ms, 1493ms total)
T6514 032:388 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1493ms total)
T6514 032:438 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1494ms total)
T6514 032:439 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1494ms total)
T6514 032:439 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1495ms total)
T6514 032:440 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1495ms total)
T6514 032:440 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1495ms total)
T6514 032:451 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1495ms total)
T6514 032:451 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1496ms total)
T6514 032:452 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0000ms, 1496ms total)
T6514 032:463 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 21 D3 1C 00  returns 0x04 (0001ms, 1497ms total)
T6514 032:485 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0000ms, 1497ms total)
T6514 032:506 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1497ms total)
T6514 032:506 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1498ms total)
T6514 032:507 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1498ms total)
T6514 032:507 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1499ms total)
T6514 032:518 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5D  returns 0x01 (0001ms, 1500ms total)
T6514 032:539 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1501ms total)
T6514 032:540 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1501ms total)
T6514 032:550 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1501ms total)
T6514 032:550 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: F9 D2 1C 00  returns 0x04 (0000ms, 1501ms total)
T6514 032:569 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9D 55 28 00  returns 0x04 (0000ms, 1501ms total)
T6514 032:596 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1502ms total)
T6514 032:608 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9D 55 28 00  returns 0x04 (0000ms, 1502ms total)
T4D64 032:629 JLINK_IsHalted()  returns FALSE (0001ms, 1503ms total)
T4D64 032:731 JLINK_IsHalted()  returns FALSE (0000ms, 1502ms total)
T4D64 032:832 JLINK_IsHalted()  returns FALSE (0000ms, 1502ms total)
T6514 032:933 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1502ms total)
T6514 032:934 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5C  returns 0x01 (0000ms, 1503ms total)
T6514 032:934 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1503ms total)
T6514 032:934 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1504ms total)
T6514 032:935 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1504ms total)
T6514 032:935 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1505ms total)
T6514 032:936 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1505ms total)
T6514 032:936 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1506ms total)
T6514 032:937 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: F9 D2 1C 00  returns 0x04 (0000ms, 1506ms total)
T6514 032:973 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1507ms total)
T6514 033:025 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1507ms total)
T6514 033:025 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1508ms total)
T6514 033:026 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1508ms total)
T6514 033:026 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1509ms total)
T6514 033:027 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1509ms total)
T6514 033:038 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1510ms total)
T6514 033:039 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1510ms total)
T6514 033:039 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 5F 5E 12 00  returns 0x04 (0000ms, 1510ms total)
T6514 033:049 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: F9 D2 1C 00  returns 0x04 (0000ms, 1510ms total)
T6514 033:070 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 5F 84 CA 03  returns 0x04 (0000ms, 1510ms total)
T6514 033:092 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1510ms total)
T6514 033:092 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1511ms total)
T6514 033:093 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1511ms total)
T6514 033:093 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1512ms total)
T6514 033:104 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5C  returns 0x01 (0001ms, 1513ms total)
T6514 033:124 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0002ms, 1515ms total)
T6514 033:126 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1515ms total)
T6514 033:135 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1515ms total)
T6514 033:135 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: F9 D2 1C 00  returns 0x04 (0000ms, 1515ms total)
T6514 033:144 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9D 55 28 00  returns 0x04 (0000ms, 1515ms total)
T6514 033:163 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1515ms total)
T6514 033:175 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 9D 55 28 00  returns 0x04 (0000ms, 1515ms total)
T4D64 033:184 JLINK_IsHalted()  returns FALSE (0001ms, 1516ms total)
T4D64 033:286 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T4D64 033:387 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T6514 033:489 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1515ms total)
T6514 033:489 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5C  returns 0x01 (0000ms, 1515ms total)
T6514 033:489 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 1517ms total)
T6514 033:491 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1517ms total)
T6514 033:491 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1517ms total)
T6514 033:491 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1518ms total)
T6514 033:492 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1518ms total)
T6514 033:492 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1518ms total)
T6514 033:492 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: F9 D2 1C 00  returns 0x04 (0001ms, 1519ms total)
T6514 033:525 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1520ms total)
T6514 033:576 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1521ms total)
T6514 033:577 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1521ms total)
T6514 033:577 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0002ms, 1523ms total)
T6514 033:579 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1523ms total)
T6514 033:579 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1524ms total)
T6514 033:590 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1524ms total)
T6514 033:590 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1524ms total)
T6514 033:590 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 67 5E 12 00  returns 0x04 (0001ms, 1525ms total)
T6514 033:614 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FD D2 1C 00  returns 0x04 (0000ms, 1525ms total)
T6514 033:644 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 67 84 CA 03  returns 0x04 (0002ms, 1527ms total)
T6514 033:678 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1527ms total)
T6514 033:678 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1528ms total)
T6514 033:679 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1528ms total)
T6514 033:679 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1529ms total)
T6514 033:689 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5B  returns 0x01 (0000ms, 1529ms total)
T6514 033:720 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1529ms total)
T6514 033:720 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1530ms total)
T6514 033:730 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1530ms total)
T6514 033:730 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FD D2 1C 00  returns 0x04 (0001ms, 1531ms total)
T6514 033:741 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AB 55 28 00  returns 0x04 (0000ms, 1531ms total)
T6514 033:759 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1532ms total)
T6514 033:769 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AB 55 28 00  returns 0x04 (0000ms, 1532ms total)
T4D64 033:779 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T4D64 033:880 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T4D64 033:981 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T6514 034:084 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1532ms total)
T6514 034:084 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5B  returns 0x01 (0001ms, 1533ms total)
T6514 034:085 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1533ms total)
T6514 034:085 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1534ms total)
T6514 034:086 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1534ms total)
T6514 034:086 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1535ms total)
T6514 034:087 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1535ms total)
T6514 034:087 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1536ms total)
T6514 034:088 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FD D2 1C 00  returns 0x04 (0000ms, 1536ms total)
T6514 034:120 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1537ms total)
T6514 034:171 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1538ms total)
T6514 034:172 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1539ms total)
T6514 034:173 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1539ms total)
T6514 034:173 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1540ms total)
T6514 034:174 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1540ms total)
T6514 034:187 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1541ms total)
T6514 034:188 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1541ms total)
T6514 034:188 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 67 5E 12 00  returns 0x04 (0001ms, 1542ms total)
T6514 034:199 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FD D2 1C 00  returns 0x04 (0000ms, 1542ms total)
T6514 034:219 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 67 84 CA 03  returns 0x04 (0000ms, 1542ms total)
T6514 034:241 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1543ms total)
T6514 034:242 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1543ms total)
T6514 034:242 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1544ms total)
T6514 034:243 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1544ms total)
T6514 034:254 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5B  returns 0x01 (0001ms, 1545ms total)
T6514 034:275 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1545ms total)
T6514 034:275 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1546ms total)
T6514 034:286 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1547ms total)
T6514 034:287 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FD D2 1C 00  returns 0x04 (0000ms, 1547ms total)
T6514 034:296 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AB 55 28 00  returns 0x04 (0001ms, 1548ms total)
T6514 034:315 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1548ms total)
T6514 034:325 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AB 55 28 00  returns 0x04 (0000ms, 1548ms total)
T4D64 034:334 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T4D64 034:435 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T4D64 034:537 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T6514 034:637 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1548ms total)
T6514 034:637 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5A  returns 0x01 (0000ms, 1548ms total)
T6514 034:637 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0002ms, 1550ms total)
T6514 034:639 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1550ms total)
T6514 034:639 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1550ms total)
T6514 034:639 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1551ms total)
T6514 034:640 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1551ms total)
T6514 034:640 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1552ms total)
T6514 034:641 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0000ms, 1552ms total)
T6514 034:684 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1552ms total)
T6514 034:739 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1553ms total)
T6514 034:740 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1553ms total)
T6514 034:740 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1554ms total)
T6514 034:741 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1554ms total)
T6514 034:741 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1555ms total)
T6514 034:752 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1555ms total)
T6514 034:752 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1556ms total)
T6514 034:753 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 53 5E 12 00  returns 0x04 (0000ms, 1556ms total)
T6514 034:764 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0001ms, 1557ms total)
T6514 034:787 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 53 84 CA 03  returns 0x04 (0001ms, 1558ms total)
T6514 034:808 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1559ms total)
T6514 034:809 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1560ms total)
T6514 034:810 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1560ms total)
T6514 034:810 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1561ms total)
T6514 034:821 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5A  returns 0x01 (0000ms, 1561ms total)
T6514 034:841 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1561ms total)
T6514 034:841 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1562ms total)
T6514 034:852 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1562ms total)
T6514 034:852 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0001ms, 1563ms total)
T6514 034:862 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0000ms, 1563ms total)
T6514 034:881 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1564ms total)
T6514 034:882 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0001ms, 1565ms total)
T4D64 034:891 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T4D64 034:994 JLINK_IsHalted()  returns FALSE (0000ms, 1565ms total)
T4D64 035:095 JLINK_IsHalted()  returns FALSE (0000ms, 1565ms total)
T6514 035:196 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1565ms total)
T6514 035:196 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5A  returns 0x01 (0001ms, 1566ms total)
T6514 035:197 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1566ms total)
T6514 035:197 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1567ms total)
T6514 035:198 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1567ms total)
T6514 035:198 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1568ms total)
T6514 035:199 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1568ms total)
T6514 035:199 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1569ms total)
T6514 035:200 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0000ms, 1569ms total)
T6514 035:234 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1570ms total)
T6514 035:285 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1571ms total)
T6514 035:286 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1571ms total)
T6514 035:286 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1572ms total)
T6514 035:287 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1572ms total)
T6514 035:287 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1572ms total)
T6514 035:298 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1573ms total)
T6514 035:299 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1573ms total)
T6514 035:299 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 53 5E 12 00  returns 0x04 (0001ms, 1574ms total)
T6514 035:311 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0000ms, 1574ms total)
T6514 035:334 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 53 84 CA 03  returns 0x04 (0000ms, 1574ms total)
T6514 035:353 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1575ms total)
T6514 035:354 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1576ms total)
T6514 035:355 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1576ms total)
T6514 035:355 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1577ms total)
T6514 035:366 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 5A  returns 0x01 (0001ms, 1578ms total)
T6514 035:387 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1579ms total)
T6514 035:388 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1579ms total)
T6514 035:399 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0000ms, 1580ms total)
T6514 035:399 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 11 D3 1C 00  returns 0x04 (0001ms, 1581ms total)
T6514 035:411 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0000ms, 1581ms total)
T6514 035:430 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1581ms total)
T6514 035:430 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BF 55 28 00  returns 0x04 (0001ms, 1582ms total)
T4D64 035:442 JLINK_IsHalted()  returns FALSE (0000ms, 1582ms total)
T4D64 035:543 JLINK_IsHalted()  returns FALSE (0000ms, 1582ms total)
T4D64 035:644 JLINK_IsHalted()  returns FALSE (0000ms, 1582ms total)
T6514 035:745 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1582ms total)
T6514 035:745 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 59  returns 0x01 (0001ms, 1583ms total)
T6514 035:746 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1583ms total)
T6514 035:746 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1584ms total)
T6514 035:747 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1584ms total)
T6514 035:747 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1585ms total)
T6514 035:748 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1585ms total)
T6514 035:748 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1585ms total)
T6514 035:749 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0000ms, 1585ms total)
T6514 035:782 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1585ms total)
T6514 035:834 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1586ms total)
T6514 035:835 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1587ms total)
T6514 035:836 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1587ms total)
T6514 035:836 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1588ms total)
T6514 035:837 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1588ms total)
T6514 035:848 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1588ms total)
T6514 035:848 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1588ms total)
T6514 035:848 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0001ms, 1589ms total)
T6514 035:859 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0000ms, 1589ms total)
T6514 035:880 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 75 84 CA 03  returns 0x04 (0001ms, 1590ms total)
T6514 035:904 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1590ms total)
T6514 035:904 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1591ms total)
T6514 035:905 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1591ms total)
T6514 035:905 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1591ms total)
T6514 035:916 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 59  returns 0x01 (0000ms, 1591ms total)
T6514 035:936 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1591ms total)
T6514 035:936 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1592ms total)
T6514 035:948 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1593ms total)
T6514 035:949 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0000ms, 1593ms total)
T6514 035:960 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AD 55 28 00  returns 0x04 (0000ms, 1593ms total)
T6514 035:981 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1594ms total)
T6514 035:991 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AD 55 28 00  returns 0x04 (0001ms, 1595ms total)
T4D64 036:003 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T4D64 036:104 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T4D64 036:205 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T6514 036:307 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1595ms total)
T6514 036:307 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 59  returns 0x01 (0000ms, 1595ms total)
T6514 036:307 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1596ms total)
T6514 036:308 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1596ms total)
T6514 036:308 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1597ms total)
T6514 036:309 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1597ms total)
T6514 036:309 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1598ms total)
T6514 036:310 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0000ms, 1598ms total)
T6514 036:310 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0001ms, 1599ms total)
T6514 036:344 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1600ms total)
T6514 036:394 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1601ms total)
T6514 036:395 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: EC DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1601ms total)
T6514 036:395 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1602ms total)
T6514 036:396 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1602ms total)
T6514 036:396 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 88 A0 8D C5 0A 0E 2E C0  returns 0x08 (0001ms, 1603ms total)
T6514 036:407 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1603ms total)
T6514 036:407 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0001ms, 1604ms total)
T6514 036:408 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 75 5E 12 00  returns 0x04 (0000ms, 1604ms total)
T6514 036:417 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0001ms, 1605ms total)
T6514 036:435 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 75 84 CA 03  returns 0x04 (0000ms, 1605ms total)
T6514 036:454 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1605ms total)
T6514 036:455 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: E4 01 00 00  returns 0x04 (0000ms, 1605ms total)
T6514 036:455 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1605ms total)
T6514 036:456 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1605ms total)
T6514 036:465 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 59  returns 0x01 (0001ms, 1606ms total)
T6514 036:486 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1606ms total)
T6514 036:486 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1606ms total)
T6514 036:495 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 05 00 00 00  returns 0x04 (0001ms, 1607ms total)
T6514 036:496 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: FB D2 1C 00  returns 0x04 (0000ms, 1607ms total)
T6514 036:506 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: AD 55 28 00  returns 0x04 (0000ms, 1607ms total)
T6514 036:525 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1607ms total)
T6514 036:535 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: 11 10 00 00  returns 0x04 (0001ms, 1608ms total)
T4D64 036:555 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T4D64 036:657 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T4D64 036:758 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T6514 036:859 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1609ms total)
T6514 036:860 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1609ms total)
T6514 036:860 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1610ms total)
T6514 036:861 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1610ms total)
T6514 036:861 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0002ms, 1612ms total)
T6514 036:863 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1612ms total)
T6514 036:863 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1612ms total)
T6514 036:863 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1613ms total)
T6514 036:874 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 31 3C 1C 00  returns 0x04 (0001ms, 1614ms total)
T6514 036:907 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1614ms total)
T6514 036:959 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1614ms total)
T6514 036:970 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0000ms, 1614ms total)
T6514 036:983 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1614ms total)
T6514 036:984 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1614ms total)
T6514 036:984 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1615ms total)
T6514 037:006 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0000ms, 1615ms total)
T6514 037:006 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1615ms total)
T6514 037:017 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0001ms, 1616ms total)
T6514 037:028 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 31 3C 1C 00  returns 0x04 (0000ms, 1616ms total)
T6514 037:049 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0000ms, 1616ms total)
T6514 037:070 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1617ms total)
T6514 037:071 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1617ms total)
T6514 037:080 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: E4 01  returns 0x02 (0001ms, 1618ms total)
T6514 037:081 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1618ms total)
T6514 037:089 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1619ms total)
T6514 037:109 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1619ms total)
T6514 037:109 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1620ms total)
T6514 037:118 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0001ms, 1621ms total)
T6514 037:128 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 31 3C 1C 00  returns 0x04 (0001ms, 1622ms total)
T6514 037:140 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: DD BE 27 00  returns 0x04 (0000ms, 1622ms total)
T6514 037:157 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1623ms total)
T6514 037:167 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: DD BE 27 00  returns 0x04 (0000ms, 1623ms total)
T4D64 037:184 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T4D64 037:286 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T6514 037:389 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1624ms total)
T6514 037:390 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1624ms total)
T6514 037:390 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1625ms total)
T6514 037:391 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1625ms total)
T6514 037:391 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1626ms total)
T6514 037:392 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1626ms total)
T6514 037:392 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1627ms total)
T6514 037:393 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1627ms total)
T6514 037:405 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 31 3C 1C 00  returns 0x04 (0001ms, 1628ms total)
T6514 037:438 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1629ms total)
T6514 037:491 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1630ms total)
T6514 037:503 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0001ms, 1631ms total)
T6514 037:514 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1632ms total)
T6514 037:515 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1632ms total)
T6514 037:515 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1633ms total)
T6514 037:536 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1634ms total)
T6514 037:548 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1634ms total)
T6514 037:558 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1635ms total)
T6514 037:579 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 4D D3 1C 00  returns 0x04 (0000ms, 1635ms total)
T6514 037:608 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0000ms, 1635ms total)
T6514 037:635 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1636ms total)
T6514 037:645 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1637ms total)
T6514 037:655 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1637ms total)
T6514 037:663 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1638ms total)
T6514 037:673 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1638ms total)
T6514 037:701 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1638ms total)
T6514 037:701 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1639ms total)
T6514 037:710 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0000ms, 1639ms total)
T6514 037:719 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 4D D3 1C 00  returns 0x04 (0001ms, 1640ms total)
T6514 037:738 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: EB 55 28 00  returns 0x04 (0000ms, 1640ms total)
T6514 037:765 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1641ms total)
T6514 037:774 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: EB 55 28 00  returns 0x04 (0001ms, 1642ms total)
T4D64 037:793 JLINK_IsHalted()  returns FALSE (0001ms, 1643ms total)
T4D64 037:895 JLINK_IsHalted()  returns FALSE (0000ms, 1642ms total)
T6514 037:996 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1643ms total)
T6514 037:997 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0000ms, 1643ms total)
T6514 037:997 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1644ms total)
T6514 037:998 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1644ms total)
T6514 037:998 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1645ms total)
T6514 037:999 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1645ms total)
T6514 037:999 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1646ms total)
T6514 038:000 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1646ms total)
T6514 038:000 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 4D D3 1C 00  returns 0x04 (0001ms, 1647ms total)
T6514 038:033 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1647ms total)
T6514 038:085 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1647ms total)
T6514 038:085 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0000ms, 1647ms total)
T6514 038:085 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1648ms total)
T6514 038:086 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1648ms total)
T6514 038:086 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1649ms total)
T6514 038:097 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1650ms total)
T6514 038:109 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1650ms total)
T6514 038:109 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 85 5E 12 00  returns 0x04 (0001ms, 1651ms total)
T6514 038:120 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 4D D3 1C 00  returns 0x04 (0000ms, 1651ms total)
T6514 038:140 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 85 84 CA 03  returns 0x04 (0001ms, 1652ms total)
T6514 038:161 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0002ms, 1654ms total)
T6514 038:173 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1654ms total)
T6514 038:173 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1655ms total)
T6514 038:185 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1656ms total)
T6514 038:196 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 62  returns 0x01 (0001ms, 1657ms total)
T6514 038:217 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1658ms total)
T6514 038:218 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1658ms total)
T6514 038:230 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0000ms, 1658ms total)
T6514 038:230 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 4D D3 1C 00  returns 0x04 (0001ms, 1659ms total)
T6514 038:239 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: EB 55 28 00  returns 0x04 (0001ms, 1660ms total)
T6514 038:257 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1660ms total)
T6514 038:257 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: EB 55 28 00  returns 0x04 (0001ms, 1661ms total)
T4D64 038:266 JLINK_IsHalted()  returns FALSE (0001ms, 1662ms total)
T4D64 038:368 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T4D64 038:469 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T6514 038:572 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1662ms total)
T6514 038:573 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1663ms total)
T6514 038:574 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1663ms total)
T6514 038:574 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1664ms total)
T6514 038:575 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1664ms total)
T6514 038:575 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1665ms total)
T6514 038:576 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1665ms total)
T6514 038:576 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1666ms total)
T6514 038:577 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0000ms, 1666ms total)
T6514 038:620 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1666ms total)
T6514 038:671 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1667ms total)
T6514 038:672 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0000ms, 1667ms total)
T6514 038:672 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1668ms total)
T6514 038:673 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1668ms total)
T6514 038:673 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1669ms total)
T6514 038:684 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1670ms total)
T6514 038:685 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1670ms total)
T6514 038:685 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0001ms, 1671ms total)
T6514 038:698 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0001ms, 1672ms total)
T6514 038:718 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0001ms, 1673ms total)
T6514 038:739 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1673ms total)
T6514 038:739 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0002ms, 1675ms total)
T6514 038:741 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1675ms total)
T6514 038:741 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1675ms total)
T6514 038:752 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0000ms, 1675ms total)
T6514 038:772 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1676ms total)
T6514 038:773 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1676ms total)
T6514 038:783 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0000ms, 1676ms total)
T6514 038:783 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0001ms, 1677ms total)
T6514 038:793 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BD 55 28 00  returns 0x04 (0001ms, 1678ms total)
T6514 038:812 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0001ms, 1679ms total)
T6514 038:822 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BD 55 28 00  returns 0x04 (0001ms, 1680ms total)
T4D64 038:832 JLINK_IsHalted()  returns FALSE (0001ms, 1681ms total)
T4D64 038:934 JLINK_IsHalted()  returns FALSE (0000ms, 1680ms total)
T4D64 039:034 JLINK_IsHalted()  returns FALSE (0000ms, 1680ms total)
T6514 039:136 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1681ms total)
T6514 039:137 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0000ms, 1681ms total)
T6514 039:137 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T6514 039:138 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1682ms total)
T6514 039:138 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1683ms total)
T6514 039:139 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1683ms total)
T6514 039:140 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1684ms total)
T6514 039:140 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0001ms, 1685ms total)
T6514 039:141 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0000ms, 1685ms total)
T6514 039:173 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1686ms total)
T6514 039:226 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1687ms total)
T6514 039:227 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0000ms, 1687ms total)
T6514 039:227 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1688ms total)
T6514 039:228 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T6514 039:229 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1689ms total)
T6514 039:239 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1690ms total)
T6514 039:240 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1690ms total)
T6514 039:240 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 57 5E 12 00  returns 0x04 (0001ms, 1691ms total)
T6514 039:250 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0001ms, 1692ms total)
T6514 039:271 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 57 84 CA 03  returns 0x04 (0002ms, 1694ms total)
T6514 039:292 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1695ms total)
T6514 039:293 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1696ms total)
T6514 039:294 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1697ms total)
T6514 039:295 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1697ms total)
T6514 039:306 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 61  returns 0x01 (0001ms, 1698ms total)
T6514 039:328 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1698ms total)
T6514 039:328 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1699ms total)
T6514 039:338 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0001ms, 1700ms total)
T6514 039:339 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 19 D3 1C 00  returns 0x04 (0000ms, 1700ms total)
T6514 039:349 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BD 55 28 00  returns 0x04 (0000ms, 1700ms total)
T6514 039:367 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: FD C0 05 00  returns 0x04 (0000ms, 1700ms total)
T6514 039:377 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: BD 55 28 00  returns 0x04 (0000ms, 1701ms total)
T4D64 039:387 JLINK_IsHalted()  returns FALSE (0001ms, 1702ms total)
T4D64 039:489 JLINK_IsHalted()  returns FALSE (0000ms, 1701ms total)
T4D64 039:590 JLINK_IsHalted()  returns FALSE (0000ms, 1701ms total)
T6514 039:692 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1701ms total)
T6514 039:692 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1702ms total)
T6514 039:693 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1702ms total)
T6514 039:693 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1703ms total)
T6514 039:694 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1703ms total)
T6514 039:694 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1703ms total)
T6514 039:694 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1704ms total)
T6514 039:695 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1704ms total)
T6514 039:695 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0001ms, 1705ms total)
T6514 039:727 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1705ms total)
T6514 039:779 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0000ms, 1705ms total)
T6514 039:779 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0001ms, 1706ms total)
T6514 039:780 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1706ms total)
T6514 039:780 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1707ms total)
T6514 039:781 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1707ms total)
T6514 039:792 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1707ms total)
T6514 039:792 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1708ms total)
T6514 039:793 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 83 5E 12 00  returns 0x04 (0000ms, 1708ms total)
T6514 039:804 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0001ms, 1709ms total)
T6514 039:824 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 83 84 CA 03  returns 0x04 (0001ms, 1710ms total)
T6514 039:844 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1711ms total)
T6514 039:845 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1711ms total)
T6514 039:845 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0002ms, 1713ms total)
T6514 039:847 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1713ms total)
T6514 039:857 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0000ms, 1713ms total)
T6514 039:874 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1714ms total)
T6514 039:875 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1715ms total)
T6514 039:886 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0001ms, 1716ms total)
T6514 039:887 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0000ms, 1716ms total)
T6514 039:897 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E7 55 28 00  returns 0x04 (0001ms, 1717ms total)
T6514 039:916 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1718ms total)
T6514 039:927 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E7 55 28 00  returns 0x04 (0000ms, 1718ms total)
T4D64 039:936 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T4D64 040:037 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T4D64 040:138 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T6514 040:239 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1718ms total)
T6514 040:239 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1719ms total)
T6514 040:240 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1719ms total)
T6514 040:240 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1719ms total)
T6514 040:240 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1720ms total)
T6514 040:241 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1720ms total)
T6514 040:241 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1720ms total)
T6514 040:241 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0002ms, 1722ms total)
T6514 040:243 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0000ms, 1722ms total)
T6514 040:273 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0000ms, 1722ms total)
T6514 040:322 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: C7 DE C9 0D 00 00 00 00  returns 0x08 (0001ms, 1723ms total)
T6514 040:323 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: D4 DF C9 0D 00 00 00 00  returns 0x08 (0000ms, 1723ms total)
T6514 040:323 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0000ms, 1723ms total)
T6514 040:323 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0002ms, 1725ms total)
T6514 040:325 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: AE 16 F0 6C E6 6C 40 C0  returns 0x08 (0000ms, 1725ms total)
T6514 040:335 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1725ms total)
T6514 040:335 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0000ms, 1725ms total)
T6514 040:335 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 83 5E 12 00  returns 0x04 (0001ms, 1726ms total)
T6514 040:346 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0001ms, 1727ms total)
T6514 040:366 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 83 84 CA 03  returns 0x04 (0001ms, 1728ms total)
T6514 040:385 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1729ms total)
T6514 040:386 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: D3 01 00 00  returns 0x04 (0001ms, 1730ms total)
T6514 040:387 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1730ms total)
T6514 040:387 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1731ms total)
T6514 040:397 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 60  returns 0x01 (0001ms, 1732ms total)
T6514 040:417 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1732ms total)
T6514 040:417 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1733ms total)
T6514 040:427 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 06 00 00 00  returns 0x04 (0000ms, 1733ms total)
T6514 040:427 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 49 D3 1C 00  returns 0x04 (0002ms, 1735ms total)
T6514 040:438 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E7 55 28 00  returns 0x04 (0001ms, 1736ms total)
T6514 040:458 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1737ms total)
T6514 040:468 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: E7 55 28 00  returns 0x04 (0000ms, 1737ms total)
T4D64 040:480 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T4D64 040:581 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T4D64 040:681 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T6514 040:783 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1737ms total)
T6514 040:783 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1738ms total)
T6514 040:784 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1738ms total)
T6514 040:784 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0001ms, 1739ms total)
T6514 040:785 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0000ms, 1739ms total)
T6514 040:785 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0001ms, 1740ms total)
T6514 040:786 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0000ms, 1740ms total)
T6514 040:786 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 78 5F 72 3A F5 F1 1D 40  returns 0x08 (0001ms, 1741ms total)
T6514 040:798 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0000ms, 1741ms total)
T6514 040:830 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T6514 040:879 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1742ms total)
T6514 040:888 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 8C DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1743ms total)
T6514 040:899 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1744ms total)
T6514 040:900 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0000ms, 1744ms total)
T6514 040:900 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 78 5F 72 3A F5 F1 1D 40  returns 0x08 (0001ms, 1745ms total)
T6514 040:918 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1745ms total)
T6514 040:918 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0001ms, 1746ms total)
T6514 040:928 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0000ms, 1746ms total)
T6514 040:939 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0001ms, 1747ms total)
T6514 040:957 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1748ms total)
T6514 040:975 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1749ms total)
T6514 040:976 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0000ms, 1749ms total)
T6514 040:987 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1749ms total)
T6514 040:987 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1749ms total)
T6514 040:996 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1750ms total)
T6514 041:014 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1750ms total)
T6514 041:014 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1751ms total)
T6514 041:025 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 07 00 00 00  returns 0x04 (0001ms, 1752ms total)
T6514 041:035 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0001ms, 1753ms total)
T6514 041:044 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C7 A2 27 00  returns 0x04 (0001ms, 1754ms total)
T6514 041:064 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0000ms, 1754ms total)
T6514 041:064 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C7 A2 27 00  returns 0x04 (0001ms, 1755ms total)
T4D64 041:074 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T4D64 041:176 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T4D64 041:277 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T4D64 041:378 JLINK_Halt()  returns 0x00 (0003ms, 1758ms total)
T4D64 041:381 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T4D64 041:381 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T4D64 041:381 JLINK_IsHalted()  returns TRUE (0000ms, 1758ms total)
T4D64 041:381 JLINK_ReadReg(R15 (PC))  returns 0x000064EA (0000ms, 1758ms total)
T4D64 041:381 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1758ms total)
T4D64 041:381 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0000ms, 1758ms total)
T4D64 041:381 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1759ms total)
T4D64 041:382 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1759ms total)
T4D64 041:382 JLINK_ReadReg(R0)  returns 0x00000188 (0000ms, 1759ms total)
T4D64 041:382 JLINK_ReadReg(R1)  returns 0x02019270 (0000ms, 1759ms total)
T4D64 041:382 JLINK_ReadReg(R2)  returns 0x00000020 (0000ms, 1759ms total)
T4D64 041:383 JLINK_ReadReg(R3)  returns 0x0201974E (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R4)  returns 0x00000004 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R6)  returns 0x0201977E (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R7)  returns 0x02019014 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R8)  returns 0xC90019BE (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R9)  returns 0x4CFB53E2 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R10)  returns 0xF782AA4B (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R11)  returns 0x665B5BE2 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R13 (SP))  returns 0x0202F7E8 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R14)  returns 0x00003883 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(R15 (PC))  returns 0x000064EA (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(MSP)  returns 0x0202F7E8 (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(PSP)  returns 0xF50EBFDC (0000ms, 1760ms total)
T4D64 041:383 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1760ms total)
T6514 041:384 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: 3B 77 00 00  returns 0x04 (0001ms, 1761ms total)
T6514 041:385 JLINK_ReadMemEx(0x0202F7E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E8) - Data: 04 00 00 00  returns 0x04 (0000ms, 1761ms total)
T6514 041:385 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1762ms total)
T6514 041:386 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 14 90 01 02  returns 0x04 (0000ms, 1762ms total)
T6514 041:386 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: 3B 77 00 00  returns 0x04 (0001ms, 1763ms total)
T6514 041:388 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1763ms total)
T6514 041:388 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0001ms, 1764ms total)
T6514 041:391 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0000ms, 1764ms total)
T6514 041:391 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0000ms, 1764ms total)
T6514 041:391 JLINK_ReadMemEx(0x0201A774, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A774) - Data: 00 00 00 00  returns 0x04 (0001ms, 1765ms total)
T6514 041:392 JLINK_ReadMemEx(0x0201974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974C) - Data: 01 50  returns 0x02 (0000ms, 1765ms total)
T6514 041:392 JLINK_ReadMemEx(0x0201974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201974E) - Data: 00 00  returns 0x02 (0001ms, 1766ms total)
T6514 041:393 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 78 5F 72 3A F5 F1 1D 40  returns 0x08 (0000ms, 1766ms total)
T6514 041:405 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0000ms, 1766ms total)
T6514 041:438 JLINK_ReadMemEx(0x02019015, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019015) - Data: 00  returns 0x01 (0001ms, 1767ms total)
T6514 041:488 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2B DD C9 0D 00 00 00 00  returns 0x08 (0001ms, 1768ms total)
T6514 041:498 JLINK_ReadMemEx(0x02019660, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019660) - Data: 8C DD C9 0D 00 00 00 00  returns 0x08 (0000ms, 1768ms total)
T6514 041:507 JLINK_ReadMemEx(0x020196B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 1769ms total)
T6514 041:508 JLINK_ReadMemEx(0x0201977F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201977F) - Data: 00  returns 0x01 (0001ms, 1770ms total)
T6514 041:509 JLINK_ReadMemEx(0x02019630, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019630) - Data: 78 5F 72 3A F5 F1 1D 40  returns 0x08 (0000ms, 1770ms total)
T6514 041:527 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1770ms total)
T6514 041:527 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0001ms, 1771ms total)
T6514 041:537 JLINK_ReadMemEx(0x020196C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196C8) - Data: 6F 5E 12 00  returns 0x04 (0001ms, 1772ms total)
T6514 041:547 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0000ms, 1772ms total)
T6514 041:565 JLINK_ReadMemEx(0x020196D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196D0) - Data: 6F 84 CA 03  returns 0x04 (0001ms, 1773ms total)
T6514 041:584 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0001ms, 1774ms total)
T6514 041:585 JLINK_ReadMemEx(0x0201A770, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A770) - Data: FB 01 00 00  returns 0x04 (0000ms, 1774ms total)
T6514 041:596 JLINK_ReadMemEx(0x0201971A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201971A) - Data: D3 01  returns 0x02 (0000ms, 1774ms total)
T6514 041:596 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0000ms, 1774ms total)
T6514 041:606 JLINK_ReadMemEx(0x02019700, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019700) - Data: 63  returns 0x01 (0000ms, 1774ms total)
T6514 041:626 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 01  returns 0x01 (0001ms, 1775ms total)
T6514 041:627 JLINK_ReadMemEx(0x02019701, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019701) - Data: 00  returns 0x01 (0001ms, 1776ms total)
T6514 041:636 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 07 00 00 00  returns 0x04 (0001ms, 1777ms total)
T6514 041:648 JLINK_ReadMemEx(0x020196CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196CC) - Data: 2B 20 1C 00  returns 0x04 (0000ms, 1777ms total)
T6514 041:658 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C7 A2 27 00  returns 0x04 (0001ms, 1778ms total)
T6514 041:677 JLINK_ReadMemEx(0x020196AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196AC) - Data: F7 C0 05 00  returns 0x04 (0001ms, 1779ms total)
T6514 041:678 JLINK_ReadMemEx(0x020196A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196A0) - Data: C7 A2 27 00  returns 0x04 (0000ms, 1779ms total)
T6514 041:690 JLINK_ReadMemEx(0x000064EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000064C0) -- Updating C cache (64 bytes @ 0x000064C0) -- Read from C cache (2 bytes @ 0x000064EA) - Data: 09 68  returns 0x02 (0001ms, 1780ms total)
T6514 041:691 JLINK_ReadMemEx(0x000064EC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00006500) -- Updating C cache (64 bytes @ 0x00006500) -- Read from C cache (60 bytes @ 0x000064EC) - Data: 08 58 70 47 70 92 01 02 F0 B5 03 29 20 D8 C0 46 ...  returns 0x3C (0001ms, 1781ms total)
T6514 041:692 JLINK_ReadMemEx(0x000064EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064EC) - Data: 08 58  returns 0x02 (0001ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000064EC) - Data: 08 58 70 47 70 92 01 02 F0 B5 03 29 20 D8 C0 46 ...  returns 0x3C (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064EC) - Data: 08 58  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064EE) - Data: 70 47  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064EE) - Data: 70 47  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000064F0) - Data: 70 92 01 02 F0 B5 03 29 20 D8 C0 46 79 44 09 79 ...  returns 0x3C (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F0) - Data: 70 92  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000064F0) - Data: 70 92 01 02 F0 B5 03 29 20 D8 C0 46 79 44 09 79 ...  returns 0x3C (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F0) - Data: 70 92  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F2) - Data: 01 02  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F2) - Data: 01 02  returns 0x02 (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000064F4) - Data: F0 B5 03 29 20 D8 C0 46 79 44 09 79 49 00 8F 44 ...  returns 0x3C (0000ms, 1782ms total)
T6514 041:693 JLINK_ReadMemEx(0x000064F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F4) - Data: F0 B5  returns 0x02 (0000ms, 1782ms total)
T6514 041:694 JLINK_ReadMemEx(0x000064F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000064F4) - Data: F0 B5 03 29 20 D8 C0 46 79 44 09 79 49 00 8F 44 ...  returns 0x3C (0000ms, 1782ms total)
T6514 041:694 JLINK_ReadMemEx(0x000064F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F4) - Data: F0 B5  returns 0x02 (0000ms, 1782ms total)
T6514 041:694 JLINK_ReadMemEx(0x000064F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000064F6) - Data: 03 29  returns 0x02 (0000ms, 1782ms total)
T6514 043:870 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0016ms, 1798ms total)
T6514 043:870  (0016ms, 1798ms total)
T6514 043:870 Closed (0016ms, 1798ms total)