WXK
2024-11-07 5b83d40633dc8a6dce22ac726619520d8bf36b22
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
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
 
TCA28 000:036 SEGGER J-Link V6.30d Log File (0000ms, 0020ms total)
TCA28 000:036 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0020ms total)
TCA28 000:036 Logging started @ 2024-11-04 18:00 (0000ms, 0020ms total)
TCA28 000:036 JLINK_SetWarnOutHandler(...) (0000ms, 0020ms total)
TCA28 000:036 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 (0012ms, 0032ms total)
TCA28 000:036 WEBSRV Webserver running on local port 19080 (0012ms, 0032ms total)
TCA28 000:036   returns O.K. (0012ms, 0032ms total)
TCA28 000:048 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0032ms total)
TCA28 000:048 JLINK_TIF_GetAvailable(...) (0000ms, 0032ms total)
TCA28 000:048 JLINK_SetErrorOutHandler(...) (0000ms, 0032ms total)
TCA28 000:048 JLINK_ExecCommand("ProjectFile = "C:\git\XRange_Tag -Lora-R - GPS\MDK-ARM\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0094ms, 0126ms total)
TCA28 000:142 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0002ms, 0128ms total)
TCA28 000:144 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetFirmwareString(...) (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetCompileDateTime() (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetFirmwareString(...) (0000ms, 0128ms total)
TCA28 000:144 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0128ms total)
TCA28 000:144 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0129ms total)
TCA28 000:145 JLINK_SetSpeed(5000) (0001ms, 0130ms total)
TCA28 000:146 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770031)
Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, Little endian.
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB -- 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) -- CPU_WriteMem(8192 bytes @ 0x20000000) >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0336ms, 0466ms total)
TCA28 000:482 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0466ms total)
TCA28 000:482 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0466ms total)
TCA28 000:482 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0466ms total)
TCA28 000:482 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0466ms total)
TCA28 000:482 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0466ms total)
TCA28 000:482 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0467ms total)
TCA28 000:483 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0467ms total)
TCA28 000:483 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0467ms total)
TCA28 000:483 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 0x01 (0000ms, 0468ms total)
TCA28 000:484 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_Halt()  returns 0x00 (0000ms, 0468ms total)
TCA28 000:484 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 0x01 (0001ms, 0469ms total)
TCA28 000:485 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0470ms total)
TCA28 000:486 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0471ms total)
TCA28 000:487 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0471ms total)
TCA28 000:487 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0471ms total)
TCA28 000:487 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0471ms total)
TCA28 000:487 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0471ms total)
TCA28 000:487 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0471ms total)
TCA28 000:487 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0472ms total)
TCA28 000:488 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0472ms total)
TCA28 000:488 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0472ms total)
TCA28 000:564 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0472ms total)
TCA28 000:564 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0071ms, 0543ms total)
TCA28 000:635 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0543ms total)
TCA28 000:635 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0543ms total)
TCA28 000:636 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0001ms, 0544ms total)
TCA28 000:637 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 000:638 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 001:727 JLINK_ReadMemEx(0x080000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E2) - Data: FE E7  returns 0x02 (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:256 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(R13 (SP))  returns 0x20001588 (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(MSP)  returns 0x20001588 (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0544ms total)
TCA28 002:257 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0545ms total)
TCA28 002:263 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0545ms total)
TCA28 002:263 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0545ms total)
TCA28 002:266 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0002ms, 0547ms total)
TCA28 002:268 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0547ms total)
TCA28 002:268 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0547ms total)
TCA28 002:272 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0001ms, 0548ms total)
TCA28 002:273 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0000ms, 0548ms total)
TCA28 002:273 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0000ms, 0548ms total)
TCA28 002:280 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0549ms total)
TCA28 002:281 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0549ms total)
TCA28 002:281 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0550ms total)
TCA28 002:286 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0551ms total)
TCA28 002:287 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0551ms total)
TCA28 002:287 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0552ms total)
TCA28 002:291 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0552ms total)
TCA28 002:291 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0552ms total)
TCA28 002:291 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0552ms total)
TCA28 002:300 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0001ms, 0553ms total)
TCA28 002:301 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0000ms, 0553ms total)
TCA28 002:301 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0000ms, 0553ms total)
TCA28 002:306 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0002ms, 0555ms total)
TCA28 002:308 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:308 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:318 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:318 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:318 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:323 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0555ms total)
TCA28 002:323 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0555ms total)
TCA28 002:323 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0555ms total)
TCA28 002:329 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:329 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:329 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0555ms total)
TCA28 002:340 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:340 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:340 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:347 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0555ms total)
TCA28 002:347 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0555ms total)
TCA28 002:347 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0555ms total)
TCA28 002:353 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:353 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:353 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0555ms total)
TCA28 002:360 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0001ms, 0556ms total)
TCA28 002:361 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0000ms, 0556ms total)
TCA28 002:361 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0000ms, 0556ms total)
TCA28 002:369 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0556ms total)
TCA28 002:369 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0556ms total)
TCA28 002:369 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0556ms total)
TCA28 002:376 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20001880) -- Updating C cache (128 bytes @ 0x20001880) -- Read from C cache (32 bytes @ 0x200018A8) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0558ms total)
TCA28 002:386 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0000ms, 0558ms total)
TCA28 002:386 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0000ms, 0558ms total)
TCA28 002:386 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: AA 55  returns 0x02 (0000ms, 0558ms total)
TCA28 002:411 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0559ms total)
TCA28 002:412 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0559ms total)
TCA28 002:412 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0559ms total)
TCA28 002:420 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0000ms, 0559ms total)
TCA28 002:420 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0000ms, 0559ms total)
TCA28 002:420 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0000ms, 0559ms total)
TCA28 002:429 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000E2) - Data: AA 55  returns 0x02 (0000ms, 0559ms total)
TCA28 002:429 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000E2) - Data: AA 55  returns 0x02 (0000ms, 0559ms total)
TCA28 002:429 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000E2) - Data: AA 55  returns 0x02 (0000ms, 0559ms total)
T7D8C 002:504 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0559ms total)
T7D8C 002:504 JLINK_SetBPEx(Addr = 0x0800C32C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0559ms total)
T7D8C 002:504 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) (0005ms, 0564ms total)
T7D8C 002:610 JLINK_IsHalted()  returns TRUE (0003ms, 0567ms total)
T7D8C 002:613 JLINK_Halt()  returns 0x00 (0000ms, 0564ms total)
T7D8C 002:613 JLINK_IsHalted()  returns TRUE (0001ms, 0565ms total)
T7D8C 002:614 JLINK_IsHalted()  returns TRUE (0000ms, 0564ms total)
T7D8C 002:614 JLINK_IsHalted()  returns TRUE (0000ms, 0564ms total)
T7D8C 002:614 JLINK_ReadReg(R15 (PC))  returns 0x0800C32C (0000ms, 0564ms total)
T7D8C 002:614 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0564ms total)
T7D8C 002:614 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0564ms total)
T7D8C 002:614 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0564ms total)
T7D8C 002:614 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0565ms total)
T7D8C 002:615 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R0)  returns 0x0800C32D (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R1)  returns 0x20001FB0 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R3)  returns 0x0800B81D (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R4)  returns 0x0800C768 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R6)  returns 0x0800C768 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R7)  returns 0x0000AAAA (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R13 (SP))  returns 0x20001FB0 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R14)  returns 0x08005A65 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(R15 (PC))  returns 0x0800C32C (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(MSP)  returns 0x20001FB0 (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0566ms total)
T7D8C 002:616 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0566ms total)
TCA28 002:616 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x200002A4) - Data: 0A 00 00 00  returns 0x04 (0002ms, 0568ms total)
TCA28 002:625 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0002ms, 0570ms total)
TCA28 002:635 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0571ms total)
TCA28 002:644 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: 00 00 00 00  returns 0x04 (0001ms, 0572ms total)
TCA28 002:652 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0002ms, 0574ms total)
TCA28 002:661 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0574ms total)
TCA28 002:676 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 00  returns 0x01 (0001ms, 0575ms total)
TCA28 002:685 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0576ms total)
TCA28 002:693 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 0576ms total)
TCA28 002:701 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0576ms total)
TCA28 002:708 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0000ms, 0576ms total)
TCA28 002:722 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0576ms total)
TCA28 002:730 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0576ms total)
TCA28 002:737 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0576ms total)
TCA28 002:744 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0577ms total)
TCA28 002:753 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0577ms total)
TCA28 002:760 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20001880) -- Updating C cache (128 bytes @ 0x20001880) -- Read from C cache (32 bytes @ 0x200018A8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0579ms total)
TCA28 002:769 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0579ms total)
TCA28 002:777 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0579ms total)
TCA28 002:784 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0579ms total)
TCA28 002:791 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000E2) - Data: 00 00  returns 0x02 (0000ms, 0579ms total)
T7D8C 003:619 JLINK_ReadMemEx(0x0800C32C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800C300) -- Updating C cache (64 bytes @ 0x0800C300) -- Read from C cache (2 bytes @ 0x0800C32C) - Data: FA F7  returns 0x02 (0001ms, 0580ms total)
T7D8C 003:620 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0583ms total)
T7D8C 003:724 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
T7D8C 003:825 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
T7D8C 003:926 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
T7D8C 004:028 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
TCA28 004:129 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0584ms total)
TCA28 004:138 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0585ms total)
TCA28 004:139 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0586ms total)
TCA28 004:147 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 00 00 00 00  returns 0x04 (0000ms, 0586ms total)
TCA28 004:154 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0587ms total)
TCA28 004:162 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0587ms total)
TCA28 004:177 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 00  returns 0x01 (0000ms, 0587ms total)
TCA28 004:184 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0588ms total)
TCA28 004:192 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 0588ms total)
TCA28 004:200 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0589ms total)
TCA28 004:208 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0001ms, 0590ms total)
TCA28 004:223 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0590ms total)
TCA28 004:230 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0591ms total)
TCA28 004:239 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0591ms total)
TCA28 004:246 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0592ms total)
TCA28 004:254 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0593ms total)
TCA28 004:262 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0594ms total)
TCA28 004:263 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0595ms total)
TCA28 004:271 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0596ms total)
TCA28 004:279 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0596ms total)
TCA28 004:286 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 00 00  returns 0x02 (0001ms, 0597ms total)
T7D8C 004:301 JLINK_IsHalted()  returns FALSE (0001ms, 0598ms total)
T7D8C 004:403 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T7D8C 004:504 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T7D8C 004:605 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
TCA28 004:706 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 0597ms total)
TCA28 004:706 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0598ms total)
TCA28 004:707 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0599ms total)
TCA28 004:708 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 00 00 00 00  returns 0x04 (0000ms, 0599ms total)
TCA28 004:708 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0600ms total)
TCA28 004:709 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0601ms total)
TCA28 004:717 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 00  returns 0x01 (0001ms, 0602ms total)
TCA28 004:718 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0603ms total)
TCA28 004:719 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 0603ms total)
TCA28 004:719 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0604ms total)
TCA28 004:720 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0001ms, 0605ms total)
TCA28 004:729 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0605ms total)
TCA28 004:729 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0606ms total)
TCA28 004:730 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0607ms total)
TCA28 004:731 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0607ms total)
TCA28 004:731 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0608ms total)
TCA28 004:732 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0609ms total)
TCA28 004:733 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0610ms total)
TCA28 004:734 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0610ms total)
TCA28 004:734 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0611ms total)
TCA28 004:735 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 00 00  returns 0x02 (0001ms, 0612ms total)
T7D8C 004:743 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T7D8C 004:845 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T7D8C 004:946 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T7D8C 005:047 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
T7D8C 005:149 JLINK_IsHalted()  returns FALSE (0000ms, 0612ms total)
TCA28 005:250 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 0612ms total)
TCA28 005:250 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0613ms total)
TCA28 005:251 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0614ms total)
TCA28 005:252 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 00 00 00 00  returns 0x04 (0000ms, 0614ms total)
TCA28 005:252 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0615ms total)
TCA28 005:253 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0616ms total)
TCA28 005:262 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 00  returns 0x01 (0000ms, 0616ms total)
TCA28 005:262 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0617ms total)
TCA28 005:263 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0001ms, 0618ms total)
TCA28 005:264 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0618ms total)
TCA28 005:264 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0001ms, 0619ms total)
TCA28 005:272 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0620ms total)
TCA28 005:273 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0621ms total)
TCA28 005:274 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0621ms total)
TCA28 005:274 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0622ms total)
TCA28 005:275 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0623ms total)
TCA28 005:276 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0624ms total)
TCA28 005:277 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0624ms total)
TCA28 005:277 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0625ms total)
TCA28 005:278 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0626ms total)
TCA28 005:279 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 00 00  returns 0x02 (0000ms, 0626ms total)
T7D8C 005:287 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T7D8C 005:388 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T7D8C 005:489 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T7D8C 005:591 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
T7D8C 005:692 JLINK_IsHalted()  returns FALSE (0000ms, 0626ms total)
TCA28 005:793 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0626ms total)
TCA28 005:801 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0627ms total)
TCA28 005:802 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 64  returns 0x01 (0001ms, 0628ms total)
TCA28 005:809 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: B6 03 D3 40  returns 0x04 (0001ms, 0629ms total)
TCA28 005:817 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0630ms total)
TCA28 005:825 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0631ms total)
TCA28 005:840 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 01  returns 0x01 (0001ms, 0632ms total)
TCA28 005:848 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0632ms total)
TCA28 005:848 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0633ms total)
TCA28 005:856 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 3F  returns 0x04 (0000ms, 0633ms total)
TCA28 005:863 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0634ms total)
TCA28 005:878 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0635ms total)
TCA28 005:879 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0635ms total)
TCA28 005:879 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0636ms total)
TCA28 005:880 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0637ms total)
TCA28 005:881 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0637ms total)
TCA28 005:881 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FB 14 51 00 00 80 FD 00 00 00 ...  returns 0x20 (0001ms, 0638ms total)
TCA28 005:890 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0638ms total)
TCA28 005:890 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EC 44 00 00  returns 0x04 (0001ms, 0639ms total)
TCA28 005:898 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0640ms total)
TCA28 005:899 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 2B 00  returns 0x02 (0000ms, 0640ms total)
T7D8C 005:915 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T7D8C 006:016 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T7D8C 006:117 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T7D8C 006:218 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
TCA28 006:320 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 0640ms total)
TCA28 006:337 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0640ms total)
TCA28 006:337 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 64  returns 0x01 (0001ms, 0641ms total)
TCA28 006:345 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: B6 03 D3 40  returns 0x04 (0001ms, 0642ms total)
TCA28 006:353 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0643ms total)
TCA28 006:368 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0644ms total)
TCA28 006:390 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 01  returns 0x01 (0001ms, 0645ms total)
TCA28 006:398 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0645ms total)
TCA28 006:399 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0645ms total)
TCA28 006:406 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0646ms total)
TCA28 006:421 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0647ms total)
TCA28 006:437 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 0647ms total)
TCA28 006:444 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0648ms total)
TCA28 006:445 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0649ms total)
TCA28 006:446 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0649ms total)
TCA28 006:446 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0650ms total)
TCA28 006:447 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FB 14 51 00 00 80 FD 00 00 00 ...  returns 0x20 (0001ms, 0651ms total)
TCA28 006:448 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0652ms total)
TCA28 006:449 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EC 44 00 00  returns 0x04 (0000ms, 0652ms total)
TCA28 006:457 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0653ms total)
TCA28 006:458 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4B 00  returns 0x02 (0001ms, 0654ms total)
T7D8C 006:481 JLINK_IsHalted()  returns FALSE (0001ms, 0655ms total)
T7D8C 006:582 JLINK_IsHalted()  returns FALSE (0000ms, 0654ms total)
T7D8C 006:684 JLINK_IsHalted()  returns FALSE (0000ms, 0654ms total)
T7D8C 006:785 JLINK_IsHalted()  returns FALSE (0000ms, 0654ms total)
TCA28 006:886 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 02 00 00 00  returns 0x04 (0000ms, 0654ms total)
TCA28 006:903 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0655ms total)
TCA28 006:904 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0000ms, 0655ms total)
TCA28 006:911 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 0656ms total)
TCA28 006:919 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0657ms total)
TCA28 006:935 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0658ms total)
TCA28 006:960 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 0659ms total)
TCA28 006:968 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0659ms total)
TCA28 006:968 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0660ms total)
TCA28 006:969 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0000ms, 0660ms total)
TCA28 006:985 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0660ms total)
TCA28 006:992 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0661ms total)
TCA28 007:007 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0662ms total)
TCA28 007:008 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0663ms total)
TCA28 007:009 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0663ms total)
TCA28 007:009 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0664ms total)
TCA28 007:010 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FB 14 51 00 00 80 FD 00 00 00 ...  returns 0x20 (0001ms, 0665ms total)
TCA28 007:011 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0666ms total)
TCA28 007:012 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EC 44 00 00  returns 0x04 (0000ms, 0666ms total)
TCA28 007:012 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0667ms total)
TCA28 007:013 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5D 00  returns 0x02 (0001ms, 0668ms total)
T7D8C 007:035 JLINK_IsHalted()  returns FALSE (0001ms, 0669ms total)
T7D8C 007:137 JLINK_IsHalted()  returns FALSE (0000ms, 0668ms total)
T7D8C 007:238 JLINK_IsHalted()  returns FALSE (0000ms, 0668ms total)
T7D8C 007:340 JLINK_IsHalted()  returns FALSE (0000ms, 0668ms total)
TCA28 007:441 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 02 00 00 00  returns 0x04 (0000ms, 0668ms total)
TCA28 007:449 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0669ms total)
TCA28 007:450 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0670ms total)
TCA28 007:458 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 0670ms total)
TCA28 007:465 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0671ms total)
TCA28 007:473 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0672ms total)
TCA28 007:488 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 0673ms total)
TCA28 007:496 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0674ms total)
TCA28 007:497 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0674ms total)
TCA28 007:497 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0675ms total)
TCA28 007:506 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0676ms total)
TCA28 007:514 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0677ms total)
TCA28 007:522 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0678ms total)
TCA28 007:523 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0678ms total)
TCA28 007:523 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0679ms total)
TCA28 007:524 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0680ms total)
TCA28 007:525 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FB 14 51 00 00 80 FD 00 00 00 ...  returns 0x20 (0000ms, 0680ms total)
TCA28 007:525 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0681ms total)
TCA28 007:526 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EC 44 00 00  returns 0x04 (0001ms, 0682ms total)
TCA28 007:527 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0683ms total)
TCA28 007:528 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6D 00  returns 0x02 (0000ms, 0683ms total)
T7D8C 007:551 JLINK_IsHalted()  returns FALSE (0001ms, 0684ms total)
T7D8C 007:653 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T7D8C 007:754 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T7D8C 007:855 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
TCA28 007:956 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0684ms total)
TCA28 007:965 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0685ms total)
TCA28 007:966 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0000ms, 0685ms total)
TCA28 007:966 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 0686ms total)
TCA28 007:975 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0000ms, 0686ms total)
TCA28 007:983 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0000ms, 0686ms total)
TCA28 007:998 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 0687ms total)
TCA28 008:005 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 0689ms total)
TCA28 008:007 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0689ms total)
TCA28 008:007 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0690ms total)
TCA28 008:015 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0691ms total)
TCA28 008:023 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0691ms total)
TCA28 008:024 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0692ms total)
TCA28 008:024 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0693ms total)
TCA28 008:025 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0693ms total)
TCA28 008:025 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0694ms total)
TCA28 008:026 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 C0 26 51 00 00 A9 FD 00 00 00 ...  returns 0x20 (0001ms, 0695ms total)
TCA28 008:027 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0696ms total)
TCA28 008:028 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0F 44 00 00  returns 0x04 (0000ms, 0696ms total)
TCA28 008:036 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0697ms total)
TCA28 008:037 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 79 00  returns 0x02 (0000ms, 0697ms total)
T7D8C 008:059 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T7D8C 008:161 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T7D8C 008:262 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T7D8C 008:364 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T7D8C 008:465 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
TCA28 008:566 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0697ms total)
TCA28 008:576 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0698ms total)
TCA28 008:577 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0000ms, 0698ms total)
TCA28 008:577 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 0699ms total)
TCA28 008:586 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0700ms total)
TCA28 008:594 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0701ms total)
TCA28 008:609 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 0702ms total)
TCA28 008:617 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0702ms total)
TCA28 008:617 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0703ms total)
TCA28 008:618 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0704ms total)
TCA28 008:626 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0705ms total)
TCA28 008:634 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0706ms total)
TCA28 008:635 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0706ms total)
TCA28 008:635 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0707ms total)
TCA28 008:636 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0707ms total)
TCA28 008:636 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0708ms total)
TCA28 008:637 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 C0 26 51 00 00 A9 FD 00 00 00 ...  returns 0x20 (0001ms, 0709ms total)
TCA28 008:638 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0710ms total)
TCA28 008:639 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0F 44 00 00  returns 0x04 (0000ms, 0710ms total)
TCA28 008:647 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0710ms total)
TCA28 008:647 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 86 00  returns 0x02 (0001ms, 0711ms total)
T7D8C 008:669 JLINK_IsHalted()  returns FALSE (0001ms, 0712ms total)
T7D8C 008:772 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7D8C 008:873 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7D8C 008:974 JLINK_IsHalted()  returns FALSE (0001ms, 0712ms total)
T7D8C 009:076 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
TCA28 009:178 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0711ms total)
TCA28 009:178 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0712ms total)
TCA28 009:179 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0713ms total)
TCA28 009:180 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 0713ms total)
TCA28 009:188 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0714ms total)
TCA28 009:196 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0715ms total)
TCA28 009:211 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0001ms, 0716ms total)
TCA28 009:219 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0717ms total)
TCA28 009:220 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0717ms total)
TCA28 009:220 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0718ms total)
TCA28 009:228 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0719ms total)
TCA28 009:236 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0720ms total)
TCA28 009:237 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0721ms total)
TCA28 009:238 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0721ms total)
TCA28 009:238 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0722ms total)
TCA28 009:239 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0723ms total)
TCA28 009:240 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0724ms total)
TCA28 009:241 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0724ms total)
TCA28 009:241 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0E 44 00 00  returns 0x04 (0001ms, 0725ms total)
TCA28 009:249 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0726ms total)
TCA28 009:250 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 98 00  returns 0x02 (0000ms, 0726ms total)
T7D8C 009:272 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7D8C 009:373 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7D8C 009:474 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7D8C 009:576 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7D8C 009:677 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
TCA28 009:778 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0726ms total)
TCA28 009:778 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0727ms total)
TCA28 009:779 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0728ms total)
TCA28 009:780 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 0729ms total)
TCA28 009:788 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0730ms total)
TCA28 009:796 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0731ms total)
TCA28 009:813 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0001ms, 0732ms total)
TCA28 009:821 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0733ms total)
TCA28 009:822 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0733ms total)
TCA28 009:822 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0734ms total)
TCA28 009:831 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0735ms total)
TCA28 009:839 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0736ms total)
TCA28 009:840 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0736ms total)
TCA28 009:840 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0737ms total)
TCA28 009:841 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0738ms total)
TCA28 009:842 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0738ms total)
TCA28 009:842 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0739ms total)
TCA28 009:843 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0740ms total)
TCA28 009:844 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0E 44 00 00  returns 0x04 (0000ms, 0740ms total)
TCA28 009:851 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0741ms total)
TCA28 009:852 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: AE 00  returns 0x02 (0001ms, 0742ms total)
T7D8C 009:874 JLINK_IsHalted()  returns FALSE (0001ms, 0743ms total)
T7D8C 009:977 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7D8C 010:078 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7D8C 010:179 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7D8C 010:281 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
TCA28 010:382 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0742ms total)
TCA28 010:382 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0743ms total)
TCA28 010:383 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0744ms total)
TCA28 010:384 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 0744ms total)
TCA28 010:384 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0745ms total)
TCA28 010:392 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0746ms total)
TCA28 010:407 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0001ms, 0747ms total)
TCA28 010:415 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0748ms total)
TCA28 010:416 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0749ms total)
TCA28 010:417 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 40  returns 0x04 (0000ms, 0749ms total)
TCA28 010:425 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0750ms total)
TCA28 010:433 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0751ms total)
TCA28 010:434 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0752ms total)
TCA28 010:435 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0752ms total)
TCA28 010:435 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0753ms total)
TCA28 010:436 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0754ms total)
TCA28 010:437 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0755ms total)
TCA28 010:438 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0755ms total)
TCA28 010:438 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 10 44 00 00  returns 0x04 (0001ms, 0756ms total)
TCA28 010:446 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0757ms total)
TCA28 010:447 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C7 00  returns 0x02 (0000ms, 0757ms total)
T7D8C 010:470 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7D8C 010:571 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7D8C 010:673 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7D8C 010:774 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7D8C 010:875 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
TCA28 010:976 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0757ms total)
TCA28 010:976 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0002ms, 0759ms total)
TCA28 010:978 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0000ms, 0759ms total)
TCA28 010:978 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 0759ms total)
TCA28 010:986 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0760ms total)
TCA28 011:002 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0000ms, 0760ms total)
TCA28 011:024 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0000ms, 0760ms total)
TCA28 011:038 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0761ms total)
TCA28 011:039 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0762ms total)
TCA28 011:040 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0000ms, 0762ms total)
TCA28 011:055 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0763ms total)
TCA28 011:063 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0763ms total)
TCA28 011:063 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0764ms total)
TCA28 011:064 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0765ms total)
TCA28 011:065 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0765ms total)
TCA28 011:065 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0766ms total)
TCA28 011:066 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0767ms total)
TCA28 011:067 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0768ms total)
TCA28 011:068 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 11 44 00 00  returns 0x04 (0000ms, 0768ms total)
TCA28 011:083 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0769ms total)
TCA28 011:084 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E4 00  returns 0x02 (0001ms, 0770ms total)
T7D8C 011:107 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T7D8C 011:210 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7D8C 011:311 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7D8C 011:412 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
TCA28 011:513 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0770ms total)
TCA28 011:514 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0770ms total)
TCA28 011:514 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0771ms total)
TCA28 011:515 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 0772ms total)
TCA28 011:523 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0773ms total)
TCA28 011:531 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0774ms total)
TCA28 011:546 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0001ms, 0775ms total)
TCA28 011:554 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0775ms total)
TCA28 011:554 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0776ms total)
TCA28 011:555 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0777ms total)
TCA28 011:563 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0777ms total)
TCA28 011:571 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0777ms total)
TCA28 011:571 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0778ms total)
TCA28 011:572 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0779ms total)
TCA28 011:573 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0779ms total)
TCA28 011:573 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0780ms total)
TCA28 011:574 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0781ms total)
TCA28 011:575 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0782ms total)
TCA28 011:576 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 11 44 00 00  returns 0x04 (0000ms, 0782ms total)
TCA28 011:584 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0783ms total)
TCA28 011:585 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 00 01  returns 0x02 (0001ms, 0784ms total)
T7D8C 011:607 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7D8C 011:708 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7D8C 011:809 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7D8C 011:910 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7D8C 012:012 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
TCA28 012:114 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0785ms total)
TCA28 012:115 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0785ms total)
TCA28 012:115 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0786ms total)
TCA28 012:116 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 0787ms total)
TCA28 012:124 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0001ms, 0788ms total)
TCA28 012:132 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0000ms, 0788ms total)
TCA28 012:146 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0001ms, 0789ms total)
TCA28 012:154 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0790ms total)
TCA28 012:155 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0790ms total)
TCA28 012:155 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0001ms, 0791ms total)
TCA28 012:163 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0792ms total)
TCA28 012:172 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0792ms total)
TCA28 012:172 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0793ms total)
TCA28 012:173 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0793ms total)
TCA28 012:173 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0794ms total)
TCA28 012:174 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0795ms total)
TCA28 012:175 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0796ms total)
TCA28 012:176 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0796ms total)
TCA28 012:176 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 10 44 00 00  returns 0x04 (0001ms, 0797ms total)
TCA28 012:185 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0797ms total)
TCA28 012:185 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 12 01  returns 0x02 (0001ms, 0798ms total)
T7D8C 012:208 JLINK_IsHalted()  returns FALSE (0001ms, 0799ms total)
T7D8C 012:310 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7D8C 012:412 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7D8C 012:513 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7D8C 012:614 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
TCA28 012:715 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0799ms total)
TCA28 012:716 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0799ms total)
TCA28 012:716 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0800ms total)
TCA28 012:717 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 0801ms total)
TCA28 012:725 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0002ms, 0803ms total)
TCA28 012:734 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0000ms, 0803ms total)
TCA28 012:748 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0001ms, 0804ms total)
TCA28 012:756 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0805ms total)
TCA28 012:757 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0805ms total)
TCA28 012:757 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 41  returns 0x04 (0001ms, 0806ms total)
TCA28 012:765 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0807ms total)
TCA28 012:773 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0808ms total)
TCA28 012:774 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0809ms total)
TCA28 012:775 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0809ms total)
TCA28 012:775 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0810ms total)
TCA28 012:776 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0810ms total)
TCA28 012:777 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0000ms, 0811ms total)
TCA28 012:777 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0812ms total)
TCA28 012:778 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 10 44 00 00  returns 0x04 (0001ms, 0813ms total)
TCA28 012:786 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0814ms total)
TCA28 012:787 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 25 01  returns 0x02 (0000ms, 0814ms total)
T7D8C 012:809 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7D8C 012:910 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7D8C 013:011 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7D8C 013:113 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7D8C 013:214 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
TCA28 013:315 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0814ms total)
TCA28 013:315 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0815ms total)
TCA28 013:316 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 63  returns 0x01 (0001ms, 0816ms total)
TCA28 013:317 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 0816ms total)
TCA28 013:325 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 41  returns 0x04 (0001ms, 0817ms total)
TCA28 013:333 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 41  returns 0x04 (0001ms, 0818ms total)
TCA28 013:348 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 08  returns 0x01 (0000ms, 0818ms total)
TCA28 013:356 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0818ms total)
TCA28 013:356 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0819ms total)
TCA28 013:357 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 41  returns 0x04 (0001ms, 0820ms total)
TCA28 013:365 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0821ms total)
TCA28 013:373 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0822ms total)
TCA28 013:374 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0823ms total)
TCA28 013:375 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0823ms total)
TCA28 013:375 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0824ms total)
TCA28 013:376 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0825ms total)
TCA28 013:377 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0000ms, 0825ms total)
TCA28 013:377 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0826ms total)
TCA28 013:378 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 11 44 00 00  returns 0x04 (0001ms, 0827ms total)
TCA28 013:386 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0828ms total)
TCA28 013:387 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 33 01  returns 0x02 (0000ms, 0828ms total)
T7D8C 013:409 JLINK_IsHalted()  returns FALSE (0001ms, 0829ms total)
T7D8C 013:512 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7D8C 013:613 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7D8C 013:714 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7D8C 013:815 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
TCA28 013:917 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0828ms total)
TCA28 013:917 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0829ms total)
TCA28 013:918 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0830ms total)
TCA28 013:926 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: F7 AD 82 40  returns 0x04 (0001ms, 0831ms total)
TCA28 013:941 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0001ms, 0832ms total)
TCA28 013:956 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0001ms, 0833ms total)
TCA28 013:985 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 09  returns 0x01 (0000ms, 0833ms total)
TCA28 014:000 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0833ms total)
TCA28 014:000 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0834ms total)
TCA28 014:001 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0001ms, 0835ms total)
TCA28 014:017 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0835ms total)
TCA28 014:025 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0835ms total)
TCA28 014:025 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0836ms total)
TCA28 014:026 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0837ms total)
TCA28 014:027 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0837ms total)
TCA28 014:027 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0838ms total)
TCA28 014:028 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0839ms total)
TCA28 014:029 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0839ms total)
TCA28 014:029 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 44 00 00  returns 0x04 (0001ms, 0840ms total)
TCA28 014:044 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0841ms total)
TCA28 014:045 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4A 01  returns 0x02 (0000ms, 0841ms total)
T7D8C 014:067 JLINK_IsHalted()  returns FALSE (0001ms, 0842ms total)
T7D8C 014:168 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7D8C 014:270 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7D8C 014:371 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
TCA28 014:472 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0842ms total)
TCA28 014:473 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0842ms total)
TCA28 014:474 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 0843ms total)
TCA28 014:482 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: F7 AD 82 40  returns 0x04 (0000ms, 0843ms total)
TCA28 014:489 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0001ms, 0844ms total)
TCA28 014:497 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0001ms, 0845ms total)
TCA28 014:512 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 09  returns 0x01 (0002ms, 0847ms total)
TCA28 014:521 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0847ms total)
TCA28 014:521 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0848ms total)
TCA28 014:522 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 41  returns 0x04 (0000ms, 0848ms total)
TCA28 014:530 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0848ms total)
TCA28 014:538 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0848ms total)
TCA28 014:538 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0849ms total)
TCA28 014:539 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0849ms total)
TCA28 014:539 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0850ms total)
TCA28 014:540 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0851ms total)
TCA28 014:541 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0852ms total)
TCA28 014:542 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0852ms total)
TCA28 014:542 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 44 00 00  returns 0x04 (0001ms, 0853ms total)
TCA28 014:550 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0854ms total)
TCA28 014:551 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5D 01  returns 0x02 (0001ms, 0855ms total)
T7D8C 014:573 JLINK_IsHalted()  returns FALSE (0001ms, 0856ms total)
T7D8C 014:675 JLINK_IsHalted()  returns FALSE (0001ms, 0856ms total)
T7D8C 014:776 JLINK_IsHalted()  returns FALSE (0001ms, 0856ms total)
T7D8C 014:878 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7D8C 014:980 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
TCA28 015:081 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0855ms total)
TCA28 015:081 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0856ms total)
TCA28 015:082 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0857ms total)
TCA28 015:083 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 0858ms total)
TCA28 015:091 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0001ms, 0859ms total)
TCA28 015:099 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0001ms, 0860ms total)
TCA28 015:115 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0000ms, 0860ms total)
TCA28 015:122 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0861ms total)
TCA28 015:123 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0862ms total)
TCA28 015:124 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0000ms, 0862ms total)
TCA28 015:131 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0863ms total)
TCA28 015:139 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0864ms total)
TCA28 015:140 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0865ms total)
TCA28 015:141 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0865ms total)
TCA28 015:141 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0866ms total)
TCA28 015:142 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0867ms total)
TCA28 015:143 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0868ms total)
TCA28 015:144 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0868ms total)
TCA28 015:144 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 12 44 00 00  returns 0x04 (0001ms, 0869ms total)
TCA28 015:152 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0870ms total)
TCA28 015:153 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6C 01  returns 0x02 (0000ms, 0870ms total)
T7D8C 015:175 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7D8C 015:277 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7D8C 015:378 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7D8C 015:479 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7D8C 015:580 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
TCA28 015:682 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0870ms total)
TCA28 015:682 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0871ms total)
TCA28 015:683 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0872ms total)
TCA28 015:684 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 0872ms total)
TCA28 015:692 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0000ms, 0872ms total)
TCA28 015:701 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0000ms, 0872ms total)
TCA28 015:716 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0000ms, 0872ms total)
TCA28 015:723 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0873ms total)
TCA28 015:724 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0873ms total)
TCA28 015:724 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 41  returns 0x04 (0001ms, 0874ms total)
TCA28 015:732 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0875ms total)
TCA28 015:740 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0876ms total)
TCA28 015:741 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0876ms total)
TCA28 015:741 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0877ms total)
TCA28 015:742 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0878ms total)
TCA28 015:743 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0878ms total)
TCA28 015:743 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0879ms total)
TCA28 015:744 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0880ms total)
TCA28 015:745 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 12 44 00 00  returns 0x04 (0001ms, 0881ms total)
TCA28 015:753 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0881ms total)
TCA28 015:753 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 86 01  returns 0x02 (0001ms, 0882ms total)
T7D8C 015:775 JLINK_IsHalted()  returns FALSE (0001ms, 0883ms total)
T7D8C 015:877 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7D8C 015:978 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7D8C 016:080 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7D8C 016:181 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
TCA28 016:282 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0882ms total)
TCA28 016:282 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0883ms total)
TCA28 016:283 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0884ms total)
TCA28 016:284 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 28 BB 82 40  returns 0x04 (0000ms, 0884ms total)
TCA28 016:292 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0001ms, 0885ms total)
TCA28 016:301 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0001ms, 0886ms total)
TCA28 016:317 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0B  returns 0x01 (0000ms, 0886ms total)
TCA28 016:325 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0886ms total)
TCA28 016:325 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0887ms total)
TCA28 016:326 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0001ms, 0888ms total)
TCA28 016:334 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0889ms total)
TCA28 016:342 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0889ms total)
TCA28 016:342 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0890ms total)
TCA28 016:343 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0891ms total)
TCA28 016:344 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0891ms total)
TCA28 016:344 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0892ms total)
TCA28 016:345 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0893ms total)
TCA28 016:346 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0894ms total)
TCA28 016:347 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0000ms, 0894ms total)
TCA28 016:355 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0894ms total)
TCA28 016:355 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A4 01  returns 0x02 (0001ms, 0895ms total)
T7D8C 016:377 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T7D8C 016:479 JLINK_IsHalted()  returns FALSE (0001ms, 0896ms total)
T7D8C 016:582 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7D8C 016:683 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
TCA28 016:784 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0896ms total)
TCA28 016:785 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0896ms total)
TCA28 016:785 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0897ms total)
TCA28 016:786 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 28 BB 82 40  returns 0x04 (0001ms, 0898ms total)
TCA28 016:794 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0001ms, 0899ms total)
TCA28 016:802 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0000ms, 0899ms total)
TCA28 016:816 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0B  returns 0x01 (0001ms, 0900ms total)
TCA28 016:825 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0900ms total)
TCA28 016:825 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 0901ms total)
TCA28 016:826 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 41  returns 0x04 (0001ms, 0902ms total)
TCA28 016:834 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0903ms total)
TCA28 016:842 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0904ms total)
TCA28 016:843 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0904ms total)
TCA28 016:843 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0905ms total)
TCA28 016:844 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0905ms total)
TCA28 016:844 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0906ms total)
TCA28 016:845 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0907ms total)
TCA28 016:846 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0908ms total)
TCA28 016:847 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0000ms, 0908ms total)
TCA28 016:854 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0909ms total)
TCA28 016:855 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BB 01  returns 0x02 (0001ms, 0910ms total)
T7D8C 016:877 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T7D8C 016:980 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7D8C 017:081 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T7D8C 017:182 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7D8C 017:284 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
TCA28 017:385 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0911ms total)
TCA28 017:386 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0911ms total)
TCA28 017:386 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0912ms total)
TCA28 017:387 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 0913ms total)
TCA28 017:395 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 41  returns 0x04 (0001ms, 0914ms total)
TCA28 017:403 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 41  returns 0x04 (0000ms, 0914ms total)
TCA28 017:418 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0C  returns 0x01 (0001ms, 0915ms total)
TCA28 017:426 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0916ms total)
TCA28 017:427 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0916ms total)
TCA28 017:427 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 41  returns 0x04 (0001ms, 0917ms total)
TCA28 017:435 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0918ms total)
TCA28 017:443 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0919ms total)
TCA28 017:444 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0919ms total)
TCA28 017:444 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0920ms total)
TCA28 017:445 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0921ms total)
TCA28 017:446 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0921ms total)
TCA28 017:446 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0922ms total)
TCA28 017:447 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0923ms total)
TCA28 017:448 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 16 44 00 00  returns 0x04 (0001ms, 0924ms total)
TCA28 017:456 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0924ms total)
TCA28 017:456 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D0 01  returns 0x02 (0001ms, 0925ms total)
T7D8C 017:478 JLINK_IsHalted()  returns FALSE (0001ms, 0926ms total)
T7D8C 017:580 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7D8C 017:682 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7D8C 017:783 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7D8C 017:884 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
TCA28 017:986 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0925ms total)
TCA28 017:986 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0926ms total)
TCA28 017:987 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0927ms total)
TCA28 017:988 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 0927ms total)
TCA28 018:003 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0928ms total)
TCA28 018:018 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0929ms total)
TCA28 018:041 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0001ms, 0930ms total)
TCA28 018:056 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0931ms total)
TCA28 018:057 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0931ms total)
TCA28 018:057 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0932ms total)
TCA28 018:073 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0932ms total)
TCA28 018:081 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0932ms total)
TCA28 018:081 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0933ms total)
TCA28 018:082 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0934ms total)
TCA28 018:083 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0934ms total)
TCA28 018:083 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0935ms total)
TCA28 018:084 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0936ms total)
TCA28 018:085 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0936ms total)
TCA28 018:085 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 15 44 00 00  returns 0x04 (0001ms, 0937ms total)
TCA28 018:102 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0938ms total)
TCA28 018:103 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: DE 01  returns 0x02 (0001ms, 0939ms total)
T7D8C 018:125 JLINK_IsHalted()  returns FALSE (0002ms, 0941ms total)
T7D8C 018:228 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7D8C 018:329 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7D8C 018:430 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
TCA28 018:532 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0939ms total)
TCA28 018:532 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0940ms total)
TCA28 018:533 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0941ms total)
TCA28 018:534 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 0941ms total)
TCA28 018:542 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0942ms total)
TCA28 018:550 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0943ms total)
TCA28 018:565 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0001ms, 0944ms total)
TCA28 018:573 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0944ms total)
TCA28 018:574 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0944ms total)
TCA28 018:574 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 41  returns 0x04 (0001ms, 0945ms total)
TCA28 018:582 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0946ms total)
TCA28 018:590 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0947ms total)
TCA28 018:591 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0948ms total)
TCA28 018:592 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0948ms total)
TCA28 018:592 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0949ms total)
TCA28 018:593 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0950ms total)
TCA28 018:594 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 0951ms total)
TCA28 018:595 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0951ms total)
TCA28 018:595 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 15 44 00 00  returns 0x04 (0001ms, 0952ms total)
TCA28 018:604 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0952ms total)
TCA28 018:604 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E8 01  returns 0x02 (0001ms, 0953ms total)
T7D8C 018:627 JLINK_IsHalted()  returns FALSE (0001ms, 0954ms total)
T7D8C 018:729 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7D8C 018:830 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7D8C 018:932 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7D8C 019:033 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
TCA28 019:135 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0953ms total)
TCA28 019:135 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0954ms total)
TCA28 019:136 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0955ms total)
TCA28 019:137 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: F7 AD 82 40  returns 0x04 (0000ms, 0955ms total)
TCA28 019:146 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0000ms, 0955ms total)
TCA28 019:153 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0001ms, 0956ms total)
TCA28 019:168 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0E  returns 0x01 (0001ms, 0957ms total)
TCA28 019:176 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0958ms total)
TCA28 019:177 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0958ms total)
TCA28 019:177 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0001ms, 0959ms total)
TCA28 019:186 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0959ms total)
TCA28 019:194 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0959ms total)
TCA28 019:194 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0960ms total)
TCA28 019:195 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0960ms total)
TCA28 019:195 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0961ms total)
TCA28 019:196 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0962ms total)
TCA28 019:197 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0963ms total)
TCA28 019:198 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0963ms total)
TCA28 019:198 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 17 44 00 00  returns 0x04 (0001ms, 0964ms total)
TCA28 019:207 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0964ms total)
TCA28 019:207 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F9 01  returns 0x02 (0001ms, 0965ms total)
T7D8C 019:230 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7D8C 019:331 JLINK_IsHalted()  returns FALSE (0001ms, 0966ms total)
T7D8C 019:432 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7D8C 019:534 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7D8C 019:635 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
TCA28 019:736 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0965ms total)
TCA28 019:736 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0966ms total)
TCA28 019:737 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0967ms total)
TCA28 019:738 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: F7 AD 82 40  returns 0x04 (0000ms, 0967ms total)
TCA28 019:746 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0000ms, 0967ms total)
TCA28 019:754 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0001ms, 0968ms total)
TCA28 019:769 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0E  returns 0x01 (0001ms, 0969ms total)
TCA28 019:777 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0969ms total)
TCA28 019:778 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0969ms total)
TCA28 019:778 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 41  returns 0x04 (0001ms, 0970ms total)
TCA28 019:786 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 0971ms total)
TCA28 019:795 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 0971ms total)
TCA28 019:795 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0972ms total)
TCA28 019:796 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0973ms total)
TCA28 019:797 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0973ms total)
TCA28 019:797 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0974ms total)
TCA28 019:798 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 0975ms total)
TCA28 019:799 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 0975ms total)
TCA28 019:799 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 17 44 00 00  returns 0x04 (0001ms, 0976ms total)
TCA28 019:807 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0977ms total)
TCA28 019:808 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 0B 02  returns 0x02 (0001ms, 0978ms total)
T7D8C 019:831 JLINK_IsHalted()  returns FALSE (0001ms, 0979ms total)
T7D8C 019:933 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7D8C 020:034 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7D8C 020:135 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7D8C 020:236 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
TCA28 020:338 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0979ms total)
TCA28 020:339 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0979ms total)
TCA28 020:339 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0980ms total)
TCA28 020:340 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 0981ms total)
TCA28 020:348 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 41  returns 0x04 (0001ms, 0982ms total)
TCA28 020:356 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 41  returns 0x04 (0001ms, 0983ms total)
TCA28 020:371 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0F  returns 0x01 (0001ms, 0984ms total)
TCA28 020:379 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0985ms total)
TCA28 020:380 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 0985ms total)
TCA28 020:381 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 41  returns 0x04 (0000ms, 0986ms total)
TCA28 020:389 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 0986ms total)
TCA28 020:396 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 0987ms total)
TCA28 020:397 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0988ms total)
TCA28 020:398 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0988ms total)
TCA28 020:398 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0989ms total)
TCA28 020:399 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0990ms total)
TCA28 020:400 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0000ms, 0990ms total)
TCA28 020:400 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 0991ms total)
TCA28 020:401 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 18 44 00 00  returns 0x04 (0001ms, 0992ms total)
TCA28 020:409 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0993ms total)
TCA28 020:410 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 1C 02  returns 0x02 (0001ms, 0994ms total)
T7D8C 020:433 JLINK_IsHalted()  returns FALSE (0001ms, 0995ms total)
T7D8C 020:534 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7D8C 020:635 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7D8C 020:737 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7D8C 020:838 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
TCA28 020:939 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0994ms total)
TCA28 020:939 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0995ms total)
TCA28 020:940 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 0996ms total)
TCA28 020:941 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 0996ms total)
TCA28 020:950 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 0997ms total)
TCA28 020:967 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 0998ms total)
TCA28 020:992 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 10  returns 0x01 (0001ms, 0999ms total)
TCA28 021:008 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1000ms total)
TCA28 021:009 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1000ms total)
TCA28 021:009 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1001ms total)
TCA28 021:026 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1001ms total)
TCA28 021:034 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1001ms total)
TCA28 021:034 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1002ms total)
TCA28 021:035 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1003ms total)
TCA28 021:036 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1003ms total)
TCA28 021:036 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1004ms total)
TCA28 021:037 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1005ms total)
TCA28 021:038 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1005ms total)
TCA28 021:038 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1A 44 00 00  returns 0x04 (0001ms, 1006ms total)
TCA28 021:054 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1006ms total)
TCA28 021:054 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 42 02  returns 0x02 (0001ms, 1007ms total)
T7D8C 021:076 JLINK_IsHalted()  returns FALSE (0001ms, 1008ms total)
T7D8C 021:179 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7D8C 021:280 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7D8C 021:381 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
TCA28 021:482 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1007ms total)
TCA28 021:482 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1008ms total)
TCA28 021:483 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1009ms total)
TCA28 021:484 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1009ms total)
TCA28 021:484 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1010ms total)
TCA28 021:493 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1011ms total)
TCA28 021:508 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 10  returns 0x01 (0001ms, 1012ms total)
TCA28 021:516 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1013ms total)
TCA28 021:517 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1013ms total)
TCA28 021:517 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1014ms total)
TCA28 021:525 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1015ms total)
TCA28 021:535 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1016ms total)
TCA28 021:536 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1016ms total)
TCA28 021:536 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1017ms total)
TCA28 021:537 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1018ms total)
TCA28 021:538 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1018ms total)
TCA28 021:538 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1019ms total)
TCA28 021:539 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1020ms total)
TCA28 021:540 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1A 44 00 00  returns 0x04 (0001ms, 1021ms total)
TCA28 021:548 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1022ms total)
TCA28 021:549 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 60 02  returns 0x02 (0001ms, 1023ms total)
T7D8C 021:571 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T7D8C 021:673 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7D8C 021:774 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7D8C 021:875 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7D8C 021:977 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
TCA28 022:078 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1023ms total)
TCA28 022:078 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1024ms total)
TCA28 022:079 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1025ms total)
TCA28 022:080 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1025ms total)
TCA28 022:088 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0001ms, 1026ms total)
TCA28 022:097 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0000ms, 1026ms total)
TCA28 022:112 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 11  returns 0x01 (0000ms, 1026ms total)
TCA28 022:119 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1027ms total)
TCA28 022:120 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1028ms total)
TCA28 022:121 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0000ms, 1028ms total)
TCA28 022:128 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1029ms total)
TCA28 022:137 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1030ms total)
TCA28 022:138 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1030ms total)
TCA28 022:138 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1031ms total)
TCA28 022:139 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1032ms total)
TCA28 022:140 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1032ms total)
TCA28 022:140 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1033ms total)
TCA28 022:141 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1034ms total)
TCA28 022:142 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 19 44 00 00  returns 0x04 (0000ms, 1034ms total)
TCA28 022:150 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1034ms total)
TCA28 022:150 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6F 02  returns 0x02 (0001ms, 1035ms total)
T7D8C 022:172 JLINK_IsHalted()  returns FALSE (0001ms, 1036ms total)
T7D8C 022:274 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7D8C 022:375 JLINK_IsHalted()  returns FALSE (0001ms, 1036ms total)
T7D8C 022:476 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7D8C 022:578 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
TCA28 022:679 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1035ms total)
TCA28 022:679 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1036ms total)
TCA28 022:680 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1037ms total)
TCA28 022:681 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1037ms total)
TCA28 022:689 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0000ms, 1037ms total)
TCA28 022:697 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0000ms, 1037ms total)
TCA28 022:713 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 11  returns 0x01 (0000ms, 1037ms total)
TCA28 022:721 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1037ms total)
TCA28 022:721 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1038ms total)
TCA28 022:722 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 41  returns 0x04 (0001ms, 1039ms total)
TCA28 022:730 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1040ms total)
TCA28 022:738 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1041ms total)
TCA28 022:739 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1041ms total)
TCA28 022:739 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1042ms total)
TCA28 022:740 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1043ms total)
TCA28 022:741 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1043ms total)
TCA28 022:741 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1044ms total)
TCA28 022:742 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1045ms total)
TCA28 022:743 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 19 44 00 00  returns 0x04 (0001ms, 1046ms total)
TCA28 022:751 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1047ms total)
TCA28 022:752 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 80 02  returns 0x02 (0000ms, 1047ms total)
T7D8C 022:774 JLINK_IsHalted()  returns FALSE (0001ms, 1048ms total)
T7D8C 022:876 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7D8C 022:977 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7D8C 023:078 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7D8C 023:179 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
TCA28 023:281 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1047ms total)
TCA28 023:281 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1048ms total)
TCA28 023:282 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1049ms total)
TCA28 023:283 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 1049ms total)
TCA28 023:291 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 41  returns 0x04 (0001ms, 1050ms total)
TCA28 023:299 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 41  returns 0x04 (0000ms, 1050ms total)
TCA28 023:314 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 12  returns 0x01 (0000ms, 1050ms total)
TCA28 023:321 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1051ms total)
TCA28 023:322 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1052ms total)
TCA28 023:323 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 41  returns 0x04 (0000ms, 1052ms total)
TCA28 023:331 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1053ms total)
TCA28 023:339 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1054ms total)
TCA28 023:340 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1054ms total)
TCA28 023:340 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1055ms total)
TCA28 023:341 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1055ms total)
TCA28 023:341 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1056ms total)
TCA28 023:342 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1057ms total)
TCA28 023:343 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1058ms total)
TCA28 023:344 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 44 00 00  returns 0x04 (0000ms, 1058ms total)
TCA28 023:351 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1059ms total)
TCA28 023:352 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 8B 02  returns 0x02 (0000ms, 1059ms total)
T7D8C 023:374 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7D8C 023:475 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7D8C 023:576 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7D8C 023:678 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7D8C 023:779 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
TCA28 023:880 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 1059ms total)
TCA28 023:888 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1060ms total)
TCA28 023:889 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1061ms total)
TCA28 023:890 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 28 BB 82 40  returns 0x04 (0000ms, 1061ms total)
TCA28 023:905 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0001ms, 1062ms total)
TCA28 023:920 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0001ms, 1063ms total)
TCA28 023:944 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 13  returns 0x01 (0000ms, 1063ms total)
TCA28 023:959 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1063ms total)
TCA28 023:959 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1064ms total)
TCA28 023:960 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0001ms, 1065ms total)
TCA28 023:978 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1066ms total)
TCA28 023:987 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1067ms total)
TCA28 023:988 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1067ms total)
TCA28 023:988 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1068ms total)
TCA28 023:989 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1069ms total)
TCA28 023:990 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1069ms total)
TCA28 023:990 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1070ms total)
TCA28 023:991 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1071ms total)
TCA28 023:992 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1A 44 00 00  returns 0x04 (0001ms, 1072ms total)
TCA28 024:030 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1072ms total)
TCA28 024:030 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A5 02  returns 0x02 (0001ms, 1073ms total)
T7D8C 024:053 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7D8C 024:155 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7D8C 024:256 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7D8C 024:357 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
TCA28 024:458 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1074ms total)
TCA28 024:474 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1075ms total)
TCA28 024:475 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1076ms total)
TCA28 024:476 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 28 BB 82 40  returns 0x04 (0001ms, 1077ms total)
TCA28 024:484 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0001ms, 1078ms total)
TCA28 024:493 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0000ms, 1078ms total)
TCA28 024:508 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 13  returns 0x01 (0000ms, 1078ms total)
TCA28 024:515 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1079ms total)
TCA28 024:516 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1080ms total)
TCA28 024:517 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 41  returns 0x04 (0000ms, 1080ms total)
TCA28 024:525 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1080ms total)
TCA28 024:534 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1080ms total)
TCA28 024:534 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1081ms total)
TCA28 024:535 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1082ms total)
TCA28 024:536 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1082ms total)
TCA28 024:536 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1083ms total)
TCA28 024:537 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1084ms total)
TCA28 024:538 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1085ms total)
TCA28 024:539 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1A 44 00 00  returns 0x04 (0000ms, 1085ms total)
TCA28 024:547 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1085ms total)
TCA28 024:547 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: B6 02  returns 0x02 (0001ms, 1086ms total)
T7D8C 024:569 JLINK_IsHalted()  returns FALSE (0001ms, 1087ms total)
T7D8C 024:671 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7D8C 024:772 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7D8C 024:873 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
TCA28 024:975 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1086ms total)
TCA28 024:986 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1086ms total)
TCA28 024:986 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1087ms total)
TCA28 024:987 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1088ms total)
TCA28 024:996 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1089ms total)
TCA28 025:005 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1090ms total)
TCA28 025:022 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 14  returns 0x01 (0001ms, 1091ms total)
TCA28 025:031 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1091ms total)
TCA28 025:031 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1092ms total)
TCA28 025:032 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1093ms total)
TCA28 025:040 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1093ms total)
TCA28 025:048 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1093ms total)
TCA28 025:048 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1094ms total)
TCA28 025:049 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1095ms total)
TCA28 025:050 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1095ms total)
TCA28 025:050 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1096ms total)
TCA28 025:051 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1097ms total)
TCA28 025:052 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1097ms total)
TCA28 025:052 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1C 44 00 00  returns 0x04 (0001ms, 1098ms total)
TCA28 025:060 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1099ms total)
TCA28 025:061 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C4 02  returns 0x02 (0000ms, 1099ms total)
T7D8C 025:083 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7D8C 025:184 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7D8C 025:286 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7D8C 025:387 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
TCA28 025:488 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1099ms total)
TCA28 025:488 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1100ms total)
TCA28 025:489 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1101ms total)
TCA28 025:490 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1101ms total)
TCA28 025:498 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1102ms total)
TCA28 025:506 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1103ms total)
TCA28 025:521 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 14  returns 0x01 (0001ms, 1104ms total)
TCA28 025:529 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1105ms total)
TCA28 025:530 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1105ms total)
TCA28 025:530 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 41  returns 0x04 (0001ms, 1106ms total)
TCA28 025:538 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1107ms total)
TCA28 025:546 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1108ms total)
TCA28 025:547 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1109ms total)
TCA28 025:548 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1109ms total)
TCA28 025:548 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1110ms total)
TCA28 025:549 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1111ms total)
TCA28 025:550 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1112ms total)
TCA28 025:551 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1112ms total)
TCA28 025:551 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1C 44 00 00  returns 0x04 (0001ms, 1113ms total)
TCA28 025:559 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1114ms total)
TCA28 025:560 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D8 02  returns 0x02 (0000ms, 1114ms total)
T7D8C 025:582 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7D8C 025:684 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7D8C 025:785 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7D8C 025:886 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7D8C 025:987 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
TCA28 026:089 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1114ms total)
TCA28 026:089 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1115ms total)
TCA28 026:090 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1116ms total)
TCA28 026:091 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1116ms total)
TCA28 026:091 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0001ms, 1117ms total)
TCA28 026:100 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0000ms, 1117ms total)
TCA28 026:115 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 15  returns 0x01 (0000ms, 1117ms total)
TCA28 026:122 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1118ms total)
TCA28 026:123 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1119ms total)
TCA28 026:124 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0000ms, 1119ms total)
TCA28 026:131 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1120ms total)
TCA28 026:139 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1121ms total)
TCA28 026:140 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1121ms total)
TCA28 026:140 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1122ms total)
TCA28 026:141 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1123ms total)
TCA28 026:142 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1123ms total)
TCA28 026:142 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1124ms total)
TCA28 026:143 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1125ms total)
TCA28 026:144 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 44 00 00  returns 0x04 (0000ms, 1125ms total)
TCA28 026:152 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1125ms total)
TCA28 026:152 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F5 02  returns 0x02 (0001ms, 1126ms total)
T7D8C 026:174 JLINK_IsHalted()  returns FALSE (0001ms, 1127ms total)
T7D8C 026:276 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7D8C 026:378 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7D8C 026:479 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7D8C 026:580 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
TCA28 026:682 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1126ms total)
TCA28 026:682 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1127ms total)
TCA28 026:683 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1128ms total)
TCA28 026:684 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1129ms total)
TCA28 026:685 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0000ms, 1129ms total)
TCA28 026:692 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0001ms, 1130ms total)
TCA28 026:708 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 15  returns 0x01 (0000ms, 1130ms total)
TCA28 026:715 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1131ms total)
TCA28 026:716 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1132ms total)
TCA28 026:717 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 41  returns 0x04 (0000ms, 1132ms total)
TCA28 026:725 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1132ms total)
TCA28 026:733 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1132ms total)
TCA28 026:733 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1133ms total)
TCA28 026:734 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1134ms total)
TCA28 026:735 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1134ms total)
TCA28 026:735 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1135ms total)
TCA28 026:736 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1136ms total)
TCA28 026:737 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1136ms total)
TCA28 026:737 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 44 00 00  returns 0x04 (0001ms, 1137ms total)
TCA28 026:745 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1138ms total)
TCA28 026:746 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 11 03  returns 0x02 (0000ms, 1138ms total)
T7D8C 026:768 JLINK_IsHalted()  returns FALSE (0001ms, 1139ms total)
T7D8C 026:869 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7D8C 026:970 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7D8C 027:072 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7D8C 027:173 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
TCA28 027:274 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1138ms total)
TCA28 027:274 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1139ms total)
TCA28 027:275 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1140ms total)
TCA28 027:276 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1140ms total)
TCA28 027:276 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1141ms total)
TCA28 027:284 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1142ms total)
TCA28 027:300 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 16  returns 0x01 (0001ms, 1143ms total)
TCA28 027:308 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1143ms total)
TCA28 027:309 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1143ms total)
TCA28 027:309 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1144ms total)
TCA28 027:317 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1145ms total)
TCA28 027:326 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1146ms total)
TCA28 027:327 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1147ms total)
TCA28 027:328 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1147ms total)
TCA28 027:328 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1148ms total)
TCA28 027:329 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1149ms total)
TCA28 027:330 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0000ms, 1149ms total)
TCA28 027:330 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1150ms total)
TCA28 027:331 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1C 44 00 00  returns 0x04 (0001ms, 1151ms total)
TCA28 027:339 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1152ms total)
TCA28 027:340 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 20 03  returns 0x02 (0000ms, 1152ms total)
T7D8C 027:362 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7D8C 027:463 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7D8C 027:564 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7D8C 027:666 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7D8C 027:767 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
TCA28 027:869 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1152ms total)
TCA28 027:869 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1153ms total)
TCA28 027:870 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1154ms total)
TCA28 027:871 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1154ms total)
TCA28 027:871 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1155ms total)
TCA28 027:879 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1156ms total)
TCA28 027:902 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 17  returns 0x01 (0001ms, 1157ms total)
TCA28 027:918 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1157ms total)
TCA28 027:918 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1158ms total)
TCA28 027:919 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1159ms total)
TCA28 027:934 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1160ms total)
TCA28 027:942 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1161ms total)
TCA28 027:943 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1161ms total)
TCA28 027:943 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1162ms total)
TCA28 027:944 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1163ms total)
TCA28 027:945 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1163ms total)
TCA28 027:945 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1164ms total)
TCA28 027:946 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1165ms total)
TCA28 027:947 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1D 44 00 00  returns 0x04 (0001ms, 1166ms total)
TCA28 027:962 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1167ms total)
TCA28 027:963 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 36 03  returns 0x02 (0000ms, 1167ms total)
T7D8C 027:987 JLINK_IsHalted()  returns FALSE (0001ms, 1168ms total)
T7D8C 028:088 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7D8C 028:190 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7D8C 028:291 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
TCA28 028:392 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1167ms total)
TCA28 028:392 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1168ms total)
TCA28 028:393 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1169ms total)
TCA28 028:394 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1169ms total)
TCA28 028:395 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 41  returns 0x04 (0000ms, 1169ms total)
TCA28 028:403 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1170ms total)
TCA28 028:420 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 17  returns 0x01 (0001ms, 1171ms total)
TCA28 028:428 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1171ms total)
TCA28 028:428 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1172ms total)
TCA28 028:429 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1173ms total)
TCA28 028:437 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1174ms total)
TCA28 028:446 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1175ms total)
TCA28 028:447 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1175ms total)
TCA28 028:447 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1176ms total)
TCA28 028:448 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1177ms total)
TCA28 028:449 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1177ms total)
TCA28 028:449 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1178ms total)
TCA28 028:450 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1179ms total)
TCA28 028:451 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1D 44 00 00  returns 0x04 (0000ms, 1179ms total)
TCA28 028:459 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1179ms total)
TCA28 028:459 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 40 03  returns 0x02 (0001ms, 1180ms total)
T7D8C 028:482 JLINK_IsHalted()  returns FALSE (0001ms, 1181ms total)
T7D8C 028:584 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7D8C 028:685 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7D8C 028:786 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7D8C 028:887 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
TCA28 028:989 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1180ms total)
TCA28 028:989 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1181ms total)
TCA28 028:990 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1182ms total)
TCA28 028:991 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1182ms total)
TCA28 029:000 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0000ms, 1182ms total)
TCA28 029:015 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0000ms, 1182ms total)
TCA28 029:031 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 18  returns 0x01 (0000ms, 1182ms total)
TCA28 029:039 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1182ms total)
TCA28 029:039 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1183ms total)
TCA28 029:040 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1184ms total)
TCA28 029:049 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1185ms total)
TCA28 029:057 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1186ms total)
TCA28 029:058 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1186ms total)
TCA28 029:058 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1187ms total)
TCA28 029:059 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1188ms total)
TCA28 029:060 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1188ms total)
TCA28 029:060 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1189ms total)
TCA28 029:061 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1190ms total)
TCA28 029:062 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1F 44 00 00  returns 0x04 (0001ms, 1191ms total)
TCA28 029:070 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1192ms total)
TCA28 029:071 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 54 03  returns 0x02 (0001ms, 1193ms total)
T7D8C 029:093 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7D8C 029:194 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7D8C 029:296 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7D8C 029:397 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7D8C 029:498 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
TCA28 029:599 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1193ms total)
TCA28 029:599 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1194ms total)
TCA28 029:600 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1195ms total)
TCA28 029:601 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1195ms total)
TCA28 029:610 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1196ms total)
TCA28 029:618 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1197ms total)
TCA28 029:634 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 18  returns 0x01 (0001ms, 1198ms total)
TCA28 029:642 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1199ms total)
TCA28 029:643 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1199ms total)
TCA28 029:643 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1200ms total)
TCA28 029:652 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1200ms total)
TCA28 029:660 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1200ms total)
TCA28 029:661 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1201ms total)
TCA28 029:661 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1202ms total)
TCA28 029:662 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1202ms total)
TCA28 029:662 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1203ms total)
TCA28 029:663 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1204ms total)
TCA28 029:664 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1205ms total)
TCA28 029:665 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1F 44 00 00  returns 0x04 (0000ms, 1205ms total)
TCA28 029:674 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1205ms total)
TCA28 029:674 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 66 03  returns 0x02 (0001ms, 1206ms total)
T7D8C 029:700 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7D8C 029:801 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7D8C 029:902 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7D8C 030:004 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7D8C 030:105 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
TCA28 030:206 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1207ms total)
TCA28 030:207 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1207ms total)
TCA28 030:207 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1208ms total)
TCA28 030:208 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1209ms total)
TCA28 030:216 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1210ms total)
TCA28 030:224 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1211ms total)
TCA28 030:240 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 19  returns 0x01 (0000ms, 1211ms total)
TCA28 030:248 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1212ms total)
TCA28 030:249 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1213ms total)
TCA28 030:250 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0000ms, 1213ms total)
TCA28 030:259 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1213ms total)
TCA28 030:267 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1214ms total)
TCA28 030:268 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1214ms total)
TCA28 030:268 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1215ms total)
TCA28 030:269 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1216ms total)
TCA28 030:270 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1216ms total)
TCA28 030:270 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1217ms total)
TCA28 030:271 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1218ms total)
TCA28 030:272 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 20 44 00 00  returns 0x04 (0001ms, 1219ms total)
TCA28 030:280 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1220ms total)
TCA28 030:281 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 78 03  returns 0x02 (0000ms, 1220ms total)
T7D8C 030:303 JLINK_IsHalted()  returns FALSE (0001ms, 1221ms total)
T7D8C 030:405 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7D8C 030:506 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7D8C 030:607 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7D8C 030:709 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
TCA28 030:810 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1221ms total)
TCA28 030:811 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1221ms total)
TCA28 030:811 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1222ms total)
TCA28 030:812 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1223ms total)
TCA28 030:822 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1224ms total)
TCA28 030:831 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1225ms total)
TCA28 030:847 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 19  returns 0x01 (0000ms, 1225ms total)
TCA28 030:855 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1226ms total)
TCA28 030:856 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1226ms total)
TCA28 030:856 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1227ms total)
TCA28 030:865 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1227ms total)
TCA28 030:873 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1228ms total)
TCA28 030:874 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1228ms total)
TCA28 030:874 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1229ms total)
TCA28 030:875 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1230ms total)
TCA28 030:876 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1230ms total)
TCA28 030:876 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1231ms total)
TCA28 030:877 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1232ms total)
TCA28 030:878 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 20 44 00 00  returns 0x04 (0000ms, 1232ms total)
TCA28 030:886 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1233ms total)
TCA28 030:887 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 8F 03  returns 0x02 (0001ms, 1234ms total)
T7D8C 030:911 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7D8C 031:012 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7D8C 031:114 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7D8C 031:215 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
TCA28 031:316 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1235ms total)
TCA28 031:317 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1235ms total)
TCA28 031:317 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1236ms total)
TCA28 031:318 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1237ms total)
TCA28 031:319 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D8 41  returns 0x04 (0000ms, 1237ms total)
TCA28 031:327 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D8 41  returns 0x04 (0001ms, 1238ms total)
TCA28 031:342 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1A  returns 0x01 (0001ms, 1239ms total)
TCA28 031:351 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1240ms total)
TCA28 031:352 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1241ms total)
TCA28 031:353 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D8 41  returns 0x04 (0000ms, 1241ms total)
TCA28 031:361 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1241ms total)
TCA28 031:368 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1242ms total)
TCA28 031:369 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1243ms total)
TCA28 031:370 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1243ms total)
TCA28 031:370 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1244ms total)
TCA28 031:371 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1245ms total)
TCA28 031:372 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0000ms, 1245ms total)
TCA28 031:373 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1245ms total)
TCA28 031:373 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 21 44 00 00  returns 0x04 (0001ms, 1246ms total)
TCA28 031:381 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1247ms total)
TCA28 031:382 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: AA 03  returns 0x02 (0000ms, 1247ms total)
T7D8C 031:404 JLINK_IsHalted()  returns FALSE (0001ms, 1248ms total)
T7D8C 031:505 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7D8C 031:606 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7D8C 031:707 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7D8C 031:809 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
TCA28 031:910 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1247ms total)
TCA28 031:910 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1248ms total)
TCA28 031:911 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1249ms total)
TCA28 031:912 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1249ms total)
TCA28 031:912 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1250ms total)
TCA28 031:928 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1251ms total)
TCA28 031:952 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1B  returns 0x01 (0001ms, 1252ms total)
TCA28 031:970 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1253ms total)
TCA28 031:971 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1253ms total)
TCA28 031:971 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1254ms total)
TCA28 031:987 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1255ms total)
TCA28 031:995 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1256ms total)
TCA28 031:996 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1256ms total)
TCA28 031:997 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1257ms total)
TCA28 031:997 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1258ms total)
TCA28 031:998 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1258ms total)
TCA28 031:998 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1259ms total)
TCA28 031:999 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1260ms total)
TCA28 032:000 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 20 44 00 00  returns 0x04 (0001ms, 1261ms total)
TCA28 032:017 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1261ms total)
TCA28 032:017 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: CC 03  returns 0x02 (0001ms, 1262ms total)
T7D8C 032:040 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7D8C 032:141 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7D8C 032:243 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7D8C 032:344 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
TCA28 032:445 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1262ms total)
TCA28 032:445 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1263ms total)
TCA28 032:446 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1264ms total)
TCA28 032:447 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1264ms total)
TCA28 032:447 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1265ms total)
TCA28 032:456 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0000ms, 1265ms total)
TCA28 032:470 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1B  returns 0x01 (0001ms, 1266ms total)
TCA28 032:478 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1266ms total)
TCA28 032:479 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1266ms total)
TCA28 032:479 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1267ms total)
TCA28 032:487 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1268ms total)
TCA28 032:495 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1269ms total)
TCA28 032:496 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1269ms total)
TCA28 032:496 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1270ms total)
TCA28 032:497 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1270ms total)
TCA28 032:497 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1271ms total)
TCA28 032:498 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1272ms total)
TCA28 032:499 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1273ms total)
TCA28 032:500 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 20 44 00 00  returns 0x04 (0000ms, 1273ms total)
TCA28 032:508 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1273ms total)
TCA28 032:508 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D8 03  returns 0x02 (0001ms, 1274ms total)
T7D8C 032:530 JLINK_IsHalted()  returns FALSE (0001ms, 1275ms total)
T7D8C 032:633 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7D8C 032:734 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7D8C 032:835 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7D8C 032:936 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
TCA28 033:038 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1274ms total)
TCA28 033:038 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1275ms total)
TCA28 033:039 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1276ms total)
TCA28 033:040 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1276ms total)
TCA28 033:048 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0001ms, 1277ms total)
TCA28 033:055 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0001ms, 1278ms total)
TCA28 033:070 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1C  returns 0x01 (0002ms, 1280ms total)
TCA28 033:079 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1280ms total)
TCA28 033:079 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1281ms total)
TCA28 033:080 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0000ms, 1281ms total)
TCA28 033:088 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1282ms total)
TCA28 033:096 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1283ms total)
TCA28 033:097 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1283ms total)
TCA28 033:097 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1284ms total)
TCA28 033:098 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1284ms total)
TCA28 033:098 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1285ms total)
TCA28 033:099 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1286ms total)
TCA28 033:100 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1287ms total)
TCA28 033:101 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 21 44 00 00  returns 0x04 (0000ms, 1287ms total)
TCA28 033:108 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1288ms total)
TCA28 033:109 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: EA 03  returns 0x02 (0001ms, 1289ms total)
T7D8C 033:132 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7D8C 033:233 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7D8C 033:334 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7D8C 033:436 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7D8C 033:537 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
TCA28 033:638 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1289ms total)
TCA28 033:638 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1290ms total)
TCA28 033:639 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1291ms total)
TCA28 033:640 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1291ms total)
TCA28 033:648 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0001ms, 1292ms total)
TCA28 033:656 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0000ms, 1292ms total)
TCA28 033:671 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1C  returns 0x01 (0001ms, 1293ms total)
TCA28 033:679 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1293ms total)
TCA28 033:679 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1294ms total)
TCA28 033:680 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 E8 41  returns 0x04 (0001ms, 1295ms total)
TCA28 033:688 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1295ms total)
TCA28 033:696 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1296ms total)
TCA28 033:697 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1296ms total)
TCA28 033:697 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1297ms total)
TCA28 033:698 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1298ms total)
TCA28 033:699 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1298ms total)
TCA28 033:699 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1299ms total)
TCA28 033:700 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1300ms total)
TCA28 033:701 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 21 44 00 00  returns 0x04 (0001ms, 1301ms total)
TCA28 033:709 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1302ms total)
TCA28 033:710 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: FC 03  returns 0x02 (0001ms, 1303ms total)
T7D8C 033:733 JLINK_IsHalted()  returns FALSE (0001ms, 1304ms total)
T7D8C 033:836 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7D8C 033:937 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7D8C 034:038 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7D8C 034:139 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
TCA28 034:241 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1304ms total)
TCA28 034:242 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1304ms total)
TCA28 034:242 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1305ms total)
TCA28 034:243 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 1306ms total)
TCA28 034:252 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F0 41  returns 0x04 (0001ms, 1307ms total)
TCA28 034:260 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F0 41  returns 0x04 (0001ms, 1308ms total)
TCA28 034:276 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1D  returns 0x01 (0000ms, 1308ms total)
TCA28 034:284 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1309ms total)
TCA28 034:285 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1309ms total)
TCA28 034:285 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F0 41  returns 0x04 (0001ms, 1310ms total)
TCA28 034:293 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1310ms total)
TCA28 034:300 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1311ms total)
TCA28 034:301 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1312ms total)
TCA28 034:302 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1312ms total)
TCA28 034:302 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1313ms total)
TCA28 034:303 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1313ms total)
TCA28 034:303 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1314ms total)
TCA28 034:304 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1315ms total)
TCA28 034:305 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 23 44 00 00  returns 0x04 (0001ms, 1316ms total)
TCA28 034:313 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1317ms total)
TCA28 034:314 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 0C 04  returns 0x02 (0000ms, 1317ms total)
T7D8C 034:337 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T7D8C 034:439 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7D8C 034:540 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7D8C 034:641 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7D8C 034:743 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
TCA28 034:844 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1318ms total)
TCA28 034:845 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1318ms total)
TCA28 034:845 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1319ms total)
TCA28 034:846 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 1320ms total)
TCA28 034:855 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F0 41  returns 0x04 (0000ms, 1320ms total)
TCA28 034:863 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F0 41  returns 0x04 (0000ms, 1320ms total)
TCA28 034:878 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1D  returns 0x01 (0000ms, 1320ms total)
TCA28 034:886 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1321ms total)
TCA28 034:887 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1321ms total)
TCA28 034:887 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1322ms total)
TCA28 034:902 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1323ms total)
TCA28 034:910 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1324ms total)
TCA28 034:911 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1325ms total)
TCA28 034:912 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1325ms total)
TCA28 034:912 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1326ms total)
TCA28 034:913 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1326ms total)
TCA28 034:913 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1327ms total)
TCA28 034:914 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1328ms total)
TCA28 034:915 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 25 44 00 00  returns 0x04 (0001ms, 1329ms total)
TCA28 034:930 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1330ms total)
TCA28 034:931 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 21 04  returns 0x02 (0001ms, 1331ms total)
T7D8C 034:954 JLINK_IsHalted()  returns FALSE (0001ms, 1332ms total)
T7D8C 035:056 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7D8C 035:157 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7D8C 035:258 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
TCA28 035:360 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1331ms total)
TCA28 035:360 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1332ms total)
TCA28 035:361 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1333ms total)
TCA28 035:362 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1333ms total)
TCA28 035:362 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1334ms total)
TCA28 035:371 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1335ms total)
TCA28 035:386 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1E  returns 0x01 (0001ms, 1336ms total)
TCA28 035:394 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1336ms total)
TCA28 035:394 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1337ms total)
TCA28 035:395 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1338ms total)
TCA28 035:403 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1339ms total)
TCA28 035:411 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1340ms total)
TCA28 035:412 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1340ms total)
TCA28 035:412 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1341ms total)
TCA28 035:413 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1341ms total)
TCA28 035:413 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1342ms total)
TCA28 035:414 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1343ms total)
TCA28 035:415 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1344ms total)
TCA28 035:416 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 25 44 00 00  returns 0x04 (0000ms, 1344ms total)
TCA28 035:424 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1345ms total)
TCA28 035:425 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 31 04  returns 0x02 (0000ms, 1345ms total)
T7D8C 035:447 JLINK_IsHalted()  returns FALSE (0001ms, 1346ms total)
T7D8C 035:548 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7D8C 035:649 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7D8C 035:751 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7D8C 035:852 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
TCA28 035:953 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1345ms total)
TCA28 035:953 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1346ms total)
TCA28 035:954 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1347ms total)
TCA28 035:955 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1347ms total)
TCA28 035:964 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0001ms, 1348ms total)
TCA28 035:982 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0000ms, 1348ms total)
TCA28 036:007 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1F  returns 0x01 (0001ms, 1349ms total)
TCA28 036:024 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1350ms total)
TCA28 036:025 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1351ms total)
TCA28 036:026 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0001ms, 1352ms total)
TCA28 036:035 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1353ms total)
TCA28 036:043 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0002ms, 1355ms total)
TCA28 036:052 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1356ms total)
TCA28 036:053 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1356ms total)
TCA28 036:053 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1357ms total)
TCA28 036:054 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1358ms total)
TCA28 036:055 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F5 26 51 00 00 74 FD 00 00 00 ...  returns 0x20 (0001ms, 1359ms total)
TCA28 036:056 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1359ms total)
TCA28 036:056 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F6 43 00 00  returns 0x04 (0001ms, 1360ms total)
TCA28 036:064 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1361ms total)
TCA28 036:065 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 54 04  returns 0x02 (0000ms, 1361ms total)
T7D8C 036:086 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T7D8C 036:188 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7D8C 036:289 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7D8C 036:390 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
TCA28 036:492 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1361ms total)
TCA28 036:492 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1362ms total)
TCA28 036:493 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1363ms total)
TCA28 036:494 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1363ms total)
TCA28 036:501 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0001ms, 1364ms total)
TCA28 036:509 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0001ms, 1365ms total)
TCA28 036:524 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1F  returns 0x01 (0001ms, 1366ms total)
TCA28 036:532 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1367ms total)
TCA28 036:533 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1368ms total)
TCA28 036:534 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 00 42  returns 0x04 (0000ms, 1368ms total)
TCA28 036:541 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1369ms total)
TCA28 036:549 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1370ms total)
TCA28 036:557 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1371ms total)
TCA28 036:558 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1371ms total)
TCA28 036:558 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1372ms total)
TCA28 036:559 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1372ms total)
TCA28 036:559 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F5 26 51 00 00 74 FD 00 00 00 ...  returns 0x20 (0001ms, 1373ms total)
TCA28 036:560 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1374ms total)
TCA28 036:561 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F6 43 00 00  returns 0x04 (0001ms, 1375ms total)
TCA28 036:569 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1376ms total)
TCA28 036:570 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6D 04  returns 0x02 (0001ms, 1377ms total)
T7D8C 036:592 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7D8C 036:693 JLINK_IsHalted()  returns FALSE (0001ms, 1378ms total)
T7D8C 036:796 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7D8C 036:897 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7D8C 036:998 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
TCA28 037:099 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1377ms total)
TCA28 037:099 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1378ms total)
TCA28 037:100 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1379ms total)
TCA28 037:101 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1379ms total)
TCA28 037:101 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0001ms, 1380ms total)
TCA28 037:110 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0000ms, 1380ms total)
TCA28 037:124 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 20  returns 0x01 (0001ms, 1381ms total)
TCA28 037:132 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1382ms total)
TCA28 037:133 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1382ms total)
TCA28 037:133 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0001ms, 1383ms total)
TCA28 037:142 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1384ms total)
TCA28 037:151 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1385ms total)
TCA28 037:152 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1386ms total)
TCA28 037:153 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1386ms total)
TCA28 037:153 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1387ms total)
TCA28 037:154 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1387ms total)
TCA28 037:154 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 00 27 51 00 00 68 FE 00 00 00 ...  returns 0x20 (0001ms, 1388ms total)
TCA28 037:155 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1389ms total)
TCA28 037:156 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F7 43 00 00  returns 0x04 (0001ms, 1390ms total)
TCA28 037:164 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1391ms total)
TCA28 037:165 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 7F 04  returns 0x02 (0001ms, 1392ms total)
T7D8C 037:189 JLINK_IsHalted()  returns FALSE (0001ms, 1393ms total)
T7D8C 037:292 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7D8C 037:393 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7D8C 037:494 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7D8C 037:595 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
TCA28 037:697 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1392ms total)
TCA28 037:697 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1393ms total)
TCA28 037:698 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1394ms total)
TCA28 037:699 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1394ms total)
TCA28 037:699 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0001ms, 1395ms total)
TCA28 037:708 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0001ms, 1396ms total)
TCA28 037:723 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 20  returns 0x01 (0001ms, 1397ms total)
TCA28 037:731 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1398ms total)
TCA28 037:732 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1399ms total)
TCA28 037:733 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 04 42  returns 0x04 (0000ms, 1399ms total)
TCA28 037:741 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1399ms total)
TCA28 037:749 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1400ms total)
TCA28 037:750 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1401ms total)
TCA28 037:751 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1401ms total)
TCA28 037:751 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1402ms total)
TCA28 037:752 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1402ms total)
TCA28 037:752 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 00 27 51 00 00 68 FE 00 00 00 ...  returns 0x20 (0001ms, 1403ms total)
TCA28 037:753 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1404ms total)
TCA28 037:754 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F7 43 00 00  returns 0x04 (0001ms, 1405ms total)
TCA28 037:762 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1406ms total)
TCA28 037:763 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 90 04  returns 0x02 (0001ms, 1407ms total)
T7D8C 037:785 JLINK_IsHalted()  returns FALSE (0001ms, 1408ms total)
T7D8C 037:886 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7D8C 037:987 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7D8C 038:088 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7D8C 038:190 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
TCA28 038:291 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1407ms total)
TCA28 038:292 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1408ms total)
TCA28 038:292 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1409ms total)
TCA28 038:293 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1409ms total)
TCA28 038:301 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 08 42  returns 0x04 (0001ms, 1410ms total)
TCA28 038:309 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 08 42  returns 0x04 (0000ms, 1410ms total)
TCA28 038:324 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 21  returns 0x01 (0001ms, 1411ms total)
TCA28 038:332 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1412ms total)
TCA28 038:333 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1412ms total)
TCA28 038:333 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 08 42  returns 0x04 (0001ms, 1413ms total)
TCA28 038:341 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1414ms total)
TCA28 038:349 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1415ms total)
TCA28 038:350 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1416ms total)
TCA28 038:351 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1416ms total)
TCA28 038:351 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1417ms total)
TCA28 038:352 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1417ms total)
TCA28 038:352 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1418ms total)
TCA28 038:353 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1419ms total)
TCA28 038:354 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F8 43 00 00  returns 0x04 (0001ms, 1420ms total)
TCA28 038:362 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1421ms total)
TCA28 038:363 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 9B 04  returns 0x02 (0001ms, 1422ms total)
T7D8C 038:385 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7D8C 038:486 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7D8C 038:588 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7D8C 038:689 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7D8C 038:790 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
TCA28 038:892 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 1422ms total)
TCA28 038:900 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1423ms total)
TCA28 038:901 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1424ms total)
TCA28 038:902 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1424ms total)
TCA28 038:917 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0000ms, 1424ms total)
TCA28 038:932 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0001ms, 1425ms total)
TCA28 038:954 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0001ms, 1426ms total)
TCA28 038:969 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1426ms total)
TCA28 038:969 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1427ms total)
TCA28 038:970 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0001ms, 1428ms total)
TCA28 038:987 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1428ms total)
TCA28 038:996 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1428ms total)
TCA28 039:004 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1428ms total)
TCA28 039:004 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1429ms total)
TCA28 039:005 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1430ms total)
TCA28 039:006 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1430ms total)
TCA28 039:006 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1431ms total)
TCA28 039:007 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1432ms total)
TCA28 039:008 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 27 44 00 00  returns 0x04 (0001ms, 1433ms total)
TCA28 039:024 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1433ms total)
TCA28 039:024 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: B3 04  returns 0x02 (0001ms, 1434ms total)
T7D8C 039:048 JLINK_IsHalted()  returns FALSE (0001ms, 1435ms total)
T7D8C 039:149 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7D8C 039:251 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7D8C 039:352 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
TCA28 039:453 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1434ms total)
TCA28 039:469 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1435ms total)
TCA28 039:470 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 1435ms total)
TCA28 039:470 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 1436ms total)
TCA28 039:478 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0001ms, 1437ms total)
TCA28 039:486 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0000ms, 1437ms total)
TCA28 039:500 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0001ms, 1438ms total)
TCA28 039:508 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1439ms total)
TCA28 039:509 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1439ms total)
TCA28 039:509 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 0C 42  returns 0x04 (0001ms, 1440ms total)
TCA28 039:517 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1441ms total)
TCA28 039:525 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1442ms total)
TCA28 039:533 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1442ms total)
TCA28 039:533 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1443ms total)
TCA28 039:534 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1444ms total)
TCA28 039:535 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1444ms total)
TCA28 039:535 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1445ms total)
TCA28 039:536 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1446ms total)
TCA28 039:537 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 27 44 00 00  returns 0x04 (0000ms, 1446ms total)
TCA28 039:545 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1447ms total)
TCA28 039:546 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C3 04  returns 0x02 (0000ms, 1447ms total)
T7D8C 039:570 JLINK_IsHalted()  returns FALSE (0001ms, 1448ms total)
T7D8C 039:672 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7D8C 039:773 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7D8C 039:874 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
TCA28 039:976 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1447ms total)
TCA28 039:985 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1447ms total)
TCA28 039:985 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1448ms total)
TCA28 039:986 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 1449ms total)
TCA28 039:987 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0000ms, 1449ms total)
TCA28 039:995 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0000ms, 1449ms total)
TCA28 040:010 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0000ms, 1449ms total)
TCA28 040:010 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1450ms total)
TCA28 040:011 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1451ms total)
TCA28 040:012 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0000ms, 1451ms total)
TCA28 040:020 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1451ms total)
TCA28 040:028 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1451ms total)
TCA28 040:028 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1452ms total)
TCA28 040:029 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1453ms total)
TCA28 040:030 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1453ms total)
TCA28 040:030 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1454ms total)
TCA28 040:031 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1455ms total)
TCA28 040:032 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1456ms total)
TCA28 040:033 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 27 44 00 00  returns 0x04 (0000ms, 1456ms total)
TCA28 040:033 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1457ms total)
TCA28 040:034 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D0 04  returns 0x02 (0000ms, 1457ms total)
T7D8C 040:056 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7D8C 040:157 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7D8C 040:258 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7D8C 040:360 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7D8C 040:461 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
TCA28 040:562 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1457ms total)
TCA28 040:562 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1458ms total)
TCA28 040:563 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1459ms total)
TCA28 040:564 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1459ms total)
TCA28 040:564 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0001ms, 1460ms total)
TCA28 040:572 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0001ms, 1461ms total)
TCA28 040:587 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0001ms, 1462ms total)
TCA28 040:588 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1463ms total)
TCA28 040:589 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1463ms total)
TCA28 040:589 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 10 42  returns 0x04 (0001ms, 1464ms total)
TCA28 040:597 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1465ms total)
TCA28 040:605 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1466ms total)
TCA28 040:606 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1466ms total)
TCA28 040:606 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1467ms total)
TCA28 040:607 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1468ms total)
TCA28 040:608 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1468ms total)
TCA28 040:608 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1469ms total)
TCA28 040:609 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1470ms total)
TCA28 040:610 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 27 44 00 00  returns 0x04 (0001ms, 1471ms total)
TCA28 040:611 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1471ms total)
TCA28 040:611 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: EA 04  returns 0x02 (0001ms, 1472ms total)
T7D8C 040:634 JLINK_IsHalted()  returns FALSE (0001ms, 1473ms total)
T7D8C 040:736 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7D8C 040:837 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7D8C 040:938 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7D8C 041:040 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
TCA28 041:141 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1473ms total)
TCA28 041:142 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1473ms total)
TCA28 041:142 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1474ms total)
TCA28 041:143 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1475ms total)
TCA28 041:152 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0000ms, 1475ms total)
TCA28 041:160 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0000ms, 1475ms total)
TCA28 041:174 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0001ms, 1476ms total)
TCA28 041:182 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1477ms total)
TCA28 041:183 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1477ms total)
TCA28 041:183 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0001ms, 1478ms total)
TCA28 041:192 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1478ms total)
TCA28 041:200 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1479ms total)
TCA28 041:208 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1480ms total)
TCA28 041:209 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1480ms total)
TCA28 041:209 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1481ms total)
TCA28 041:210 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1482ms total)
TCA28 041:211 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1483ms total)
TCA28 041:212 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1483ms total)
TCA28 041:212 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F9 43 00 00  returns 0x04 (0001ms, 1484ms total)
TCA28 041:220 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1485ms total)
TCA28 041:221 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 0A 05  returns 0x02 (0000ms, 1485ms total)
T7D8C 041:243 JLINK_IsHalted()  returns FALSE (0001ms, 1486ms total)
T7D8C 041:344 JLINK_IsHalted()  returns FALSE (0000ms, 1485ms total)
T7D8C 041:446 JLINK_IsHalted()  returns FALSE (0000ms, 1485ms total)
T7D8C 041:547 JLINK_IsHalted()  returns FALSE (0000ms, 1485ms total)
TCA28 041:648 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1485ms total)
TCA28 041:648 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1486ms total)
TCA28 041:649 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1487ms total)
TCA28 041:650 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1487ms total)
TCA28 041:658 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0000ms, 1487ms total)
TCA28 041:666 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0000ms, 1487ms total)
TCA28 041:681 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0001ms, 1488ms total)
TCA28 041:689 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1489ms total)
TCA28 041:690 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1490ms total)
TCA28 041:691 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 14 42  returns 0x04 (0000ms, 1490ms total)
TCA28 041:699 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1491ms total)
TCA28 041:707 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1492ms total)
TCA28 041:715 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1493ms total)
TCA28 041:716 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1493ms total)
TCA28 041:716 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1494ms total)
TCA28 041:717 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1494ms total)
TCA28 041:717 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1495ms total)
TCA28 041:718 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1496ms total)
TCA28 041:719 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F9 43 00 00  returns 0x04 (0001ms, 1497ms total)
TCA28 041:727 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0002ms, 1499ms total)
TCA28 041:729 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 20 05  returns 0x02 (0000ms, 1499ms total)
T7D8C 041:751 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T7D8C 041:852 JLINK_IsHalted()  returns FALSE (0000ms, 1499ms total)
T7D8C 041:953 JLINK_IsHalted()  returns FALSE (0000ms, 1499ms total)
T7D8C 042:055 JLINK_IsHalted()  returns FALSE (0000ms, 1499ms total)
T7D8C 042:156 JLINK_IsHalted()  returns FALSE (0000ms, 1499ms total)
TCA28 042:257 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1499ms total)
TCA28 042:257 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1500ms total)
TCA28 042:258 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1501ms total)
TCA28 042:259 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: CC B5 83 40  returns 0x04 (0000ms, 1501ms total)
TCA28 042:267 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 18 42  returns 0x04 (0000ms, 1501ms total)
TCA28 042:274 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 18 42  returns 0x04 (0001ms, 1502ms total)
TCA28 042:289 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 24  returns 0x01 (0001ms, 1503ms total)
TCA28 042:297 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1503ms total)
TCA28 042:297 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1504ms total)
TCA28 042:298 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 18 42  returns 0x04 (0001ms, 1505ms total)
TCA28 042:306 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1506ms total)
TCA28 042:314 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1507ms total)
TCA28 042:315 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1508ms total)
TCA28 042:316 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1508ms total)
TCA28 042:316 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1509ms total)
TCA28 042:317 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1509ms total)
TCA28 042:317 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 1510ms total)
TCA28 042:318 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1511ms total)
TCA28 042:319 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0001ms, 1512ms total)
TCA28 042:327 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1513ms total)
TCA28 042:328 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 2E 05  returns 0x02 (0001ms, 1514ms total)
T7D8C 042:351 JLINK_IsHalted()  returns FALSE (0000ms, 1514ms total)
T7D8C 042:453 JLINK_IsHalted()  returns FALSE (0000ms, 1514ms total)
T7D8C 042:554 JLINK_IsHalted()  returns FALSE (0000ms, 1514ms total)
T7D8C 042:655 JLINK_IsHalted()  returns FALSE (0000ms, 1514ms total)
T7D8C 042:756 JLINK_IsHalted()  returns FALSE (0000ms, 1514ms total)
TCA28 042:858 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1514ms total)
TCA28 042:858 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1515ms total)
TCA28 042:859 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1516ms total)
TCA28 042:860 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: CC B5 83 40  returns 0x04 (0000ms, 1516ms total)
TCA28 042:869 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 18 42  returns 0x04 (0001ms, 1517ms total)
TCA28 042:877 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 1C 42  returns 0x04 (0001ms, 1518ms total)
TCA28 042:899 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 25  returns 0x01 (0001ms, 1519ms total)
TCA28 042:914 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1520ms total)
TCA28 042:915 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1521ms total)
TCA28 042:916 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 1C 42  returns 0x04 (0000ms, 1521ms total)
TCA28 042:930 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1522ms total)
TCA28 042:939 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1523ms total)
TCA28 042:940 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1523ms total)
TCA28 042:940 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1524ms total)
TCA28 042:941 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1525ms total)
TCA28 042:942 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1525ms total)
TCA28 042:942 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1526ms total)
TCA28 042:943 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1527ms total)
TCA28 042:944 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0001ms, 1528ms total)
TCA28 042:954 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1529ms total)
TCA28 042:955 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 45 05  returns 0x02 (0001ms, 1530ms total)
T7D8C 042:978 JLINK_IsHalted()  returns FALSE (0001ms, 1531ms total)
T7D8C 043:081 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T7D8C 043:182 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T7D8C 043:283 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
TCA28 043:384 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1530ms total)
TCA28 043:384 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1531ms total)
TCA28 043:385 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1532ms total)
TCA28 043:386 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1532ms total)
TCA28 043:394 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 1C 42  returns 0x04 (0001ms, 1533ms total)
TCA28 043:403 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 1C 42  returns 0x04 (0000ms, 1533ms total)
TCA28 043:418 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 25  returns 0x01 (0001ms, 1534ms total)
TCA28 043:426 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1535ms total)
TCA28 043:427 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1536ms total)
TCA28 043:428 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 1C 42  returns 0x04 (0001ms, 1537ms total)
TCA28 043:436 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1538ms total)
TCA28 043:444 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1539ms total)
TCA28 043:445 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1540ms total)
TCA28 043:446 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1541ms total)
TCA28 043:447 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1541ms total)
TCA28 043:447 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1542ms total)
TCA28 043:448 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1543ms total)
TCA28 043:449 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1544ms total)
TCA28 043:450 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0000ms, 1544ms total)
TCA28 043:450 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1545ms total)
TCA28 043:451 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4F 05  returns 0x02 (0000ms, 1545ms total)
T7D8C 043:473 JLINK_IsHalted()  returns FALSE (0001ms, 1547ms total)
T7D8C 043:575 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
T7D8C 043:676 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
T7D8C 043:778 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
T7D8C 043:879 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
TCA28 043:980 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1546ms total)
TCA28 043:980 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1547ms total)
TCA28 043:981 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1548ms total)
TCA28 043:982 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1548ms total)
TCA28 043:991 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0001ms, 1549ms total)
TCA28 044:007 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0000ms, 1549ms total)
TCA28 044:023 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 26  returns 0x01 (0000ms, 1549ms total)
TCA28 044:030 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1550ms total)
TCA28 044:031 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1551ms total)
TCA28 044:032 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0000ms, 1551ms total)
TCA28 044:040 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1552ms total)
TCA28 044:048 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 1552ms total)
TCA28 044:048 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1553ms total)
TCA28 044:049 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1554ms total)
TCA28 044:050 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1554ms total)
TCA28 044:050 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1555ms total)
TCA28 044:051 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1556ms total)
TCA28 044:052 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1557ms total)
TCA28 044:053 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0000ms, 1557ms total)
TCA28 044:053 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1558ms total)
TCA28 044:054 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 62 05  returns 0x02 (0001ms, 1559ms total)
T7D8C 044:077 JLINK_IsHalted()  returns FALSE (0001ms, 1560ms total)
T7D8C 044:179 JLINK_IsHalted()  returns FALSE (0000ms, 1559ms total)
T7D8C 044:280 JLINK_IsHalted()  returns FALSE (0000ms, 1559ms total)
T7D8C 044:382 JLINK_IsHalted()  returns FALSE (0000ms, 1559ms total)
T7D8C 044:483 JLINK_IsHalted()  returns FALSE (0000ms, 1559ms total)
TCA28 044:584 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1559ms total)
TCA28 044:584 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1560ms total)
TCA28 044:585 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1561ms total)
TCA28 044:586 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1561ms total)
TCA28 044:586 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0001ms, 1562ms total)
TCA28 044:595 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0000ms, 1562ms total)
TCA28 044:609 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 26  returns 0x01 (0001ms, 1563ms total)
TCA28 044:617 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1563ms total)
TCA28 044:617 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1564ms total)
TCA28 044:618 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 20 42  returns 0x04 (0001ms, 1565ms total)
TCA28 044:626 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1566ms total)
TCA28 044:634 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 1566ms total)
TCA28 044:634 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1567ms total)
TCA28 044:635 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1568ms total)
TCA28 044:636 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1568ms total)
TCA28 044:636 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1569ms total)
TCA28 044:637 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1570ms total)
TCA28 044:638 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1571ms total)
TCA28 044:639 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0000ms, 1571ms total)
TCA28 044:639 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1572ms total)
TCA28 044:640 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 74 05  returns 0x02 (0001ms, 1573ms total)
T7D8C 044:662 JLINK_IsHalted()  returns FALSE (0001ms, 1574ms total)
T7D8C 044:765 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T7D8C 044:866 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T7D8C 044:967 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T7D8C 045:069 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
TCA28 045:170 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1573ms total)
TCA28 045:170 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1574ms total)
TCA28 045:171 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1575ms total)
TCA28 045:172 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1575ms total)
TCA28 045:172 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0001ms, 1576ms total)
TCA28 045:180 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0001ms, 1577ms total)
TCA28 045:195 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 27  returns 0x01 (0001ms, 1578ms total)
TCA28 045:204 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1579ms total)
TCA28 045:205 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1580ms total)
TCA28 045:206 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0000ms, 1580ms total)
TCA28 045:214 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1581ms total)
TCA28 045:222 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1582ms total)
TCA28 045:223 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1582ms total)
TCA28 045:223 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1583ms total)
TCA28 045:224 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1584ms total)
TCA28 045:225 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1584ms total)
TCA28 045:225 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1585ms total)
TCA28 045:226 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1586ms total)
TCA28 045:227 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FD 43 00 00  returns 0x04 (0001ms, 1587ms total)
TCA28 045:235 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1588ms total)
TCA28 045:236 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 89 05  returns 0x02 (0001ms, 1589ms total)
T7D8C 045:259 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T7D8C 045:360 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T7D8C 045:462 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T7D8C 045:563 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T7D8C 045:664 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
TCA28 045:766 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1589ms total)
TCA28 045:766 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1590ms total)
TCA28 045:767 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1591ms total)
TCA28 045:768 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1591ms total)
TCA28 045:768 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0001ms, 1592ms total)
TCA28 045:776 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0001ms, 1593ms total)
TCA28 045:791 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 27  returns 0x01 (0001ms, 1594ms total)
TCA28 045:799 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1595ms total)
TCA28 045:800 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1596ms total)
TCA28 045:801 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 24 42  returns 0x04 (0000ms, 1596ms total)
TCA28 045:808 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1597ms total)
TCA28 045:816 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1598ms total)
TCA28 045:817 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1599ms total)
TCA28 045:818 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1599ms total)
TCA28 045:818 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1600ms total)
TCA28 045:819 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1601ms total)
TCA28 045:820 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1602ms total)
TCA28 045:821 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1602ms total)
TCA28 045:821 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FD 43 00 00  returns 0x04 (0001ms, 1603ms total)
TCA28 045:830 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1603ms total)
TCA28 045:830 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A1 05  returns 0x02 (0001ms, 1604ms total)
T7D8C 045:853 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T7D8C 045:954 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T7D8C 046:055 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T7D8C 046:157 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T7D8C 046:258 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
TCA28 046:359 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1604ms total)
TCA28 046:359 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1605ms total)
TCA28 046:360 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1606ms total)
TCA28 046:361 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1606ms total)
TCA28 046:361 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 28 42  returns 0x04 (0001ms, 1607ms total)
TCA28 046:370 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 28 42  returns 0x04 (0000ms, 1607ms total)
TCA28 046:386 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 28  returns 0x01 (0000ms, 1607ms total)
TCA28 046:393 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1608ms total)
TCA28 046:394 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1609ms total)
TCA28 046:395 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 28 42  returns 0x04 (0000ms, 1609ms total)
TCA28 046:403 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1609ms total)
TCA28 046:411 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 1609ms total)
TCA28 046:411 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1610ms total)
TCA28 046:412 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1611ms total)
TCA28 046:413 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1611ms total)
TCA28 046:413 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1612ms total)
TCA28 046:414 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1613ms total)
TCA28 046:415 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1614ms total)
TCA28 046:416 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FD 43 00 00  returns 0x04 (0000ms, 1614ms total)
TCA28 046:416 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1615ms total)
TCA28 046:417 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BD 05  returns 0x02 (0001ms, 1616ms total)
T7D8C 046:440 JLINK_IsHalted()  returns FALSE (0001ms, 1617ms total)
T7D8C 046:541 JLINK_IsHalted()  returns FALSE (0000ms, 1616ms total)
T7D8C 046:642 JLINK_IsHalted()  returns FALSE (0000ms, 1616ms total)
T7D8C 046:743 JLINK_IsHalted()  returns FALSE (0000ms, 1616ms total)
T7D8C 046:845 JLINK_IsHalted()  returns FALSE (0000ms, 1616ms total)
TCA28 046:946 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1616ms total)
TCA28 046:946 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1617ms total)
TCA28 046:947 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 1617ms total)
TCA28 046:947 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0002ms, 1619ms total)
TCA28 046:956 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1620ms total)
TCA28 046:972 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1621ms total)
TCA28 046:995 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0001ms, 1622ms total)
TCA28 047:010 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1623ms total)
TCA28 047:011 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1623ms total)
TCA28 047:011 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1624ms total)
TCA28 047:027 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1624ms total)
TCA28 047:035 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1624ms total)
TCA28 047:042 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1625ms total)
TCA28 047:043 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1626ms total)
TCA28 047:044 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1626ms total)
TCA28 047:044 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1627ms total)
TCA28 047:045 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1628ms total)
TCA28 047:046 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1629ms total)
TCA28 047:047 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0000ms, 1629ms total)
TCA28 047:054 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1630ms total)
TCA28 047:055 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D9 05  returns 0x02 (0001ms, 1631ms total)
T7D8C 047:079 JLINK_IsHalted()  returns FALSE (0001ms, 1632ms total)
T7D8C 047:181 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T7D8C 047:282 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T7D8C 047:383 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
TCA28 047:484 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1632ms total)
TCA28 047:485 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1633ms total)
TCA28 047:486 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 1633ms total)
TCA28 047:486 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 1634ms total)
TCA28 047:495 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0000ms, 1634ms total)
TCA28 047:502 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1635ms total)
TCA28 047:517 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0001ms, 1636ms total)
TCA28 047:525 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1637ms total)
TCA28 047:526 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1637ms total)
TCA28 047:526 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1638ms total)
TCA28 047:535 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1638ms total)
TCA28 047:544 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1639ms total)
TCA28 047:552 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1640ms total)
TCA28 047:553 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1641ms total)
TCA28 047:554 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1641ms total)
TCA28 047:554 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1642ms total)
TCA28 047:555 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1643ms total)
TCA28 047:556 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1644ms total)
TCA28 047:557 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0000ms, 1644ms total)
TCA28 047:565 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1644ms total)
TCA28 047:565 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E5 05  returns 0x02 (0001ms, 1645ms total)
T7D8C 047:587 JLINK_IsHalted()  returns FALSE (0001ms, 1646ms total)
T7D8C 047:689 JLINK_IsHalted()  returns FALSE (0000ms, 1645ms total)
T7D8C 047:790 JLINK_IsHalted()  returns FALSE (0000ms, 1645ms total)
T7D8C 047:891 JLINK_IsHalted()  returns FALSE (0000ms, 1645ms total)
TCA28 047:993 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1645ms total)
TCA28 047:993 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1646ms total)
TCA28 047:994 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 1646ms total)
TCA28 047:994 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 1647ms total)
TCA28 047:995 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0001ms, 1648ms total)
TCA28 048:004 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0000ms, 1648ms total)
TCA28 048:018 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0001ms, 1649ms total)
TCA28 048:019 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1650ms total)
TCA28 048:020 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1650ms total)
TCA28 048:020 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0001ms, 1651ms total)
TCA28 048:028 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1652ms total)
TCA28 048:036 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1653ms total)
TCA28 048:037 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1653ms total)
TCA28 048:037 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1654ms total)
TCA28 048:038 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1655ms total)
TCA28 048:039 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1655ms total)
TCA28 048:039 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1656ms total)
TCA28 048:040 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1657ms total)
TCA28 048:041 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0001ms, 1658ms total)
TCA28 048:042 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1658ms total)
TCA28 048:042 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F3 05  returns 0x02 (0001ms, 1659ms total)
T7D8C 048:065 JLINK_IsHalted()  returns FALSE (0000ms, 1659ms total)
T7D8C 048:166 JLINK_IsHalted()  returns FALSE (0000ms, 1659ms total)
T7D8C 048:267 JLINK_IsHalted()  returns FALSE (0000ms, 1659ms total)
T7D8C 048:369 JLINK_IsHalted()  returns FALSE (0000ms, 1659ms total)
T7D8C 048:470 JLINK_IsHalted()  returns FALSE (0000ms, 1659ms total)
TCA28 048:571 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1659ms total)
TCA28 048:571 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1660ms total)
TCA28 048:572 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1661ms total)
TCA28 048:573 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1661ms total)
TCA28 048:573 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0001ms, 1662ms total)
TCA28 048:583 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0001ms, 1663ms total)
TCA28 048:600 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0001ms, 1664ms total)
TCA28 048:601 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1665ms total)
TCA28 048:602 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1665ms total)
TCA28 048:602 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 30 42  returns 0x04 (0001ms, 1666ms total)
TCA28 048:610 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1667ms total)
TCA28 048:618 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1668ms total)
TCA28 048:619 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1668ms total)
TCA28 048:619 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1669ms total)
TCA28 048:620 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1669ms total)
TCA28 048:620 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1670ms total)
TCA28 048:621 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1671ms total)
TCA28 048:622 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1672ms total)
TCA28 048:623 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0001ms, 1673ms total)
TCA28 048:624 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1673ms total)
TCA28 048:624 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: FE 05  returns 0x02 (0001ms, 1674ms total)
T7D8C 048:646 JLINK_IsHalted()  returns FALSE (0001ms, 1675ms total)
T7D8C 048:749 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T7D8C 048:850 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T7D8C 048:951 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T7D8C 049:053 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
TCA28 049:154 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1674ms total)
TCA28 049:154 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1675ms total)
TCA28 049:155 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1676ms total)
TCA28 049:156 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 1676ms total)
TCA28 049:156 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1677ms total)
TCA28 049:165 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1678ms total)
TCA28 049:180 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2A  returns 0x01 (0001ms, 1679ms total)
TCA28 049:188 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1679ms total)
TCA28 049:188 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1680ms total)
TCA28 049:189 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1681ms total)
TCA28 049:197 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1682ms total)
TCA28 049:205 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1683ms total)
TCA28 049:214 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1684ms total)
TCA28 049:215 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1684ms total)
TCA28 049:215 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1685ms total)
TCA28 049:216 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1685ms total)
TCA28 049:216 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 E8 26 51 00 00 81 FD 00 00 00 ...  returns 0x20 (0001ms, 1686ms total)
TCA28 049:217 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1687ms total)
TCA28 049:218 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D1 43 00 00  returns 0x04 (0001ms, 1688ms total)
TCA28 049:226 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1689ms total)
TCA28 049:227 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 14 06  returns 0x02 (0000ms, 1689ms total)
T7D8C 049:249 JLINK_IsHalted()  returns FALSE (0001ms, 1690ms total)
T7D8C 049:351 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T7D8C 049:453 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T7D8C 049:554 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T7D8C 049:655 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
TCA28 049:756 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1689ms total)
TCA28 049:756 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1690ms total)
TCA28 049:757 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 1690ms total)
TCA28 049:757 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 1691ms total)
TCA28 049:758 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1692ms total)
TCA28 049:766 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1693ms total)
TCA28 049:781 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2A  returns 0x01 (0001ms, 1694ms total)
TCA28 049:790 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1694ms total)
TCA28 049:790 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1695ms total)
TCA28 049:791 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 34 42  returns 0x04 (0001ms, 1696ms total)
TCA28 049:799 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1697ms total)
TCA28 049:807 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1698ms total)
TCA28 049:815 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1698ms total)
TCA28 049:815 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1699ms total)
TCA28 049:816 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1700ms total)
TCA28 049:817 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1700ms total)
TCA28 049:817 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 E8 26 51 00 00 81 FD 00 00 00 ...  returns 0x20 (0001ms, 1701ms total)
TCA28 049:818 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1702ms total)
TCA28 049:819 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D1 43 00 00  returns 0x04 (0001ms, 1703ms total)
TCA28 049:828 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1703ms total)
TCA28 049:828 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 26 06  returns 0x02 (0001ms, 1704ms total)
T7D8C 049:850 JLINK_IsHalted()  returns FALSE (0001ms, 1705ms total)
T7D8C 049:952 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T7D8C 050:053 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T7D8C 050:154 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T7D8C 050:256 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
TCA28 050:357 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1704ms total)
TCA28 050:357 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1705ms total)
TCA28 050:358 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1706ms total)
TCA28 050:359 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1707ms total)
TCA28 050:368 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 38 42  returns 0x04 (0000ms, 1707ms total)
TCA28 050:375 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 38 42  returns 0x04 (0001ms, 1708ms total)
TCA28 050:391 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2B  returns 0x01 (0000ms, 1708ms total)
TCA28 050:399 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1708ms total)
TCA28 050:399 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1709ms total)
TCA28 050:400 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 38 42  returns 0x04 (0001ms, 1710ms total)
TCA28 050:408 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1711ms total)
TCA28 050:417 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 1711ms total)
TCA28 050:418 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1711ms total)
TCA28 050:418 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1712ms total)
TCA28 050:419 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1712ms total)
TCA28 050:419 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1713ms total)
TCA28 050:420 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 1714ms total)
TCA28 050:421 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1715ms total)
TCA28 050:422 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D3 43 00 00  returns 0x04 (0000ms, 1715ms total)
TCA28 050:430 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1715ms total)
TCA28 050:430 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 3D 06  returns 0x02 (0001ms, 1716ms total)
T7D8C 050:452 JLINK_IsHalted()  returns FALSE (0001ms, 1717ms total)
T7D8C 050:553 JLINK_IsHalted()  returns FALSE (0000ms, 1716ms total)
T7D8C 050:655 JLINK_IsHalted()  returns FALSE (0000ms, 1716ms total)
T7D8C 050:756 JLINK_IsHalted()  returns FALSE (0000ms, 1716ms total)
T7D8C 050:857 JLINK_IsHalted()  returns FALSE (0000ms, 1716ms total)
TCA28 050:958 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1717ms total)
TCA28 050:959 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1717ms total)
TCA28 050:959 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1718ms total)
TCA28 050:960 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1718ms total)
TCA28 050:977 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1719ms total)
TCA28 050:992 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1720ms total)
TCA28 051:015 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2C  returns 0x01 (0000ms, 1720ms total)
TCA28 051:029 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1721ms total)
TCA28 051:030 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1722ms total)
TCA28 051:031 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0000ms, 1722ms total)
TCA28 051:046 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1723ms total)
TCA28 051:054 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1724ms total)
TCA28 051:055 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1724ms total)
TCA28 051:055 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1725ms total)
TCA28 051:056 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1725ms total)
TCA28 051:056 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1726ms total)
TCA28 051:057 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 1727ms total)
TCA28 051:058 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1728ms total)
TCA28 051:059 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D6 43 00 00  returns 0x04 (0000ms, 1728ms total)
TCA28 051:074 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1728ms total)
TCA28 051:074 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5E 06  returns 0x02 (0001ms, 1729ms total)
T7D8C 051:097 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T7D8C 051:199 JLINK_IsHalted()  returns FALSE (0000ms, 1729ms total)
T7D8C 051:300 JLINK_IsHalted()  returns FALSE (0000ms, 1729ms total)
T7D8C 051:401 JLINK_IsHalted()  returns FALSE (0000ms, 1729ms total)
TCA28 051:503 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1729ms total)
TCA28 051:503 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1730ms total)
TCA28 051:504 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1731ms total)
TCA28 051:505 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1731ms total)
TCA28 051:513 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1732ms total)
TCA28 051:521 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0000ms, 1732ms total)
TCA28 051:536 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2C  returns 0x01 (0001ms, 1733ms total)
TCA28 051:544 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1734ms total)
TCA28 051:545 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1734ms total)
TCA28 051:545 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1735ms total)
TCA28 051:553 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1736ms total)
TCA28 051:561 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 1736ms total)
TCA28 051:561 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1737ms total)
TCA28 051:562 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1738ms total)
TCA28 051:563 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1738ms total)
TCA28 051:563 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1739ms total)
TCA28 051:564 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 1740ms total)
TCA28 051:565 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1741ms total)
TCA28 051:566 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D6 43 00 00  returns 0x04 (0000ms, 1741ms total)
TCA28 051:574 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1741ms total)
TCA28 051:574 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 78 06  returns 0x02 (0001ms, 1742ms total)
T7D8C 051:597 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
T7D8C 051:698 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
T7D8C 051:799 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
T7D8C 051:901 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
T7D8C 052:002 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
TCA28 052:104 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1742ms total)
TCA28 052:104 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1743ms total)
TCA28 052:105 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1744ms total)
TCA28 052:106 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 1745ms total)
TCA28 052:107 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0000ms, 1745ms total)
TCA28 052:114 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0001ms, 1746ms total)
TCA28 052:130 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2D  returns 0x01 (0001ms, 1747ms total)
TCA28 052:138 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1747ms total)
TCA28 052:138 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1748ms total)
TCA28 052:139 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0001ms, 1749ms total)
TCA28 052:147 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1750ms total)
TCA28 052:155 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1751ms total)
TCA28 052:156 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1752ms total)
TCA28 052:157 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1752ms total)
TCA28 052:157 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1753ms total)
TCA28 052:158 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1754ms total)
TCA28 052:159 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0000ms, 1754ms total)
TCA28 052:159 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1755ms total)
TCA28 052:160 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D4 43 00 00  returns 0x04 (0001ms, 1756ms total)
TCA28 052:168 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1757ms total)
TCA28 052:169 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 8B 06  returns 0x02 (0001ms, 1758ms total)
T7D8C 052:192 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T7D8C 052:293 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T7D8C 052:394 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T7D8C 052:496 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T7D8C 052:597 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
TCA28 052:698 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1758ms total)
TCA28 052:698 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1759ms total)
TCA28 052:699 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1760ms total)
TCA28 052:700 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 1761ms total)
TCA28 052:701 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0000ms, 1761ms total)
TCA28 052:709 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0001ms, 1762ms total)
TCA28 052:725 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2D  returns 0x01 (0000ms, 1762ms total)
TCA28 052:732 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1763ms total)
TCA28 052:733 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1763ms total)
TCA28 052:734 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 40 42  returns 0x04 (0000ms, 1763ms total)
TCA28 052:742 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1763ms total)
TCA28 052:749 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1764ms total)
TCA28 052:750 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1765ms total)
TCA28 052:751 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1765ms total)
TCA28 052:751 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1766ms total)
TCA28 052:752 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1767ms total)
TCA28 052:753 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 1768ms total)
TCA28 052:754 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1768ms total)
TCA28 052:754 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D4 43 00 00  returns 0x04 (0001ms, 1769ms total)
TCA28 052:762 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1770ms total)
TCA28 052:763 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 9D 06  returns 0x02 (0000ms, 1770ms total)
T7D8C 052:785 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T7D8C 052:887 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T7D8C 052:988 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T7D8C 053:090 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T7D8C 053:191 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
TCA28 053:292 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1770ms total)
TCA28 053:292 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1771ms total)
TCA28 053:293 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1772ms total)
TCA28 053:294 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1772ms total)
TCA28 053:302 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0001ms, 1773ms total)
TCA28 053:310 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0001ms, 1774ms total)
TCA28 053:326 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2E  returns 0x01 (0001ms, 1775ms total)
TCA28 053:334 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1776ms total)
TCA28 053:335 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1776ms total)
TCA28 053:335 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0001ms, 1777ms total)
TCA28 053:343 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1778ms total)
TCA28 053:352 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1778ms total)
TCA28 053:360 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1778ms total)
TCA28 053:360 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1779ms total)
TCA28 053:361 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1780ms total)
TCA28 053:362 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1780ms total)
TCA28 053:362 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 10 00 51 00 01 7E FE 00 00 00 ...  returns 0x20 (0001ms, 1781ms total)
TCA28 053:363 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1782ms total)
TCA28 053:364 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 31 44 00 00  returns 0x04 (0001ms, 1783ms total)
TCA28 053:372 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1784ms total)
TCA28 053:373 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A9 06  returns 0x02 (0001ms, 1785ms total)
T7D8C 053:398 JLINK_IsHalted()  returns FALSE (0001ms, 1786ms total)
T7D8C 053:499 JLINK_IsHalted()  returns FALSE (0000ms, 1785ms total)
T7D8C 053:600 JLINK_IsHalted()  returns FALSE (0000ms, 1785ms total)
T7D8C 053:701 JLINK_IsHalted()  returns FALSE (0000ms, 1785ms total)
TCA28 053:803 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1785ms total)
TCA28 053:803 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1786ms total)
TCA28 053:804 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1787ms total)
TCA28 053:805 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1787ms total)
TCA28 053:813 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0001ms, 1788ms total)
TCA28 053:821 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0000ms, 1788ms total)
TCA28 053:835 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2E  returns 0x01 (0001ms, 1789ms total)
TCA28 053:843 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1790ms total)
TCA28 053:844 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1791ms total)
TCA28 053:845 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 44 42  returns 0x04 (0001ms, 1792ms total)
TCA28 053:853 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1792ms total)
TCA28 053:861 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1792ms total)
TCA28 053:868 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1793ms total)
TCA28 053:869 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1794ms total)
TCA28 053:870 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1794ms total)
TCA28 053:870 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1795ms total)
TCA28 053:871 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 10 00 51 00 01 7E FE 00 00 00 ...  returns 0x20 (0001ms, 1796ms total)
TCA28 053:872 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1797ms total)
TCA28 053:873 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 31 44 00 00  returns 0x04 (0000ms, 1797ms total)
TCA28 053:881 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1798ms total)
TCA28 053:882 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BB 06  returns 0x02 (0000ms, 1798ms total)
T7D8C 053:904 JLINK_IsHalted()  returns FALSE (0000ms, 1798ms total)
T7D8C 054:005 JLINK_IsHalted()  returns FALSE (0000ms, 1798ms total)
T7D8C 054:106 JLINK_IsHalted()  returns FALSE (0000ms, 1798ms total)
T7D8C 054:208 JLINK_IsHalted()  returns FALSE (0000ms, 1798ms total)
T7D8C 054:309 JLINK_IsHalted()  returns FALSE (0000ms, 1798ms total)
TCA28 054:410 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1798ms total)
TCA28 054:410 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1799ms total)
TCA28 054:411 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1800ms total)
TCA28 054:412 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1800ms total)
TCA28 054:413 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 48 42  returns 0x04 (0000ms, 1800ms total)
TCA28 054:421 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 48 42  returns 0x04 (0001ms, 1801ms total)
TCA28 054:436 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2E  returns 0x01 (0001ms, 1802ms total)
TCA28 054:437 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1803ms total)
TCA28 054:438 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1803ms total)
TCA28 054:438 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 48 42  returns 0x04 (0001ms, 1804ms total)
TCA28 054:446 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1805ms total)
TCA28 054:454 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1806ms total)
TCA28 054:455 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1807ms total)
TCA28 054:456 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1807ms total)
TCA28 054:456 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1808ms total)
TCA28 054:457 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1808ms total)
TCA28 054:458 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 10 00 51 00 01 7E FE 00 00 00 ...  returns 0x20 (0000ms, 1808ms total)
TCA28 054:458 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1809ms total)
TCA28 054:459 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 31 44 00 00  returns 0x04 (0001ms, 1810ms total)
TCA28 054:460 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1810ms total)
TCA28 054:460 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D0 06  returns 0x02 (0001ms, 1811ms total)
T7D8C 054:483 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T7D8C 054:585 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T7D8C 054:686 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T7D8C 054:787 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T7D8C 054:888 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
TCA28 054:990 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1811ms total)
TCA28 054:990 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1812ms total)
TCA28 054:991 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1813ms total)
TCA28 054:992 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1813ms total)
TCA28 054:992 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1814ms total)
TCA28 055:009 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1815ms total)
TCA28 055:032 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2F  returns 0x01 (0000ms, 1815ms total)
TCA28 055:039 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1816ms total)
TCA28 055:040 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1817ms total)
TCA28 055:041 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0000ms, 1817ms total)
TCA28 055:056 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1818ms total)
TCA28 055:064 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1819ms total)
TCA28 055:072 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1820ms total)
TCA28 055:073 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1821ms total)
TCA28 055:074 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1821ms total)
TCA28 055:074 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1822ms total)
TCA28 055:075 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1823ms total)
TCA28 055:076 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1824ms total)
TCA28 055:077 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 05 44 00 00  returns 0x04 (0001ms, 1825ms total)
TCA28 055:086 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1826ms total)
TCA28 055:087 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E0 06  returns 0x02 (0000ms, 1826ms total)
T7D8C 055:111 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T7D8C 055:213 JLINK_IsHalted()  returns FALSE (0000ms, 1826ms total)
T7D8C 055:314 JLINK_IsHalted()  returns FALSE (0000ms, 1826ms total)
T7D8C 055:415 JLINK_IsHalted()  returns FALSE (0000ms, 1826ms total)
TCA28 055:517 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1826ms total)
TCA28 055:517 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1827ms total)
TCA28 055:518 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1828ms total)
TCA28 055:519 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1828ms total)
TCA28 055:519 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1829ms total)
TCA28 055:527 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1830ms total)
TCA28 055:542 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2F  returns 0x01 (0001ms, 1831ms total)
TCA28 055:550 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1832ms total)
TCA28 055:551 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1832ms total)
TCA28 055:551 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1833ms total)
TCA28 055:559 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1834ms total)
TCA28 055:568 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 1834ms total)
TCA28 055:575 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1835ms total)
TCA28 055:576 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1835ms total)
TCA28 055:576 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1836ms total)
TCA28 055:577 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1837ms total)
TCA28 055:578 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1838ms total)
TCA28 055:579 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1838ms total)
TCA28 055:579 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 05 44 00 00  returns 0x04 (0001ms, 1839ms total)
TCA28 055:588 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1840ms total)
TCA28 055:589 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F3 06  returns 0x02 (0000ms, 1840ms total)
T7D8C 055:611 JLINK_IsHalted()  returns FALSE (0001ms, 1841ms total)
T7D8C 055:713 JLINK_IsHalted()  returns FALSE (0000ms, 1840ms total)
T7D8C 055:815 JLINK_IsHalted()  returns FALSE (0000ms, 1840ms total)
T7D8C 055:916 JLINK_IsHalted()  returns FALSE (0000ms, 1840ms total)
T7D8C 056:018 JLINK_IsHalted()  returns FALSE (0000ms, 1840ms total)
TCA28 056:119 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1840ms total)
TCA28 056:119 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1841ms total)
TCA28 056:120 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1842ms total)
TCA28 056:121 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1842ms total)
TCA28 056:121 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0001ms, 1843ms total)
TCA28 056:130 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0000ms, 1843ms total)
TCA28 056:144 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 30  returns 0x01 (0001ms, 1844ms total)
TCA28 056:152 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1845ms total)
TCA28 056:153 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1845ms total)
TCA28 056:153 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0001ms, 1846ms total)
TCA28 056:161 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1847ms total)
TCA28 056:169 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1848ms total)
TCA28 056:177 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1849ms total)
TCA28 056:178 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1849ms total)
TCA28 056:178 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1850ms total)
TCA28 056:179 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1850ms total)
TCA28 056:179 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1851ms total)
TCA28 056:181 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1852ms total)
TCA28 056:181 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D8 43 00 00  returns 0x04 (0001ms, 1853ms total)
TCA28 056:189 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1854ms total)
TCA28 056:190 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 15 07  returns 0x02 (0000ms, 1854ms total)
T7D8C 056:216 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T7D8C 056:318 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T7D8C 056:419 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T7D8C 056:520 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T7D8C 056:621 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
TCA28 056:723 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1854ms total)
TCA28 056:723 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1855ms total)
TCA28 056:724 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1856ms total)
TCA28 056:725 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 1857ms total)
TCA28 056:726 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0000ms, 1857ms total)
TCA28 056:734 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0000ms, 1857ms total)
TCA28 056:749 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 30  returns 0x01 (0000ms, 1857ms total)
TCA28 056:756 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1858ms total)
TCA28 056:757 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1858ms total)
TCA28 056:757 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 50 42  returns 0x04 (0001ms, 1859ms total)
TCA28 056:765 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1860ms total)
TCA28 056:773 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1861ms total)
TCA28 056:781 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1862ms total)
TCA28 056:782 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1862ms total)
TCA28 056:782 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1863ms total)
TCA28 056:783 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1864ms total)
TCA28 056:784 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 1865ms total)
TCA28 056:785 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1865ms total)
TCA28 056:785 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D8 43 00 00  returns 0x04 (0001ms, 1866ms total)
TCA28 056:793 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1867ms total)
TCA28 056:794 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 2B 07  returns 0x02 (0000ms, 1867ms total)
T7D8C 056:817 JLINK_IsHalted()  returns FALSE (0001ms, 1868ms total)
T7D8C 056:919 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T7D8C 057:021 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T7D8C 057:122 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T7D8C 057:223 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
TCA28 057:324 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1868ms total)
TCA28 057:325 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1868ms total)
TCA28 057:325 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1869ms total)
TCA28 057:326 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 1870ms total)
TCA28 057:334 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 54 42  returns 0x04 (0001ms, 1871ms total)
TCA28 057:343 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 54 42  returns 0x04 (0001ms, 1872ms total)
TCA28 057:358 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 31  returns 0x01 (0001ms, 1873ms total)
TCA28 057:366 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1874ms total)
TCA28 057:367 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1874ms total)
TCA28 057:367 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 54 42  returns 0x04 (0001ms, 1875ms total)
TCA28 057:375 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1876ms total)
TCA28 057:383 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1877ms total)
TCA28 057:384 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1878ms total)
TCA28 057:385 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1878ms total)
TCA28 057:385 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1879ms total)
TCA28 057:386 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1880ms total)
TCA28 057:387 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0000ms, 1880ms total)
TCA28 057:387 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1881ms total)
TCA28 057:388 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: D7 43 00 00  returns 0x04 (0001ms, 1882ms total)
TCA28 057:396 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1883ms total)
TCA28 057:397 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 39 07  returns 0x02 (0000ms, 1883ms total)
T7D8C 057:419 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T7D8C 057:520 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T7D8C 057:621 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T7D8C 057:723 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T7D8C 057:824 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
TCA28 057:925 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1883ms total)
TCA28 057:925 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1884ms total)
TCA28 057:926 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1885ms total)
TCA28 057:927 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 1885ms total)
TCA28 057:942 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1886ms total)
TCA28 057:959 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1887ms total)
TCA28 057:984 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0001ms, 1888ms total)
TCA28 058:000 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1888ms total)
TCA28 058:000 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1889ms total)
TCA28 058:001 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1890ms total)
TCA28 058:017 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1891ms total)
TCA28 058:025 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1892ms total)
TCA28 058:033 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1893ms total)
TCA28 058:034 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1894ms total)
TCA28 058:035 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1894ms total)
TCA28 058:035 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1895ms total)
TCA28 058:036 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 00 51 00 01 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1896ms total)
TCA28 058:037 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 1898ms total)
TCA28 058:039 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0000ms, 1898ms total)
TCA28 058:054 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1898ms total)
TCA28 058:054 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 50 07  returns 0x02 (0001ms, 1899ms total)
T7D8C 058:077 JLINK_IsHalted()  returns FALSE (0001ms, 1900ms total)
T7D8C 058:178 JLINK_IsHalted()  returns FALSE (0000ms, 1899ms total)
T7D8C 058:279 JLINK_IsHalted()  returns FALSE (0000ms, 1899ms total)
T7D8C 058:380 JLINK_IsHalted()  returns FALSE (0000ms, 1899ms total)
TCA28 058:482 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1899ms total)
TCA28 058:482 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1900ms total)
TCA28 058:483 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1901ms total)
TCA28 058:484 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 1901ms total)
TCA28 058:492 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1902ms total)
TCA28 058:500 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1903ms total)
TCA28 058:516 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0000ms, 1903ms total)
TCA28 058:524 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1903ms total)
TCA28 058:524 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1904ms total)
TCA28 058:525 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 58 42  returns 0x04 (0001ms, 1905ms total)
TCA28 058:533 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1906ms total)
TCA28 058:541 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1907ms total)
TCA28 058:549 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1907ms total)
TCA28 058:549 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1908ms total)
TCA28 058:550 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1909ms total)
TCA28 058:551 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1909ms total)
TCA28 058:552 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 00 51 00 01 8B FE 00 00 00 ...  returns 0x20 (0000ms, 1909ms total)
TCA28 058:553 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1910ms total)
TCA28 058:553 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0001ms, 1911ms total)
TCA28 058:561 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1912ms total)
TCA28 058:562 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5B 07  returns 0x02 (0001ms, 1913ms total)
T7D8C 058:584 JLINK_IsHalted()  returns FALSE (0001ms, 1914ms total)
T7D8C 058:685 JLINK_IsHalted()  returns FALSE (0000ms, 1913ms total)
T7D8C 058:786 JLINK_IsHalted()  returns FALSE (0000ms, 1913ms total)
T7D8C 058:888 JLINK_IsHalted()  returns FALSE (0000ms, 1913ms total)
TCA28 058:989 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1913ms total)
TCA28 058:989 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1914ms total)
TCA28 058:990 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1915ms total)
TCA28 058:991 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 1915ms total)
TCA28 058:991 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0001ms, 1916ms total)
TCA28 059:000 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0000ms, 1916ms total)
TCA28 059:014 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0001ms, 1917ms total)
TCA28 059:015 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1918ms total)
TCA28 059:016 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1918ms total)
TCA28 059:016 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0001ms, 1919ms total)
TCA28 059:024 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1920ms total)
TCA28 059:032 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1921ms total)
TCA28 059:033 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1921ms total)
TCA28 059:033 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1922ms total)
TCA28 059:034 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1923ms total)
TCA28 059:035 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1924ms total)
TCA28 059:036 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 00 51 00 01 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1925ms total)
TCA28 059:037 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1925ms total)
TCA28 059:037 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0001ms, 1926ms total)
TCA28 059:038 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1927ms total)
TCA28 059:039 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6E 07  returns 0x02 (0000ms, 1927ms total)
T7D8C 059:061 JLINK_IsHalted()  returns FALSE (0001ms, 1928ms total)
T7D8C 059:163 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T7D8C 059:265 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T7D8C 059:366 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T7D8C 059:467 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
TCA28 059:569 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1927ms total)
TCA28 059:569 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1928ms total)
TCA28 059:570 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1929ms total)
TCA28 059:571 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0001ms, 1930ms total)
TCA28 059:572 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0000ms, 1930ms total)
TCA28 059:580 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0000ms, 1930ms total)
TCA28 059:595 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0001ms, 1931ms total)
TCA28 059:596 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1931ms total)
TCA28 059:596 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1932ms total)
TCA28 059:597 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 5C 42  returns 0x04 (0001ms, 1933ms total)
TCA28 059:605 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1934ms total)
TCA28 059:613 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1935ms total)
TCA28 059:614 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1935ms total)
TCA28 059:614 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1936ms total)
TCA28 059:615 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1937ms total)
TCA28 059:616 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1937ms total)
TCA28 059:616 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 00 51 00 01 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1938ms total)
TCA28 059:617 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1939ms total)
TCA28 059:618 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0001ms, 1940ms total)
TCA28 059:619 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1940ms total)
TCA28 059:619 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 7D 07  returns 0x02 (0001ms, 1941ms total)
T7D8C 059:641 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T7D8C 059:743 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T7D8C 059:844 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T7D8C 059:945 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T7D8C 060:046 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
TCA28 060:148 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1941ms total)
TCA28 060:148 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1942ms total)
TCA28 060:149 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1943ms total)
TCA28 060:150 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1943ms total)
TCA28 060:158 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0001ms, 1944ms total)
TCA28 060:166 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0000ms, 1944ms total)
TCA28 060:182 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 33  returns 0x01 (0001ms, 1945ms total)
TCA28 060:190 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1946ms total)
TCA28 060:191 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1946ms total)
TCA28 060:191 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0001ms, 1947ms total)
TCA28 060:200 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1947ms total)
TCA28 060:208 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 1948ms total)
TCA28 060:209 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1948ms total)
TCA28 060:209 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1949ms total)
TCA28 060:210 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1950ms total)
TCA28 060:211 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1950ms total)
TCA28 060:211 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1951ms total)
TCA28 060:212 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1952ms total)
TCA28 060:213 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0000ms, 1952ms total)
TCA28 060:213 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1953ms total)
TCA28 060:214 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 93 07  returns 0x02 (0001ms, 1954ms total)
T7D8C 060:238 JLINK_IsHalted()  returns FALSE (0001ms, 1955ms total)
T7D8C 060:339 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T7D8C 060:440 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T7D8C 060:542 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T7D8C 060:643 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
TCA28 060:744 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1954ms total)
TCA28 060:744 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1955ms total)
TCA28 060:745 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1956ms total)
TCA28 060:746 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 1956ms total)
TCA28 060:754 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0001ms, 1957ms total)
TCA28 060:762 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0000ms, 1957ms total)
TCA28 060:777 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 33  returns 0x01 (0000ms, 1957ms total)
TCA28 060:785 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1958ms total)
TCA28 060:786 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1958ms total)
TCA28 060:786 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 60 42  returns 0x04 (0001ms, 1959ms total)
TCA28 060:794 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1959ms total)
TCA28 060:802 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 1959ms total)
TCA28 060:802 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1960ms total)
TCA28 060:803 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1961ms total)
TCA28 060:804 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1961ms total)
TCA28 060:804 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1962ms total)
TCA28 060:805 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1963ms total)
TCA28 060:806 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1963ms total)
TCA28 060:806 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 08 44 00 00  returns 0x04 (0001ms, 1964ms total)
TCA28 060:807 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1965ms total)
TCA28 060:808 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: AA 07  returns 0x02 (0001ms, 1966ms total)
T7D8C 060:831 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T7D8C 060:933 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T7D8C 061:034 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T7D8C 061:135 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T7D8C 061:237 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
TCA28 061:338 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1966ms total)
TCA28 061:338 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1967ms total)
TCA28 061:339 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1968ms total)
TCA28 061:340 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1968ms total)
TCA28 061:348 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 64 42  returns 0x04 (0000ms, 1968ms total)
TCA28 061:356 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 64 42  returns 0x04 (0001ms, 1969ms total)
TCA28 061:372 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 34  returns 0x01 (0000ms, 1969ms total)
TCA28 061:379 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1970ms total)
TCA28 061:380 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1971ms total)
TCA28 061:381 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 64 42  returns 0x04 (0000ms, 1971ms total)
TCA28 061:388 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1972ms total)
TCA28 061:396 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1973ms total)
TCA28 061:404 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1974ms total)
TCA28 061:405 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1974ms total)
TCA28 061:406 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1975ms total)
TCA28 061:406 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1976ms total)
TCA28 061:407 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F7 26 51 00 00 72 FD 00 00 00 ...  returns 0x20 (0001ms, 1977ms total)
TCA28 061:408 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 1977ms total)
TCA28 061:408 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: DE 43 00 00  returns 0x04 (0001ms, 1978ms total)
TCA28 061:417 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1978ms total)
TCA28 061:417 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C7 07  returns 0x02 (0001ms, 1979ms total)
T7D8C 061:440 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T7D8C 061:542 JLINK_IsHalted()  returns FALSE (0000ms, 1979ms total)
T7D8C 061:644 JLINK_IsHalted()  returns FALSE (0000ms, 1979ms total)
T7D8C 061:745 JLINK_IsHalted()  returns FALSE (0000ms, 1979ms total)
T7D8C 061:846 JLINK_IsHalted()  returns FALSE (0000ms, 1979ms total)
TCA28 061:947 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1979ms total)
TCA28 061:947 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1980ms total)
TCA28 061:948 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1981ms total)
TCA28 061:949 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1981ms total)
TCA28 061:957 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0001ms, 1982ms total)
TCA28 061:973 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0001ms, 1983ms total)
TCA28 061:997 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 35  returns 0x01 (0001ms, 1984ms total)
TCA28 062:015 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1985ms total)
TCA28 062:016 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1986ms total)
TCA28 062:017 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0000ms, 1986ms total)
TCA28 062:033 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1987ms total)
TCA28 062:041 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 1988ms total)
TCA28 062:050 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1988ms total)
TCA28 062:050 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1989ms total)
TCA28 062:051 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1990ms total)
TCA28 062:052 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1990ms total)
TCA28 062:052 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 1991ms total)
TCA28 062:053 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1992ms total)
TCA28 062:054 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: DE 43 00 00  returns 0x04 (0001ms, 1993ms total)
TCA28 062:062 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1994ms total)
TCA28 062:063 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E4 07  returns 0x02 (0001ms, 1995ms total)
T7D8C 062:085 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T7D8C 062:186 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T7D8C 062:287 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T7D8C 062:389 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
TCA28 062:490 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1995ms total)
TCA28 062:490 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1996ms total)
TCA28 062:491 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 1997ms total)
TCA28 062:492 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 1997ms total)
TCA28 062:493 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0000ms, 1997ms total)
TCA28 062:501 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0000ms, 1997ms total)
TCA28 062:515 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 35  returns 0x01 (0001ms, 1998ms total)
TCA28 062:523 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 1999ms total)
TCA28 062:524 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2000ms total)
TCA28 062:525 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 68 42  returns 0x04 (0000ms, 2000ms total)
TCA28 062:533 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2001ms total)
TCA28 062:542 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2002ms total)
TCA28 062:543 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2002ms total)
TCA28 062:543 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2003ms total)
TCA28 062:544 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2004ms total)
TCA28 062:545 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2004ms total)
TCA28 062:545 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2005ms total)
TCA28 062:546 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2006ms total)
TCA28 062:547 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: DE 43 00 00  returns 0x04 (0000ms, 2006ms total)
TCA28 062:547 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2007ms total)
TCA28 062:548 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F0 07  returns 0x02 (0001ms, 2008ms total)
T7D8C 062:571 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T7D8C 062:672 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T7D8C 062:774 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T7D8C 062:875 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T7D8C 062:976 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
TCA28 063:078 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2009ms total)
TCA28 063:079 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2009ms total)
TCA28 063:079 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2010ms total)
TCA28 063:080 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2011ms total)
TCA28 063:089 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0000ms, 2011ms total)
TCA28 063:096 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0001ms, 2012ms total)
TCA28 063:111 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 36  returns 0x01 (0001ms, 2013ms total)
TCA28 063:119 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2013ms total)
TCA28 063:119 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2014ms total)
TCA28 063:120 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0001ms, 2015ms total)
TCA28 063:128 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2016ms total)
TCA28 063:136 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 2016ms total)
TCA28 063:136 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2017ms total)
TCA28 063:137 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2018ms total)
TCA28 063:138 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2018ms total)
TCA28 063:138 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2019ms total)
TCA28 063:139 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2020ms total)
TCA28 063:140 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2021ms total)
TCA28 063:141 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: DE 43 00 00  returns 0x04 (0000ms, 2021ms total)
TCA28 063:141 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2022ms total)
TCA28 063:142 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 00 08  returns 0x02 (0001ms, 2023ms total)
T7D8C 063:166 JLINK_IsHalted()  returns FALSE (0001ms, 2024ms total)
T7D8C 063:268 JLINK_IsHalted()  returns FALSE (0000ms, 2023ms total)
T7D8C 063:369 JLINK_IsHalted()  returns FALSE (0000ms, 2023ms total)
T7D8C 063:470 JLINK_IsHalted()  returns FALSE (0000ms, 2023ms total)
T7D8C 063:572 JLINK_IsHalted()  returns FALSE (0000ms, 2023ms total)
TCA28 063:673 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2023ms total)
TCA28 063:673 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2024ms total)
TCA28 063:674 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2025ms total)
TCA28 063:675 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2026ms total)
TCA28 063:683 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0001ms, 2027ms total)
TCA28 063:690 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0001ms, 2028ms total)
TCA28 063:706 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 36  returns 0x01 (0001ms, 2029ms total)
TCA28 063:714 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2030ms total)
TCA28 063:715 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2031ms total)
TCA28 063:716 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 6C 42  returns 0x04 (0000ms, 2031ms total)
TCA28 063:724 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2031ms total)
TCA28 063:731 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2032ms total)
TCA28 063:732 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2033ms total)
TCA28 063:733 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2033ms total)
TCA28 063:733 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2034ms total)
TCA28 063:734 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2035ms total)
TCA28 063:735 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2036ms total)
TCA28 063:736 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2036ms total)
TCA28 063:736 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: DE 43 00 00  returns 0x04 (0001ms, 2037ms total)
TCA28 063:737 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2037ms total)
TCA28 063:738 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 12 08  returns 0x02 (0000ms, 2037ms total)
T7D8C 063:760 JLINK_IsHalted()  returns FALSE (0001ms, 2038ms total)
T7D8C 063:862 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
T7D8C 063:964 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
T7D8C 064:065 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
T7D8C 064:166 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
TCA28 064:268 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2037ms total)
TCA28 064:269 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2037ms total)
TCA28 064:269 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2038ms total)
TCA28 064:270 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2039ms total)
TCA28 064:278 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0001ms, 2040ms total)
TCA28 064:286 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0001ms, 2041ms total)
TCA28 064:302 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 37  returns 0x01 (0000ms, 2041ms total)
TCA28 064:310 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2041ms total)
TCA28 064:310 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2042ms total)
TCA28 064:311 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0001ms, 2043ms total)
TCA28 064:319 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2043ms total)
TCA28 064:326 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2044ms total)
TCA28 064:334 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2045ms total)
TCA28 064:335 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2045ms total)
TCA28 064:335 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2046ms total)
TCA28 064:336 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2047ms total)
TCA28 064:337 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 0F 00 51 00 01 7F FE 00 00 00 ...  returns 0x20 (0001ms, 2048ms total)
TCA28 064:338 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2048ms total)
TCA28 064:338 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 39 44 00 00  returns 0x04 (0001ms, 2049ms total)
TCA28 064:346 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2050ms total)
TCA28 064:347 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 23 08  returns 0x02 (0001ms, 2051ms total)
T7D8C 064:370 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T7D8C 064:471 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T7D8C 064:572 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T7D8C 064:674 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
TCA28 064:775 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2051ms total)
TCA28 064:775 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2052ms total)
TCA28 064:776 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2053ms total)
TCA28 064:777 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2054ms total)
TCA28 064:785 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0001ms, 2055ms total)
TCA28 064:793 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0000ms, 2055ms total)
TCA28 064:808 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 37  returns 0x01 (0000ms, 2055ms total)
TCA28 064:815 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2056ms total)
TCA28 064:816 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2057ms total)
TCA28 064:817 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 70 42  returns 0x04 (0000ms, 2057ms total)
TCA28 064:825 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2058ms total)
TCA28 064:834 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2058ms total)
TCA28 064:841 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2059ms total)
TCA28 064:842 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2060ms total)
TCA28 064:843 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2060ms total)
TCA28 064:843 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2061ms total)
TCA28 064:844 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 0F 00 51 00 01 7F FE 00 00 00 ...  returns 0x20 (0001ms, 2062ms total)
TCA28 064:845 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2063ms total)
TCA28 064:846 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 39 44 00 00  returns 0x04 (0000ms, 2063ms total)
TCA28 064:854 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2064ms total)
TCA28 064:855 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 34 08  returns 0x02 (0001ms, 2065ms total)
T7D8C 064:877 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T7D8C 064:979 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T7D8C 065:081 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T7D8C 065:182 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T7D8C 065:283 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
TCA28 065:386 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2065ms total)
TCA28 065:386 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2066ms total)
TCA28 065:387 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2067ms total)
TCA28 065:388 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2067ms total)
TCA28 065:388 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 74 42  returns 0x04 (0001ms, 2068ms total)
TCA28 065:397 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 74 42  returns 0x04 (0000ms, 2068ms total)
TCA28 065:412 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 37  returns 0x01 (0000ms, 2068ms total)
TCA28 065:412 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2069ms total)
TCA28 065:413 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2070ms total)
TCA28 065:414 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 74 42  returns 0x04 (0000ms, 2070ms total)
TCA28 065:422 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2070ms total)
TCA28 065:430 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2071ms total)
TCA28 065:431 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2072ms total)
TCA28 065:432 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2072ms total)
TCA28 065:432 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2073ms total)
TCA28 065:433 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2074ms total)
TCA28 065:434 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 0F 00 51 00 01 7F FE 00 00 00 ...  returns 0x20 (0001ms, 2075ms total)
TCA28 065:435 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2075ms total)
TCA28 065:436 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 39 44 00 00  returns 0x04 (0000ms, 2075ms total)
TCA28 065:436 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2076ms total)
TCA28 065:437 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 49 08  returns 0x02 (0000ms, 2076ms total)
T7D8C 065:460 JLINK_IsHalted()  returns FALSE (0001ms, 2077ms total)
T7D8C 065:562 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T7D8C 065:663 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T7D8C 065:765 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T7D8C 065:866 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
TCA28 065:967 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2076ms total)
TCA28 065:967 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2077ms total)
TCA28 065:968 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2078ms total)
TCA28 065:969 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 2078ms total)
TCA28 065:976 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0002ms, 2080ms total)
TCA28 065:993 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0000ms, 2080ms total)
TCA28 066:016 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 38  returns 0x01 (0000ms, 2080ms total)
TCA28 066:024 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2081ms total)
TCA28 066:025 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2081ms total)
TCA28 066:025 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0001ms, 2082ms total)
TCA28 066:040 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2083ms total)
TCA28 066:048 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2083ms total)
TCA28 066:056 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2083ms total)
TCA28 066:057 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2083ms total)
TCA28 066:057 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2084ms total)
TCA28 066:058 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2084ms total)
TCA28 066:058 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2085ms total)
TCA28 066:059 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2086ms total)
TCA28 066:060 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0C 44 00 00  returns 0x04 (0001ms, 2087ms total)
TCA28 066:069 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2088ms total)
TCA28 066:070 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 67 08  returns 0x02 (0000ms, 2088ms total)
T7D8C 066:092 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T7D8C 066:194 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T7D8C 066:295 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T7D8C 066:396 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
TCA28 066:497 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2088ms total)
TCA28 066:497 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2089ms total)
TCA28 066:498 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2090ms total)
TCA28 066:499 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8A D5 82 40  returns 0x04 (0000ms, 2090ms total)
TCA28 066:507 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0000ms, 2090ms total)
TCA28 066:514 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0001ms, 2091ms total)
TCA28 066:530 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 38  returns 0x01 (0000ms, 2091ms total)
TCA28 066:537 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2092ms total)
TCA28 066:538 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2093ms total)
TCA28 066:539 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 78 42  returns 0x04 (0000ms, 2093ms total)
TCA28 066:547 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2093ms total)
TCA28 066:555 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2093ms total)
TCA28 066:563 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2094ms total)
TCA28 066:564 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2095ms total)
TCA28 066:565 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2095ms total)
TCA28 066:565 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2096ms total)
TCA28 066:566 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2097ms total)
TCA28 066:567 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2098ms total)
TCA28 066:568 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0C 44 00 00  returns 0x04 (0000ms, 2098ms total)
TCA28 066:575 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2099ms total)
TCA28 066:576 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 82 08  returns 0x02 (0000ms, 2099ms total)
T7D8C 066:598 JLINK_IsHalted()  returns FALSE (0001ms, 2101ms total)
T7D8C 066:699 JLINK_IsHalted()  returns FALSE (0000ms, 2100ms total)
T7D8C 066:800 JLINK_IsHalted()  returns FALSE (0000ms, 2100ms total)
T7D8C 066:901 JLINK_IsHalted()  returns FALSE (0000ms, 2100ms total)
TCA28 067:003 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2100ms total)
TCA28 067:003 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2101ms total)
TCA28 067:004 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2102ms total)
TCA28 067:005 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2102ms total)
TCA28 067:014 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0000ms, 2102ms total)
TCA28 067:022 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0001ms, 2103ms total)
TCA28 067:037 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 39  returns 0x01 (0001ms, 2104ms total)
TCA28 067:046 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2104ms total)
TCA28 067:046 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2105ms total)
TCA28 067:047 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0000ms, 2105ms total)
TCA28 067:055 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2106ms total)
TCA28 067:064 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2106ms total)
TCA28 067:064 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2107ms total)
TCA28 067:065 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2108ms total)
TCA28 067:066 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2108ms total)
TCA28 067:066 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2109ms total)
TCA28 067:067 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2110ms total)
TCA28 067:068 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2110ms total)
TCA28 067:068 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0D 44 00 00  returns 0x04 (0001ms, 2111ms total)
TCA28 067:076 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2112ms total)
TCA28 067:077 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 93 08  returns 0x02 (0001ms, 2113ms total)
T7D8C 067:100 JLINK_IsHalted()  returns FALSE (0000ms, 2113ms total)
T7D8C 067:201 JLINK_IsHalted()  returns FALSE (0000ms, 2113ms total)
T7D8C 067:302 JLINK_IsHalted()  returns FALSE (0000ms, 2113ms total)
T7D8C 067:404 JLINK_IsHalted()  returns FALSE (0000ms, 2113ms total)
T7D8C 067:505 JLINK_IsHalted()  returns FALSE (0000ms, 2113ms total)
TCA28 067:606 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2113ms total)
TCA28 067:606 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2114ms total)
TCA28 067:607 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2115ms total)
TCA28 067:608 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2115ms total)
TCA28 067:616 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0000ms, 2115ms total)
TCA28 067:623 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0001ms, 2117ms total)
TCA28 067:640 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 39  returns 0x01 (0001ms, 2118ms total)
TCA28 067:649 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2119ms total)
TCA28 067:650 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2119ms total)
TCA28 067:650 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 7C 42  returns 0x04 (0001ms, 2120ms total)
TCA28 067:659 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2121ms total)
TCA28 067:667 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2122ms total)
TCA28 067:668 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2122ms total)
TCA28 067:668 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2123ms total)
TCA28 067:669 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2123ms total)
TCA28 067:670 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2123ms total)
TCA28 067:670 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2124ms total)
TCA28 067:671 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2125ms total)
TCA28 067:672 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0D 44 00 00  returns 0x04 (0000ms, 2125ms total)
TCA28 067:679 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2126ms total)
TCA28 067:680 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A3 08  returns 0x02 (0001ms, 2127ms total)
T7D8C 067:703 JLINK_IsHalted()  returns FALSE (0001ms, 2128ms total)
T7D8C 067:805 JLINK_IsHalted()  returns FALSE (0000ms, 2127ms total)
T7D8C 067:906 JLINK_IsHalted()  returns FALSE (0000ms, 2127ms total)
T7D8C 068:008 JLINK_IsHalted()  returns FALSE (0000ms, 2127ms total)
T7D8C 068:109 JLINK_IsHalted()  returns FALSE (0000ms, 2127ms total)
TCA28 068:210 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2128ms total)
TCA28 068:211 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2129ms total)
TCA28 068:212 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 2129ms total)
TCA28 068:212 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 2130ms total)
TCA28 068:221 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0001ms, 2131ms total)
TCA28 068:230 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0001ms, 2132ms total)
TCA28 068:246 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3A  returns 0x01 (0001ms, 2133ms total)
TCA28 068:254 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2134ms total)
TCA28 068:255 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2134ms total)
TCA28 068:255 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0001ms, 2135ms total)
TCA28 068:263 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2136ms total)
TCA28 068:271 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2137ms total)
TCA28 068:272 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2137ms total)
TCA28 068:272 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2138ms total)
TCA28 068:273 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2139ms total)
TCA28 068:274 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2139ms total)
TCA28 068:274 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2140ms total)
TCA28 068:275 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2141ms total)
TCA28 068:276 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0E 44 00 00  returns 0x04 (0001ms, 2142ms total)
TCA28 068:284 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2143ms total)
TCA28 068:285 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: B3 08  returns 0x02 (0001ms, 2144ms total)
T7D8C 068:308 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T7D8C 068:409 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T7D8C 068:510 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T7D8C 068:612 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T7D8C 068:713 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
TCA28 068:814 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2145ms total)
TCA28 068:815 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2145ms total)
TCA28 068:815 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2146ms total)
TCA28 068:816 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0001ms, 2147ms total)
TCA28 068:824 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0001ms, 2148ms total)
TCA28 068:832 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0001ms, 2149ms total)
TCA28 068:847 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3A  returns 0x01 (0001ms, 2150ms total)
TCA28 068:855 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2151ms total)
TCA28 068:856 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2152ms total)
TCA28 068:857 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 80 42  returns 0x04 (0000ms, 2152ms total)
TCA28 068:865 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2152ms total)
TCA28 068:873 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2153ms total)
TCA28 068:874 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2153ms total)
TCA28 068:874 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2154ms total)
TCA28 068:875 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2155ms total)
TCA28 068:876 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2155ms total)
TCA28 068:876 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2156ms total)
TCA28 068:877 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2157ms total)
TCA28 068:878 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 0E 44 00 00  returns 0x04 (0001ms, 2158ms total)
TCA28 068:886 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2158ms total)
TCA28 068:886 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C6 08  returns 0x02 (0001ms, 2159ms total)
T7D8C 068:908 JLINK_IsHalted()  returns FALSE (0001ms, 2160ms total)
T7D8C 069:010 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T7D8C 069:111 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T7D8C 069:213 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T7D8C 069:314 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
TCA28 069:415 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2159ms total)
TCA28 069:415 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2160ms total)
TCA28 069:416 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2161ms total)
TCA28 069:417 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2161ms total)
TCA28 069:425 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 82 42  returns 0x04 (0001ms, 2162ms total)
TCA28 069:434 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 82 42  returns 0x04 (0000ms, 2162ms total)
TCA28 069:449 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3B  returns 0x01 (0000ms, 2162ms total)
TCA28 069:456 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2163ms total)
TCA28 069:457 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2164ms total)
TCA28 069:458 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 82 42  returns 0x04 (0000ms, 2164ms total)
TCA28 069:466 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2164ms total)
TCA28 069:474 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2164ms total)
TCA28 069:481 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2165ms total)
TCA28 069:482 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2166ms total)
TCA28 069:483 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2166ms total)
TCA28 069:483 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2167ms total)
TCA28 069:484 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2168ms total)
TCA28 069:485 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2168ms total)
TCA28 069:485 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 3D 44 00 00  returns 0x04 (0001ms, 2169ms total)
TCA28 069:493 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2170ms total)
TCA28 069:494 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: DA 08  returns 0x02 (0001ms, 2171ms total)
T7D8C 069:516 JLINK_IsHalted()  returns FALSE (0001ms, 2172ms total)
T7D8C 069:618 JLINK_IsHalted()  returns FALSE (0000ms, 2171ms total)
T7D8C 069:719 JLINK_IsHalted()  returns FALSE (0000ms, 2171ms total)
T7D8C 069:820 JLINK_IsHalted()  returns FALSE (0000ms, 2171ms total)
T7D8C 069:922 JLINK_IsHalted()  returns FALSE (0000ms, 2171ms total)
TCA28 070:023 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2171ms total)
TCA28 070:023 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2172ms total)
TCA28 070:024 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2173ms total)
TCA28 070:025 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2174ms total)
TCA28 070:033 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0001ms, 2175ms total)
TCA28 070:048 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0001ms, 2176ms total)
TCA28 070:071 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3B  returns 0x01 (0000ms, 2176ms total)
TCA28 070:078 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2177ms total)
TCA28 070:079 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2178ms total)
TCA28 070:080 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0000ms, 2178ms total)
TCA28 070:095 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2179ms total)
TCA28 070:103 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2180ms total)
TCA28 070:110 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2181ms total)
TCA28 070:111 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2182ms total)
TCA28 070:112 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2183ms total)
TCA28 070:113 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2183ms total)
TCA28 070:113 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2184ms total)
TCA28 070:114 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2185ms total)
TCA28 070:115 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 3D 44 00 00  returns 0x04 (0000ms, 2185ms total)
TCA28 070:123 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2185ms total)
TCA28 070:123 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: EB 08  returns 0x02 (0001ms, 2186ms total)
T7D8C 070:146 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T7D8C 070:247 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T7D8C 070:349 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T7D8C 070:450 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
TCA28 070:551 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2186ms total)
TCA28 070:551 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2187ms total)
TCA28 070:552 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2188ms total)
TCA28 070:553 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2189ms total)
TCA28 070:554 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0001ms, 2190ms total)
TCA28 070:562 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0001ms, 2191ms total)
TCA28 070:577 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3B  returns 0x01 (0000ms, 2191ms total)
TCA28 070:577 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2192ms total)
TCA28 070:578 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2193ms total)
TCA28 070:579 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 84 42  returns 0x04 (0000ms, 2193ms total)
TCA28 070:587 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2193ms total)
TCA28 070:595 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2193ms total)
TCA28 070:595 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2194ms total)
TCA28 070:596 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2195ms total)
TCA28 070:597 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2195ms total)
TCA28 070:597 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2196ms total)
TCA28 070:598 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2197ms total)
TCA28 070:599 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2198ms total)
TCA28 070:600 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 3D 44 00 00  returns 0x04 (0001ms, 2199ms total)
TCA28 070:601 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2199ms total)
TCA28 070:601 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: FE 08  returns 0x02 (0001ms, 2200ms total)
T7D8C 070:623 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T7D8C 070:726 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
T7D8C 070:827 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
T7D8C 070:928 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
T7D8C 071:029 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
TCA28 071:131 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2200ms total)
TCA28 071:131 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2201ms total)
TCA28 071:132 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2202ms total)
TCA28 071:133 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2202ms total)
TCA28 071:141 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0001ms, 2203ms total)
TCA28 071:150 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0001ms, 2204ms total)
TCA28 071:167 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3C  returns 0x01 (0001ms, 2205ms total)
TCA28 071:175 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2206ms total)
TCA28 071:176 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2207ms total)
TCA28 071:177 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0000ms, 2207ms total)
TCA28 071:184 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2208ms total)
TCA28 071:192 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2209ms total)
TCA28 071:200 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2210ms total)
TCA28 071:201 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2211ms total)
TCA28 071:202 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2211ms total)
TCA28 071:202 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2212ms total)
TCA28 071:203 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F7 26 51 00 00 72 FD 00 00 00 ...  returns 0x20 (0001ms, 2213ms total)
TCA28 071:204 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2214ms total)
TCA28 071:205 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 44 00 00  returns 0x04 (0000ms, 2214ms total)
TCA28 071:213 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2214ms total)
TCA28 071:213 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 1D 09  returns 0x02 (0001ms, 2215ms total)
T7D8C 071:236 JLINK_IsHalted()  returns FALSE (0000ms, 2215ms total)
T7D8C 071:337 JLINK_IsHalted()  returns FALSE (0000ms, 2215ms total)
T7D8C 071:439 JLINK_IsHalted()  returns FALSE (0000ms, 2215ms total)
T7D8C 071:540 JLINK_IsHalted()  returns FALSE (0000ms, 2215ms total)
T7D8C 071:641 JLINK_IsHalted()  returns FALSE (0000ms, 2215ms total)
TCA28 071:742 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2215ms total)
TCA28 071:742 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2216ms total)
TCA28 071:743 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2217ms total)
TCA28 071:744 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2217ms total)
TCA28 071:752 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0000ms, 2217ms total)
TCA28 071:760 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0001ms, 2218ms total)
TCA28 071:775 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3C  returns 0x01 (0000ms, 2218ms total)
TCA28 071:783 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2218ms total)
TCA28 071:783 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2219ms total)
TCA28 071:784 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 86 42  returns 0x04 (0000ms, 2219ms total)
TCA28 071:792 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2220ms total)
TCA28 071:802 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2220ms total)
TCA28 071:810 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2220ms total)
TCA28 071:810 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2221ms total)
TCA28 071:811 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2222ms total)
TCA28 071:812 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2222ms total)
TCA28 071:812 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F7 26 51 00 00 72 FD 00 00 00 ...  returns 0x20 (0001ms, 2223ms total)
TCA28 071:813 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2224ms total)
TCA28 071:814 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 44 00 00  returns 0x04 (0001ms, 2225ms total)
TCA28 071:823 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2226ms total)
TCA28 071:824 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 36 09  returns 0x02 (0001ms, 2227ms total)
T7D8C 071:848 JLINK_IsHalted()  returns FALSE (0001ms, 2228ms total)
T7D8C 071:950 JLINK_IsHalted()  returns FALSE (0000ms, 2227ms total)
T7D8C 072:052 JLINK_IsHalted()  returns FALSE (0000ms, 2227ms total)
T7D8C 072:153 JLINK_IsHalted()  returns FALSE (0000ms, 2227ms total)
TCA28 072:254 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2227ms total)
TCA28 072:254 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2228ms total)
TCA28 072:255 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2229ms total)
TCA28 072:256 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2229ms total)
TCA28 072:264 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 42  returns 0x04 (0001ms, 2230ms total)
TCA28 072:272 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 42  returns 0x04 (0001ms, 2231ms total)
TCA28 072:287 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3D  returns 0x01 (0001ms, 2232ms total)
TCA28 072:295 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2233ms total)
TCA28 072:296 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2233ms total)
TCA28 072:296 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 42  returns 0x04 (0001ms, 2234ms total)
TCA28 072:304 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2235ms total)
TCA28 072:312 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2236ms total)
TCA28 072:313 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2236ms total)
TCA28 072:313 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2237ms total)
TCA28 072:314 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2237ms total)
TCA28 072:314 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2238ms total)
TCA28 072:315 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2239ms total)
TCA28 072:316 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2240ms total)
TCA28 072:317 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 44 00 00  returns 0x04 (0001ms, 2241ms total)
TCA28 072:318 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2241ms total)
TCA28 072:318 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 43 09  returns 0x02 (0001ms, 2242ms total)
T7D8C 072:341 JLINK_IsHalted()  returns FALSE (0001ms, 2243ms total)
T7D8C 072:443 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T7D8C 072:544 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T7D8C 072:645 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T7D8C 072:746 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
TCA28 072:848 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2242ms total)
TCA28 072:848 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2243ms total)
TCA28 072:849 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2244ms total)
TCA28 072:850 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2244ms total)
TCA28 072:858 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 42  returns 0x04 (0000ms, 2244ms total)
TCA28 072:866 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 88 42  returns 0x04 (0000ms, 2244ms total)
TCA28 072:881 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3E  returns 0x01 (0000ms, 2244ms total)
TCA28 072:895 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2245ms total)
TCA28 072:896 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2246ms total)
TCA28 072:897 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8A 42  returns 0x04 (0000ms, 2246ms total)
TCA28 072:912 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2246ms total)
TCA28 072:920 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 2246ms total)
TCA28 072:927 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2247ms total)
TCA28 072:928 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2247ms total)
TCA28 072:928 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2248ms total)
TCA28 072:929 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2249ms total)
TCA28 072:930 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2250ms total)
TCA28 072:931 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2250ms total)
TCA28 072:931 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E4 43 00 00  returns 0x04 (0001ms, 2251ms total)
TCA28 072:939 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2252ms total)
TCA28 072:940 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 57 09  returns 0x02 (0001ms, 2253ms total)
T7D8C 072:966 JLINK_IsHalted()  returns FALSE (0001ms, 2254ms total)
T7D8C 073:067 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
T7D8C 073:168 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
T7D8C 073:270 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
TCA28 073:371 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2253ms total)
TCA28 073:371 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2254ms total)
TCA28 073:372 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2255ms total)
TCA28 073:373 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2255ms total)
TCA28 073:381 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8A 42  returns 0x04 (0001ms, 2256ms total)
TCA28 073:389 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8A 42  returns 0x04 (0000ms, 2256ms total)
TCA28 073:404 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3E  returns 0x01 (0001ms, 2257ms total)
TCA28 073:413 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2257ms total)
TCA28 073:413 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2258ms total)
TCA28 073:414 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8A 42  returns 0x04 (0001ms, 2259ms total)
TCA28 073:422 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2260ms total)
TCA28 073:430 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2261ms total)
TCA28 073:438 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2261ms total)
TCA28 073:438 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2262ms total)
TCA28 073:439 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2263ms total)
TCA28 073:440 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2263ms total)
TCA28 073:440 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2264ms total)
TCA28 073:441 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2265ms total)
TCA28 073:442 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E4 43 00 00  returns 0x04 (0001ms, 2266ms total)
TCA28 073:450 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2266ms total)
TCA28 073:450 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 61 09  returns 0x02 (0001ms, 2267ms total)
T7D8C 073:473 JLINK_IsHalted()  returns FALSE (0001ms, 2268ms total)
T7D8C 073:576 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T7D8C 073:677 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T7D8C 073:778 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
TCA28 073:879 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2267ms total)
TCA28 073:887 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2268ms total)
TCA28 073:888 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2269ms total)
TCA28 073:889 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2269ms total)
TCA28 073:903 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2270ms total)
TCA28 073:920 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2271ms total)
TCA28 073:945 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3F  returns 0x01 (0000ms, 2271ms total)
TCA28 073:953 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2271ms total)
TCA28 073:953 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2272ms total)
TCA28 073:954 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2273ms total)
TCA28 073:963 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2274ms total)
TCA28 073:971 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2275ms total)
TCA28 073:980 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2275ms total)
TCA28 073:981 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2275ms total)
TCA28 073:981 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2276ms total)
TCA28 073:982 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2276ms total)
TCA28 073:982 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2277ms total)
TCA28 073:983 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2278ms total)
TCA28 073:984 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0001ms, 2279ms total)
TCA28 073:994 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2279ms total)
TCA28 073:994 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 73 09  returns 0x02 (0001ms, 2280ms total)
T7D8C 074:017 JLINK_IsHalted()  returns FALSE (0001ms, 2281ms total)
T7D8C 074:119 JLINK_IsHalted()  returns FALSE (0000ms, 2280ms total)
T7D8C 074:220 JLINK_IsHalted()  returns FALSE (0000ms, 2280ms total)
T7D8C 074:322 JLINK_IsHalted()  returns FALSE (0000ms, 2280ms total)
TCA28 074:423 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2280ms total)
TCA28 074:439 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2281ms total)
TCA28 074:440 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2282ms total)
TCA28 074:441 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2282ms total)
TCA28 074:448 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2283ms total)
TCA28 074:456 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2284ms total)
TCA28 074:472 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3F  returns 0x01 (0000ms, 2284ms total)
TCA28 074:480 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2284ms total)
TCA28 074:481 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2284ms total)
TCA28 074:481 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8C 42  returns 0x04 (0001ms, 2285ms total)
TCA28 074:489 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2286ms total)
TCA28 074:497 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2287ms total)
TCA28 074:504 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2288ms total)
TCA28 074:505 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2289ms total)
TCA28 074:506 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2289ms total)
TCA28 074:506 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2290ms total)
TCA28 074:507 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2291ms total)
TCA28 074:508 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2292ms total)
TCA28 074:509 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0000ms, 2292ms total)
TCA28 074:516 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2293ms total)
TCA28 074:517 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 82 09  returns 0x02 (0001ms, 2294ms total)
T7D8C 074:539 JLINK_IsHalted()  returns FALSE (0001ms, 2295ms total)
T7D8C 074:640 JLINK_IsHalted()  returns FALSE (0000ms, 2294ms total)
T7D8C 074:742 JLINK_IsHalted()  returns FALSE (0000ms, 2294ms total)
T7D8C 074:843 JLINK_IsHalted()  returns FALSE (0000ms, 2294ms total)
TCA28 074:944 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2294ms total)
TCA28 074:954 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2294ms total)
TCA28 074:954 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2295ms total)
TCA28 074:955 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2296ms total)
TCA28 074:956 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0000ms, 2296ms total)
TCA28 074:964 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0000ms, 2296ms total)
TCA28 074:979 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3F  returns 0x01 (0000ms, 2296ms total)
TCA28 074:979 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2297ms total)
TCA28 074:980 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2298ms total)
TCA28 074:981 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0000ms, 2298ms total)
TCA28 074:988 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2299ms total)
TCA28 074:996 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2300ms total)
TCA28 074:997 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2301ms total)
TCA28 074:998 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2301ms total)
TCA28 074:998 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2302ms total)
TCA28 074:999 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2302ms total)
TCA28 074:999 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2303ms total)
TCA28 075:000 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2304ms total)
TCA28 075:001 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0001ms, 2305ms total)
TCA28 075:002 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2305ms total)
TCA28 075:002 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 90 09  returns 0x02 (0001ms, 2306ms total)
T7D8C 075:025 JLINK_IsHalted()  returns FALSE (0001ms, 2307ms total)
T7D8C 075:128 JLINK_IsHalted()  returns FALSE (0000ms, 2306ms total)
T7D8C 075:229 JLINK_IsHalted()  returns FALSE (0000ms, 2306ms total)
T7D8C 075:330 JLINK_IsHalted()  returns FALSE (0000ms, 2306ms total)
T7D8C 075:431 JLINK_IsHalted()  returns FALSE (0000ms, 2306ms total)
TCA28 075:533 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2306ms total)
TCA28 075:533 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2307ms total)
TCA28 075:534 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2308ms total)
TCA28 075:535 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2308ms total)
TCA28 075:535 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0001ms, 2309ms total)
TCA28 075:543 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0001ms, 2310ms total)
TCA28 075:558 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 3F  returns 0x01 (0001ms, 2311ms total)
TCA28 075:559 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2311ms total)
TCA28 075:559 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2312ms total)
TCA28 075:560 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 8E 42  returns 0x04 (0001ms, 2313ms total)
TCA28 075:568 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2314ms total)
TCA28 075:576 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2315ms total)
TCA28 075:577 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2315ms total)
TCA28 075:577 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2316ms total)
TCA28 075:578 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2317ms total)
TCA28 075:579 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2317ms total)
TCA28 075:579 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2318ms total)
TCA28 075:580 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2319ms total)
TCA28 075:581 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 14 44 00 00  returns 0x04 (0001ms, 2320ms total)
TCA28 075:582 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2320ms total)
TCA28 075:582 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A5 09  returns 0x02 (0001ms, 2321ms total)
T7D8C 075:605 JLINK_IsHalted()  returns FALSE (0000ms, 2321ms total)
T7D8C 075:706 JLINK_IsHalted()  returns FALSE (0000ms, 2321ms total)
T7D8C 075:807 JLINK_IsHalted()  returns FALSE (0000ms, 2321ms total)
T7D8C 075:909 JLINK_IsHalted()  returns FALSE (0000ms, 2321ms total)
T7D8C 076:010 JLINK_IsHalted()  returns FALSE (0000ms, 2321ms total)
TCA28 076:111 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2321ms total)
TCA28 076:111 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2322ms total)
TCA28 076:112 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2323ms total)
TCA28 076:113 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2323ms total)
TCA28 076:121 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0001ms, 2324ms total)
TCA28 076:128 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0001ms, 2325ms total)
TCA28 076:143 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 40  returns 0x01 (0001ms, 2326ms total)
TCA28 076:151 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2327ms total)
TCA28 076:152 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2327ms total)
TCA28 076:152 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0001ms, 2328ms total)
TCA28 076:160 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2329ms total)
TCA28 076:168 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2330ms total)
TCA28 076:176 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2331ms total)
TCA28 076:177 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2331ms total)
TCA28 076:177 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2332ms total)
TCA28 076:178 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2333ms total)
TCA28 076:179 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2334ms total)
TCA28 076:180 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2334ms total)
TCA28 076:180 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E6 43 00 00  returns 0x04 (0001ms, 2335ms total)
TCA28 076:188 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2336ms total)
TCA28 076:189 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: C6 09  returns 0x02 (0000ms, 2336ms total)
T7D8C 076:211 JLINK_IsHalted()  returns FALSE (0001ms, 2337ms total)
T7D8C 076:313 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T7D8C 076:414 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T7D8C 076:515 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
TCA28 076:616 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2336ms total)
TCA28 076:616 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2337ms total)
TCA28 076:617 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2338ms total)
TCA28 076:618 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2338ms total)
TCA28 076:626 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0001ms, 2339ms total)
TCA28 076:634 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0001ms, 2340ms total)
TCA28 076:651 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 40  returns 0x01 (0000ms, 2340ms total)
TCA28 076:658 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2341ms total)
TCA28 076:659 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2342ms total)
TCA28 076:660 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 90 42  returns 0x04 (0000ms, 2342ms total)
TCA28 076:667 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2343ms total)
TCA28 076:675 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2344ms total)
TCA28 076:683 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2345ms total)
TCA28 076:684 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2345ms total)
TCA28 076:684 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2346ms total)
TCA28 076:685 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2347ms total)
TCA28 076:686 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2348ms total)
TCA28 076:687 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2348ms total)
TCA28 076:687 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E6 43 00 00  returns 0x04 (0001ms, 2349ms total)
TCA28 076:695 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2350ms total)
TCA28 076:696 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D8 09  returns 0x02 (0001ms, 2351ms total)
T7D8C 076:718 JLINK_IsHalted()  returns FALSE (0001ms, 2352ms total)
T7D8C 076:820 JLINK_IsHalted()  returns FALSE (0000ms, 2351ms total)
T7D8C 076:921 JLINK_IsHalted()  returns FALSE (0000ms, 2351ms total)
T7D8C 077:023 JLINK_IsHalted()  returns FALSE (0000ms, 2351ms total)
T7D8C 077:124 JLINK_IsHalted()  returns FALSE (0000ms, 2351ms total)
TCA28 077:225 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2351ms total)
TCA28 077:225 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2352ms total)
TCA28 077:226 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2353ms total)
TCA28 077:227 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 2353ms total)
TCA28 077:235 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0001ms, 2354ms total)
TCA28 077:243 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0001ms, 2355ms total)
TCA28 077:258 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 41  returns 0x01 (0000ms, 2355ms total)
TCA28 077:265 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2356ms total)
TCA28 077:266 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2357ms total)
TCA28 077:267 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0000ms, 2357ms total)
TCA28 077:275 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2357ms total)
TCA28 077:283 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 2357ms total)
TCA28 077:283 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2358ms total)
TCA28 077:284 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2359ms total)
TCA28 077:285 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2359ms total)
TCA28 077:285 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2360ms total)
TCA28 077:286 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2361ms total)
TCA28 077:287 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2362ms total)
TCA28 077:288 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E9 43 00 00  returns 0x04 (0000ms, 2362ms total)
TCA28 077:295 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2363ms total)
TCA28 077:296 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: EB 09  returns 0x02 (0000ms, 2363ms total)
T7D8C 077:318 JLINK_IsHalted()  returns FALSE (0001ms, 2364ms total)
T7D8C 077:420 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T7D8C 077:521 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T7D8C 077:622 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T7D8C 077:724 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
TCA28 077:825 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2363ms total)
TCA28 077:825 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2364ms total)
TCA28 077:826 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2365ms total)
TCA28 077:827 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 59 C8 82 40  returns 0x04 (0000ms, 2365ms total)
TCA28 077:835 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0000ms, 2365ms total)
TCA28 077:842 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0001ms, 2366ms total)
TCA28 077:858 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 41  returns 0x01 (0001ms, 2367ms total)
TCA28 077:866 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2367ms total)
TCA28 077:866 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2368ms total)
TCA28 077:867 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 92 42  returns 0x04 (0001ms, 2369ms total)
TCA28 077:875 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2370ms total)
TCA28 077:883 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2371ms total)
TCA28 077:884 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2371ms total)
TCA28 077:884 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2372ms total)
TCA28 077:885 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2373ms total)
TCA28 077:886 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2373ms total)
TCA28 077:886 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2374ms total)
TCA28 077:887 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2375ms total)
TCA28 077:888 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E9 43 00 00  returns 0x04 (0001ms, 2376ms total)
TCA28 077:896 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2377ms total)
TCA28 077:897 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: FC 09  returns 0x02 (0000ms, 2377ms total)
T7D8C 077:919 JLINK_IsHalted()  returns FALSE (0001ms, 2378ms total)
T7D8C 078:020 JLINK_IsHalted()  returns FALSE (0000ms, 2377ms total)
T7D8C 078:122 JLINK_IsHalted()  returns FALSE (0000ms, 2377ms total)
T7D8C 078:223 JLINK_IsHalted()  returns FALSE (0000ms, 2377ms total)
T7D8C 078:324 JLINK_IsHalted()  returns FALSE (0000ms, 2377ms total)
TCA28 078:425 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2378ms total)
TCA28 078:426 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2379ms total)
TCA28 078:427 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 2379ms total)
TCA28 078:427 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2380ms total)
TCA28 078:435 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 94 42  returns 0x04 (0001ms, 2381ms total)
TCA28 078:443 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 94 42  returns 0x04 (0000ms, 2381ms total)
TCA28 078:458 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 42  returns 0x01 (0000ms, 2381ms total)
TCA28 078:466 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2381ms total)
TCA28 078:466 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2382ms total)
TCA28 078:467 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 94 42  returns 0x04 (0001ms, 2383ms total)
TCA28 078:475 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2384ms total)
TCA28 078:483 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2385ms total)
TCA28 078:484 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2385ms total)
TCA28 078:484 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2386ms total)
TCA28 078:485 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2387ms total)
TCA28 078:486 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2387ms total)
TCA28 078:486 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2388ms total)
TCA28 078:487 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2389ms total)
TCA28 078:488 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E8 43 00 00  returns 0x04 (0001ms, 2390ms total)
TCA28 078:496 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2390ms total)
TCA28 078:496 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 0B 0A  returns 0x02 (0001ms, 2391ms total)
T7D8C 078:519 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T7D8C 078:621 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T7D8C 078:722 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T7D8C 078:823 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T7D8C 078:925 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
TCA28 079:026 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2391ms total)
TCA28 079:026 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2392ms total)
TCA28 079:027 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2393ms total)
TCA28 079:028 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2393ms total)
TCA28 079:043 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0000ms, 2393ms total)
TCA28 079:058 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0001ms, 2394ms total)
TCA28 079:082 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 43  returns 0x01 (0001ms, 2395ms total)
TCA28 079:099 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2395ms total)
TCA28 079:099 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2396ms total)
TCA28 079:100 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0001ms, 2397ms total)
TCA28 079:115 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2398ms total)
TCA28 079:123 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 2398ms total)
TCA28 079:123 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2399ms total)
TCA28 079:124 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2400ms total)
TCA28 079:125 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2400ms total)
TCA28 079:125 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2401ms total)
TCA28 079:126 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2402ms total)
TCA28 079:127 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2403ms total)
TCA28 079:128 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EB 43 00 00  returns 0x04 (0000ms, 2403ms total)
TCA28 079:142 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2404ms total)
TCA28 079:143 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 1F 0A  returns 0x02 (0001ms, 2405ms total)
T7D8C 079:165 JLINK_IsHalted()  returns FALSE (0001ms, 2406ms total)
T7D8C 079:267 JLINK_IsHalted()  returns FALSE (0000ms, 2405ms total)
T7D8C 079:368 JLINK_IsHalted()  returns FALSE (0000ms, 2405ms total)
T7D8C 079:469 JLINK_IsHalted()  returns FALSE (0000ms, 2405ms total)
TCA28 079:570 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2405ms total)
TCA28 079:570 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2406ms total)
TCA28 079:571 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2407ms total)
TCA28 079:572 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2407ms total)
TCA28 079:580 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0000ms, 2407ms total)
TCA28 079:587 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0001ms, 2408ms total)
TCA28 079:602 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 43  returns 0x01 (0001ms, 2409ms total)
TCA28 079:610 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2410ms total)
TCA28 079:611 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2410ms total)
TCA28 079:611 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 96 42  returns 0x04 (0001ms, 2411ms total)
TCA28 079:619 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2412ms total)
TCA28 079:627 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2413ms total)
TCA28 079:628 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2413ms total)
TCA28 079:628 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2414ms total)
TCA28 079:629 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2415ms total)
TCA28 079:630 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2415ms total)
TCA28 079:630 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2416ms total)
TCA28 079:631 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2417ms total)
TCA28 079:632 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: EB 43 00 00  returns 0x04 (0001ms, 2418ms total)
TCA28 079:640 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2419ms total)
TCA28 079:641 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 2E 0A  returns 0x02 (0000ms, 2419ms total)
T7D8C 079:665 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T7D8C 079:766 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T7D8C 079:867 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T7D8C 079:968 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T7D8C 080:070 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
TCA28 080:171 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2420ms total)
TCA28 080:172 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2421ms total)
TCA28 080:173 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 2421ms total)
TCA28 080:173 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2422ms total)
TCA28 080:182 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0000ms, 2422ms total)
TCA28 080:189 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0001ms, 2423ms total)
TCA28 080:204 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 44  returns 0x01 (0001ms, 2424ms total)
TCA28 080:212 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2425ms total)
TCA28 080:213 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2425ms total)
TCA28 080:213 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0001ms, 2426ms total)
TCA28 080:221 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2427ms total)
TCA28 080:229 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2428ms total)
TCA28 080:237 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2428ms total)
TCA28 080:237 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2429ms total)
TCA28 080:238 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2430ms total)
TCA28 080:239 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2430ms total)
TCA28 080:239 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2431ms total)
TCA28 080:240 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2432ms total)
TCA28 080:241 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 17 44 00 00  returns 0x04 (0001ms, 2433ms total)
TCA28 080:250 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2433ms total)
TCA28 080:250 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 44 0A  returns 0x02 (0001ms, 2434ms total)
T7D8C 080:274 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T7D8C 080:376 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T7D8C 080:477 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T7D8C 080:578 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
TCA28 080:680 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2434ms total)
TCA28 080:680 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2435ms total)
TCA28 080:681 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2436ms total)
TCA28 080:682 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2436ms total)
TCA28 080:689 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0001ms, 2437ms total)
TCA28 080:698 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0000ms, 2437ms total)
TCA28 080:713 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 44  returns 0x01 (0000ms, 2437ms total)
TCA28 080:720 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2438ms total)
TCA28 080:721 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2439ms total)
TCA28 080:722 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 98 42  returns 0x04 (0000ms, 2439ms total)
TCA28 080:729 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2440ms total)
TCA28 080:737 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2441ms total)
TCA28 080:745 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2442ms total)
TCA28 080:746 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2442ms total)
TCA28 080:746 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2443ms total)
TCA28 080:747 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2444ms total)
TCA28 080:748 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2445ms total)
TCA28 080:749 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2445ms total)
TCA28 080:749 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 17 44 00 00  returns 0x04 (0001ms, 2446ms total)
TCA28 080:757 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2447ms total)
TCA28 080:758 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 56 0A  returns 0x02 (0001ms, 2448ms total)
T7D8C 080:780 JLINK_IsHalted()  returns FALSE (0001ms, 2449ms total)
T7D8C 080:881 JLINK_IsHalted()  returns FALSE (0000ms, 2448ms total)
T7D8C 080:982 JLINK_IsHalted()  returns FALSE (0000ms, 2448ms total)
T7D8C 081:084 JLINK_IsHalted()  returns FALSE (0000ms, 2448ms total)
T7D8C 081:185 JLINK_IsHalted()  returns FALSE (0000ms, 2448ms total)
TCA28 081:286 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2448ms total)
TCA28 081:286 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2449ms total)
TCA28 081:287 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2450ms total)
TCA28 081:288 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2450ms total)
TCA28 081:288 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9A 42  returns 0x04 (0001ms, 2451ms total)
TCA28 081:297 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9A 42  returns 0x04 (0001ms, 2452ms total)
TCA28 081:313 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 44  returns 0x01 (0001ms, 2453ms total)
TCA28 081:314 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2453ms total)
TCA28 081:314 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2454ms total)
TCA28 081:315 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9A 42  returns 0x04 (0000ms, 2454ms total)
TCA28 081:323 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2454ms total)
TCA28 081:331 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2454ms total)
TCA28 081:331 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2455ms total)
TCA28 081:332 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2456ms total)
TCA28 081:333 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2456ms total)
TCA28 081:333 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2457ms total)
TCA28 081:334 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2458ms total)
TCA28 081:335 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2459ms total)
TCA28 081:336 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 17 44 00 00  returns 0x04 (0000ms, 2459ms total)
TCA28 081:336 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2460ms total)
TCA28 081:337 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 73 0A  returns 0x02 (0001ms, 2461ms total)
T7D8C 081:359 JLINK_IsHalted()  returns FALSE (0001ms, 2462ms total)
T7D8C 081:462 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
T7D8C 081:563 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
T7D8C 081:664 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
T7D8C 081:765 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
TCA28 081:867 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2461ms total)
TCA28 081:867 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2462ms total)
TCA28 081:868 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2463ms total)
TCA28 081:869 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2463ms total)
TCA28 081:869 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9A 42  returns 0x04 (0001ms, 2464ms total)
TCA28 081:878 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9C 42  returns 0x04 (0000ms, 2464ms total)
TCA28 081:900 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 45  returns 0x01 (0000ms, 2464ms total)
TCA28 081:907 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2465ms total)
TCA28 081:908 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2466ms total)
TCA28 081:909 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9C 42  returns 0x04 (0000ms, 2466ms total)
TCA28 081:924 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2467ms total)
TCA28 081:932 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2468ms total)
TCA28 081:933 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2469ms total)
TCA28 081:934 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2469ms total)
TCA28 081:934 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2470ms total)
TCA28 081:935 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2471ms total)
TCA28 081:936 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2472ms total)
TCA28 081:937 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2472ms total)
TCA28 081:937 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 44 00 00  returns 0x04 (0001ms, 2473ms total)
TCA28 081:946 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2474ms total)
TCA28 081:947 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 92 0A  returns 0x02 (0001ms, 2475ms total)
T7D8C 081:972 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T7D8C 082:073 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T7D8C 082:174 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T7D8C 082:276 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T7D8C 082:377 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
TCA28 082:478 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2475ms total)
TCA28 082:478 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2476ms total)
TCA28 082:479 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2477ms total)
TCA28 082:480 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2477ms total)
TCA28 082:488 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9C 42  returns 0x04 (0001ms, 2478ms total)
TCA28 082:496 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9C 42  returns 0x04 (0000ms, 2478ms total)
TCA28 082:511 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 45  returns 0x01 (0001ms, 2479ms total)
TCA28 082:520 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2479ms total)
TCA28 082:520 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2480ms total)
TCA28 082:521 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9C 42  returns 0x04 (0001ms, 2481ms total)
TCA28 082:529 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2482ms total)
TCA28 082:537 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2483ms total)
TCA28 082:538 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2483ms total)
TCA28 082:538 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2484ms total)
TCA28 082:539 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2485ms total)
TCA28 082:540 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2485ms total)
TCA28 082:540 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 2486ms total)
TCA28 082:541 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2487ms total)
TCA28 082:542 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 44 00 00  returns 0x04 (0001ms, 2488ms total)
TCA28 082:550 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2489ms total)
TCA28 082:551 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A1 0A  returns 0x02 (0001ms, 2490ms total)
T7D8C 082:573 JLINK_IsHalted()  returns FALSE (0001ms, 2491ms total)
T7D8C 082:676 JLINK_IsHalted()  returns FALSE (0000ms, 2490ms total)
T7D8C 082:777 JLINK_IsHalted()  returns FALSE (0000ms, 2490ms total)
T7D8C 082:878 JLINK_IsHalted()  returns FALSE (0000ms, 2490ms total)
T7D8C 082:980 JLINK_IsHalted()  returns FALSE (0000ms, 2490ms total)
TCA28 083:081 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2491ms total)
TCA28 083:082 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2491ms total)
TCA28 083:082 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2492ms total)
TCA28 083:083 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2493ms total)
TCA28 083:099 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0001ms, 2494ms total)
TCA28 083:114 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0000ms, 2494ms total)
TCA28 083:130 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 46  returns 0x01 (0000ms, 2494ms total)
TCA28 083:138 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2494ms total)
TCA28 083:138 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2495ms total)
TCA28 083:139 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0001ms, 2496ms total)
TCA28 083:147 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2497ms total)
TCA28 083:155 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2498ms total)
TCA28 083:163 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2499ms total)
TCA28 083:164 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2499ms total)
TCA28 083:164 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2500ms total)
TCA28 083:165 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2501ms total)
TCA28 083:166 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2502ms total)
TCA28 083:167 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2502ms total)
TCA28 083:167 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 48 44 00 00  returns 0x04 (0001ms, 2503ms total)
TCA28 083:176 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2504ms total)
TCA28 083:177 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: B0 0A  returns 0x02 (0000ms, 2504ms total)
T7D8C 083:200 JLINK_IsHalted()  returns FALSE (0000ms, 2504ms total)
T7D8C 083:301 JLINK_IsHalted()  returns FALSE (0000ms, 2504ms total)
T7D8C 083:403 JLINK_IsHalted()  returns FALSE (0000ms, 2504ms total)
T7D8C 083:504 JLINK_IsHalted()  returns FALSE (0000ms, 2504ms total)
TCA28 083:605 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2504ms total)
TCA28 083:605 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2505ms total)
TCA28 083:606 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2506ms total)
TCA28 083:607 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2506ms total)
TCA28 083:615 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0001ms, 2507ms total)
TCA28 083:623 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0000ms, 2507ms total)
TCA28 083:638 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 46  returns 0x01 (0000ms, 2507ms total)
TCA28 083:646 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2507ms total)
TCA28 083:646 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2508ms total)
TCA28 083:647 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 9E 42  returns 0x04 (0001ms, 2509ms total)
TCA28 083:655 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2510ms total)
TCA28 083:663 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2510ms total)
TCA28 083:670 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2511ms total)
TCA28 083:671 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2512ms total)
TCA28 083:672 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2512ms total)
TCA28 083:672 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2513ms total)
TCA28 083:673 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2514ms total)
TCA28 083:674 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2515ms total)
TCA28 083:675 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 48 44 00 00  returns 0x04 (0000ms, 2515ms total)
TCA28 083:683 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2517ms total)
TCA28 083:684 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BE 0A  returns 0x02 (0000ms, 2517ms total)
T7D8C 083:708 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T7D8C 083:809 JLINK_IsHalted()  returns FALSE (0000ms, 2517ms total)
T7D8C 083:910 JLINK_IsHalted()  returns FALSE (0000ms, 2517ms total)
T7D8C 084:011 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
TCA28 084:114 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2517ms total)
TCA28 084:114 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2518ms total)
TCA28 084:115 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2519ms total)
TCA28 084:116 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2519ms total)
TCA28 084:116 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2520ms total)
TCA28 084:124 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2521ms total)
TCA28 084:139 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 46  returns 0x01 (0001ms, 2522ms total)
TCA28 084:140 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2523ms total)
TCA28 084:141 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2523ms total)
TCA28 084:141 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2524ms total)
TCA28 084:149 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2525ms total)
TCA28 084:157 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2526ms total)
TCA28 084:158 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2527ms total)
TCA28 084:159 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2527ms total)
TCA28 084:159 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2528ms total)
TCA28 084:160 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2528ms total)
TCA28 084:160 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2529ms total)
TCA28 084:161 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2530ms total)
TCA28 084:162 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 48 44 00 00  returns 0x04 (0001ms, 2531ms total)
TCA28 084:163 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2531ms total)
TCA28 084:163 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D0 0A  returns 0x02 (0001ms, 2532ms total)
T7D8C 084:186 JLINK_IsHalted()  returns FALSE (0001ms, 2533ms total)
T7D8C 084:288 JLINK_IsHalted()  returns FALSE (0000ms, 2532ms total)
T7D8C 084:389 JLINK_IsHalted()  returns FALSE (0000ms, 2532ms total)
T7D8C 084:491 JLINK_IsHalted()  returns FALSE (0000ms, 2532ms total)
T7D8C 084:592 JLINK_IsHalted()  returns FALSE (0000ms, 2532ms total)
TCA28 084:693 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2532ms total)
TCA28 084:693 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2533ms total)
TCA28 084:694 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2534ms total)
TCA28 084:695 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2534ms total)
TCA28 084:695 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2535ms total)
TCA28 084:704 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2536ms total)
TCA28 084:719 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 46  returns 0x01 (0001ms, 2537ms total)
TCA28 084:720 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2537ms total)
TCA28 084:720 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2538ms total)
TCA28 084:721 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2539ms total)
TCA28 084:729 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2540ms total)
TCA28 084:737 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2540ms total)
TCA28 084:737 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2541ms total)
TCA28 084:738 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2542ms total)
TCA28 084:739 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2542ms total)
TCA28 084:739 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2543ms total)
TCA28 084:740 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2544ms total)
TCA28 084:741 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2545ms total)
TCA28 084:742 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 48 44 00 00  returns 0x04 (0001ms, 2546ms total)
TCA28 084:743 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2546ms total)
TCA28 084:743 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E0 0A  returns 0x02 (0001ms, 2547ms total)
T7D8C 084:766 JLINK_IsHalted()  returns FALSE (0001ms, 2548ms total)
T7D8C 084:868 JLINK_IsHalted()  returns FALSE (0000ms, 2547ms total)
T7D8C 084:969 JLINK_IsHalted()  returns FALSE (0000ms, 2547ms total)
T7D8C 085:070 JLINK_IsHalted()  returns FALSE (0000ms, 2547ms total)
T7D8C 085:172 JLINK_IsHalted()  returns FALSE (0000ms, 2547ms total)
TCA28 085:273 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2547ms total)
TCA28 085:273 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2548ms total)
TCA28 085:274 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2549ms total)
TCA28 085:275 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2549ms total)
TCA28 085:275 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A2 42  returns 0x04 (0001ms, 2550ms total)
TCA28 085:283 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A2 42  returns 0x04 (0001ms, 2551ms total)
TCA28 085:298 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 47  returns 0x01 (0001ms, 2552ms total)
TCA28 085:306 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2552ms total)
TCA28 085:306 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2553ms total)
TCA28 085:307 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A2 42  returns 0x04 (0001ms, 2554ms total)
TCA28 085:315 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2555ms total)
TCA28 085:323 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2556ms total)
TCA28 085:324 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2556ms total)
TCA28 085:324 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2557ms total)
TCA28 085:325 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2558ms total)
TCA28 085:326 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2558ms total)
TCA28 085:326 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2559ms total)
TCA28 085:327 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2560ms total)
TCA28 085:328 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 4A 44 00 00  returns 0x04 (0000ms, 2560ms total)
TCA28 085:336 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2560ms total)
TCA28 085:336 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F4 0A  returns 0x02 (0001ms, 2561ms total)
T7D8C 085:359 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T7D8C 085:461 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T7D8C 085:562 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T7D8C 085:663 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T7D8C 085:764 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
TCA28 085:866 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2561ms total)
TCA28 085:866 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2562ms total)
TCA28 085:867 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2563ms total)
TCA28 085:868 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2564ms total)
TCA28 085:869 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A2 42  returns 0x04 (0000ms, 2564ms total)
TCA28 085:877 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A4 42  returns 0x04 (0000ms, 2564ms total)
TCA28 085:900 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 48  returns 0x01 (0000ms, 2564ms total)
TCA28 085:915 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2565ms total)
TCA28 085:916 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2565ms total)
TCA28 085:916 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A4 42  returns 0x04 (0001ms, 2566ms total)
TCA28 085:931 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2566ms total)
TCA28 085:939 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2566ms total)
TCA28 085:947 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2566ms total)
TCA28 085:947 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2567ms total)
TCA28 085:948 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2568ms total)
TCA28 085:949 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2568ms total)
TCA28 085:949 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F2 26 51 00 00 77 FD 00 00 00 ...  returns 0x20 (0001ms, 2569ms total)
TCA28 085:950 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2570ms total)
TCA28 085:951 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1C 44 00 00  returns 0x04 (0001ms, 2571ms total)
TCA28 085:968 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2572ms total)
TCA28 085:969 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 12 0B  returns 0x02 (0001ms, 2573ms total)
T7D8C 085:996 JLINK_IsHalted()  returns FALSE (0001ms, 2574ms total)
T7D8C 086:097 JLINK_IsHalted()  returns FALSE (0000ms, 2573ms total)
T7D8C 086:198 JLINK_IsHalted()  returns FALSE (0000ms, 2573ms total)
T7D8C 086:299 JLINK_IsHalted()  returns FALSE (0000ms, 2573ms total)
TCA28 086:401 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2573ms total)
TCA28 086:401 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2574ms total)
TCA28 086:402 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2575ms total)
TCA28 086:403 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2575ms total)
TCA28 086:411 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A4 42  returns 0x04 (0000ms, 2575ms total)
TCA28 086:418 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A4 42  returns 0x04 (0001ms, 2576ms total)
TCA28 086:434 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 48  returns 0x01 (0000ms, 2576ms total)
TCA28 086:442 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2576ms total)
TCA28 086:442 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2577ms total)
TCA28 086:443 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A4 42  returns 0x04 (0001ms, 2578ms total)
TCA28 086:451 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2579ms total)
TCA28 086:459 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2580ms total)
TCA28 086:467 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2581ms total)
TCA28 086:468 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2581ms total)
TCA28 086:468 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2582ms total)
TCA28 086:469 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2583ms total)
TCA28 086:470 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F2 26 51 00 00 77 FD 00 00 00 ...  returns 0x20 (0001ms, 2584ms total)
TCA28 086:471 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2584ms total)
TCA28 086:471 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1C 44 00 00  returns 0x04 (0001ms, 2585ms total)
TCA28 086:479 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2586ms total)
TCA28 086:480 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 31 0B  returns 0x02 (0000ms, 2586ms total)
T7D8C 086:503 JLINK_IsHalted()  returns FALSE (0000ms, 2586ms total)
T7D8C 086:604 JLINK_IsHalted()  returns FALSE (0000ms, 2586ms total)
T7D8C 086:705 JLINK_IsHalted()  returns FALSE (0000ms, 2586ms total)
T7D8C 086:807 JLINK_IsHalted()  returns FALSE (0000ms, 2586ms total)
T7D8C 086:908 JLINK_IsHalted()  returns FALSE (0000ms, 2586ms total)
TCA28 087:009 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2586ms total)
TCA28 087:009 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2587ms total)
TCA28 087:010 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2588ms total)
TCA28 087:011 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2589ms total)
TCA28 087:028 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2590ms total)
TCA28 087:043 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2591ms total)
TCA28 087:059 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 49  returns 0x01 (0000ms, 2591ms total)
TCA28 087:066 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2592ms total)
TCA28 087:067 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2593ms total)
TCA28 087:068 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0000ms, 2593ms total)
TCA28 087:075 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2594ms total)
TCA28 087:083 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2595ms total)
TCA28 087:084 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2595ms total)
TCA28 087:084 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2596ms total)
TCA28 087:085 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2597ms total)
TCA28 087:086 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2597ms total)
TCA28 087:086 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2598ms total)
TCA28 087:087 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2599ms total)
TCA28 087:088 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1D 44 00 00  returns 0x04 (0000ms, 2599ms total)
TCA28 087:096 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2599ms total)
TCA28 087:096 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 41 0B  returns 0x02 (0001ms, 2600ms total)
T7D8C 087:118 JLINK_IsHalted()  returns FALSE (0001ms, 2601ms total)
T7D8C 087:221 JLINK_IsHalted()  returns FALSE (0000ms, 2600ms total)
T7D8C 087:323 JLINK_IsHalted()  returns FALSE (0000ms, 2600ms total)
T7D8C 087:424 JLINK_IsHalted()  returns FALSE (0000ms, 2600ms total)
TCA28 087:526 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2600ms total)
TCA28 087:526 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2601ms total)
TCA28 087:527 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2602ms total)
TCA28 087:528 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2602ms total)
TCA28 087:536 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2603ms total)
TCA28 087:544 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2604ms total)
TCA28 087:559 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 49  returns 0x01 (0001ms, 2605ms total)
TCA28 087:567 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2606ms total)
TCA28 087:568 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2606ms total)
TCA28 087:568 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2607ms total)
TCA28 087:576 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2608ms total)
TCA28 087:584 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2609ms total)
TCA28 087:585 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2610ms total)
TCA28 087:586 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2610ms total)
TCA28 087:586 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2611ms total)
TCA28 087:587 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2611ms total)
TCA28 087:587 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2612ms total)
TCA28 087:588 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2613ms total)
TCA28 087:589 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1D 44 00 00  returns 0x04 (0001ms, 2614ms total)
TCA28 087:597 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2615ms total)
TCA28 087:598 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4E 0B  returns 0x02 (0000ms, 2615ms total)
T7D8C 087:621 JLINK_IsHalted()  returns FALSE (0000ms, 2615ms total)
T7D8C 087:722 JLINK_IsHalted()  returns FALSE (0000ms, 2615ms total)
T7D8C 087:823 JLINK_IsHalted()  returns FALSE (0000ms, 2615ms total)
T7D8C 087:925 JLINK_IsHalted()  returns FALSE (0000ms, 2615ms total)
T7D8C 088:026 JLINK_IsHalted()  returns FALSE (0000ms, 2615ms total)
TCA28 088:128 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2615ms total)
TCA28 088:128 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2616ms total)
TCA28 088:129 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2617ms total)
TCA28 088:130 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2618ms total)
TCA28 088:131 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0000ms, 2618ms total)
TCA28 088:140 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0000ms, 2618ms total)
TCA28 088:155 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4A  returns 0x01 (0000ms, 2618ms total)
TCA28 088:162 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2619ms total)
TCA28 088:163 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2620ms total)
TCA28 088:164 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0000ms, 2620ms total)
TCA28 088:172 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2620ms total)
TCA28 088:179 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2621ms total)
TCA28 088:188 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2621ms total)
TCA28 088:188 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2622ms total)
TCA28 088:189 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2622ms total)
TCA28 088:189 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2623ms total)
TCA28 088:190 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2624ms total)
TCA28 088:191 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2625ms total)
TCA28 088:192 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 4D 44 00 00  returns 0x04 (0000ms, 2625ms total)
TCA28 088:200 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2625ms total)
TCA28 088:200 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5B 0B  returns 0x02 (0001ms, 2626ms total)
T7D8C 088:223 JLINK_IsHalted()  returns FALSE (0001ms, 2627ms total)
T7D8C 088:325 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
T7D8C 088:426 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
T7D8C 088:528 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
T7D8C 088:629 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
TCA28 088:730 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2626ms total)
TCA28 088:731 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2626ms total)
TCA28 088:731 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2627ms total)
TCA28 088:732 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2627ms total)
TCA28 088:732 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0001ms, 2628ms total)
TCA28 088:741 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0001ms, 2629ms total)
TCA28 088:756 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4A  returns 0x01 (0001ms, 2630ms total)
TCA28 088:764 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2630ms total)
TCA28 088:765 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2630ms total)
TCA28 088:765 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 A8 42  returns 0x04 (0001ms, 2631ms total)
TCA28 088:773 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2631ms total)
TCA28 088:781 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2631ms total)
TCA28 088:789 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2632ms total)
TCA28 088:790 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2633ms total)
TCA28 088:791 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2633ms total)
TCA28 088:791 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2634ms total)
TCA28 088:792 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2635ms total)
TCA28 088:793 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2636ms total)
TCA28 088:794 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 4D 44 00 00  returns 0x04 (0000ms, 2636ms total)
TCA28 088:802 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2636ms total)
TCA28 088:802 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 6B 0B  returns 0x02 (0001ms, 2637ms total)
T7D8C 088:825 JLINK_IsHalted()  returns FALSE (0001ms, 2638ms total)
T7D8C 088:926 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
T7D8C 089:027 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
T7D8C 089:128 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
T7D8C 089:230 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
TCA28 089:331 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2638ms total)
TCA28 089:332 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2638ms total)
TCA28 089:332 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2639ms total)
TCA28 089:333 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2640ms total)
TCA28 089:334 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AA 42  returns 0x04 (0000ms, 2640ms total)
TCA28 089:342 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AA 42  returns 0x04 (0001ms, 2641ms total)
TCA28 089:357 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4A  returns 0x01 (0000ms, 2641ms total)
TCA28 089:357 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2642ms total)
TCA28 089:358 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2643ms total)
TCA28 089:359 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AA 42  returns 0x04 (0000ms, 2643ms total)
TCA28 089:367 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2643ms total)
TCA28 089:375 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2643ms total)
TCA28 089:375 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2644ms total)
TCA28 089:376 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2644ms total)
TCA28 089:377 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2645ms total)
TCA28 089:377 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2646ms total)
TCA28 089:378 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2647ms total)
TCA28 089:379 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2647ms total)
TCA28 089:379 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 4D 44 00 00  returns 0x04 (0001ms, 2648ms total)
TCA28 089:380 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2649ms total)
TCA28 089:381 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 7E 0B  returns 0x02 (0000ms, 2649ms total)
T7D8C 089:403 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T7D8C 089:505 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
T7D8C 089:607 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
T7D8C 089:708 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
T7D8C 089:809 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
TCA28 089:910 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2649ms total)
TCA28 089:910 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2650ms total)
TCA28 089:911 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2651ms total)
TCA28 089:912 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2651ms total)
TCA28 089:912 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0001ms, 2652ms total)
TCA28 089:928 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0002ms, 2654ms total)
TCA28 089:951 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4B  returns 0x01 (0001ms, 2655ms total)
TCA28 089:959 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2656ms total)
TCA28 089:960 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2657ms total)
TCA28 089:961 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0000ms, 2657ms total)
TCA28 089:978 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2658ms total)
TCA28 089:987 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2659ms total)
TCA28 089:995 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2660ms total)
TCA28 089:996 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2661ms total)
TCA28 089:997 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2661ms total)
TCA28 089:997 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2662ms total)
TCA28 089:998 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2663ms total)
TCA28 089:999 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2664ms total)
TCA28 090:000 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7D 44 00 00  returns 0x04 (0000ms, 2664ms total)
TCA28 090:008 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2665ms total)
TCA28 090:009 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 94 0B  returns 0x02 (0000ms, 2665ms total)
T7D8C 090:031 JLINK_IsHalted()  returns FALSE (0001ms, 2666ms total)
T7D8C 090:134 JLINK_IsHalted()  returns FALSE (0000ms, 2665ms total)
T7D8C 090:235 JLINK_IsHalted()  returns FALSE (0000ms, 2665ms total)
T7D8C 090:336 JLINK_IsHalted()  returns FALSE (0000ms, 2665ms total)
TCA28 090:438 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2665ms total)
TCA28 090:438 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2666ms total)
TCA28 090:439 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2667ms total)
TCA28 090:440 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2667ms total)
TCA28 090:440 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0001ms, 2668ms total)
TCA28 090:449 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0001ms, 2669ms total)
TCA28 090:465 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4B  returns 0x01 (0000ms, 2669ms total)
TCA28 090:472 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2670ms total)
TCA28 090:473 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2671ms total)
TCA28 090:474 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AC 42  returns 0x04 (0000ms, 2671ms total)
TCA28 090:482 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2671ms total)
TCA28 090:490 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2672ms total)
TCA28 090:499 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2672ms total)
TCA28 090:499 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2673ms total)
TCA28 090:500 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2674ms total)
TCA28 090:501 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2674ms total)
TCA28 090:501 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2675ms total)
TCA28 090:502 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2676ms total)
TCA28 090:503 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7D 44 00 00  returns 0x04 (0001ms, 2677ms total)
TCA28 090:511 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2678ms total)
TCA28 090:512 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A9 0B  returns 0x02 (0000ms, 2678ms total)
T7D8C 090:535 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T7D8C 090:636 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
T7D8C 090:737 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
T7D8C 090:839 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
TCA28 090:940 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2678ms total)
TCA28 090:940 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2679ms total)
TCA28 090:941 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2680ms total)
TCA28 090:942 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2680ms total)
TCA28 090:942 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0001ms, 2681ms total)
TCA28 090:950 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0001ms, 2682ms total)
TCA28 090:965 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4B  returns 0x01 (0001ms, 2683ms total)
TCA28 090:966 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2684ms total)
TCA28 090:967 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2684ms total)
TCA28 090:967 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0001ms, 2685ms total)
TCA28 090:975 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2686ms total)
TCA28 090:983 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2687ms total)
TCA28 090:984 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2687ms total)
TCA28 090:984 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2688ms total)
TCA28 090:985 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2689ms total)
TCA28 090:986 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2690ms total)
TCA28 090:987 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2691ms total)
TCA28 090:988 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2691ms total)
TCA28 090:988 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7D 44 00 00  returns 0x04 (0001ms, 2692ms total)
TCA28 090:989 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2693ms total)
TCA28 090:990 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BC 0B  returns 0x02 (0000ms, 2693ms total)
T7D8C 091:013 JLINK_IsHalted()  returns FALSE (0001ms, 2694ms total)
T7D8C 091:115 JLINK_IsHalted()  returns FALSE (0000ms, 2693ms total)
T7D8C 091:217 JLINK_IsHalted()  returns FALSE (0000ms, 2693ms total)
T7D8C 091:318 JLINK_IsHalted()  returns FALSE (0000ms, 2693ms total)
T7D8C 091:419 JLINK_IsHalted()  returns FALSE (0000ms, 2693ms total)
TCA28 091:520 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2693ms total)
TCA28 091:520 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2694ms total)
TCA28 091:521 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0002ms, 2696ms total)
TCA28 091:523 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2696ms total)
TCA28 091:523 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0001ms, 2697ms total)
TCA28 091:532 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0000ms, 2697ms total)
TCA28 091:547 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4B  returns 0x01 (0000ms, 2697ms total)
TCA28 091:547 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2698ms total)
TCA28 091:548 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2698ms total)
TCA28 091:549 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 AE 42  returns 0x04 (0000ms, 2698ms total)
TCA28 091:557 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2698ms total)
TCA28 091:564 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2699ms total)
TCA28 091:565 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2700ms total)
TCA28 091:566 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2700ms total)
TCA28 091:566 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2701ms total)
TCA28 091:567 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2702ms total)
TCA28 091:568 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2703ms total)
TCA28 091:569 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2703ms total)
TCA28 091:569 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7D 44 00 00  returns 0x04 (0001ms, 2704ms total)
TCA28 091:570 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2705ms total)
TCA28 091:571 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: D6 0B  returns 0x02 (0000ms, 2705ms total)
T7D8C 091:593 JLINK_IsHalted()  returns FALSE (0001ms, 2706ms total)
T7D8C 091:694 JLINK_IsHalted()  returns FALSE (0000ms, 2705ms total)
T7D8C 091:795 JLINK_IsHalted()  returns FALSE (0000ms, 2705ms total)
T7D8C 091:896 JLINK_IsHalted()  returns FALSE (0000ms, 2705ms total)
T7D8C 091:998 JLINK_IsHalted()  returns FALSE (0000ms, 2705ms total)
TCA28 092:099 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2706ms total)
TCA28 092:100 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2706ms total)
TCA28 092:100 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2707ms total)
TCA28 092:101 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2708ms total)
TCA28 092:109 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2709ms total)
TCA28 092:117 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2710ms total)
TCA28 092:132 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4C  returns 0x01 (0001ms, 2711ms total)
TCA28 092:140 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2712ms total)
TCA28 092:141 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2712ms total)
TCA28 092:141 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2713ms total)
TCA28 092:149 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2714ms total)
TCA28 092:157 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2715ms total)
TCA28 092:158 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2716ms total)
TCA28 092:159 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2716ms total)
TCA28 092:159 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2717ms total)
TCA28 092:160 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2718ms total)
TCA28 092:161 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FF 26 51 00 00 6A FD 00 00 00 ...  returns 0x20 (0001ms, 2719ms total)
TCA28 092:162 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2719ms total)
TCA28 092:162 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7E 44 00 00  returns 0x04 (0001ms, 2720ms total)
TCA28 092:170 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2721ms total)
TCA28 092:171 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E6 0B  returns 0x02 (0001ms, 2722ms total)
T7D8C 092:194 JLINK_IsHalted()  returns FALSE (0001ms, 2723ms total)
T7D8C 092:296 JLINK_IsHalted()  returns FALSE (0000ms, 2722ms total)
T7D8C 092:397 JLINK_IsHalted()  returns FALSE (0000ms, 2722ms total)
T7D8C 092:498 JLINK_IsHalted()  returns FALSE (0000ms, 2722ms total)
T7D8C 092:599 JLINK_IsHalted()  returns FALSE (0000ms, 2722ms total)
TCA28 092:701 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2722ms total)
TCA28 092:701 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2723ms total)
TCA28 092:702 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2724ms total)
TCA28 092:703 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2724ms total)
TCA28 092:711 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2725ms total)
TCA28 092:719 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0000ms, 2725ms total)
TCA28 092:734 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4C  returns 0x01 (0000ms, 2725ms total)
TCA28 092:741 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2726ms total)
TCA28 092:742 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2727ms total)
TCA28 092:743 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B0 42  returns 0x04 (0000ms, 2727ms total)
TCA28 092:751 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2728ms total)
TCA28 092:759 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 2728ms total)
TCA28 092:759 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2729ms total)
TCA28 092:760 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2730ms total)
TCA28 092:761 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2730ms total)
TCA28 092:761 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2731ms total)
TCA28 092:762 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 FF 26 51 00 00 6A FD 00 00 00 ...  returns 0x20 (0001ms, 2732ms total)
TCA28 092:763 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2733ms total)
TCA28 092:764 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7E 44 00 00  returns 0x04 (0000ms, 2733ms total)
TCA28 092:771 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2734ms total)
TCA28 092:772 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F7 0B  returns 0x02 (0001ms, 2735ms total)
T7D8C 092:794 JLINK_IsHalted()  returns FALSE (0001ms, 2736ms total)
T7D8C 092:896 JLINK_IsHalted()  returns FALSE (0000ms, 2735ms total)
T7D8C 092:997 JLINK_IsHalted()  returns FALSE (0000ms, 2735ms total)
T7D8C 093:099 JLINK_IsHalted()  returns FALSE (0000ms, 2735ms total)
T7D8C 093:200 JLINK_IsHalted()  returns FALSE (0000ms, 2735ms total)
TCA28 093:301 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2735ms total)
TCA28 093:301 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2736ms total)
TCA28 093:302 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2737ms total)
TCA28 093:303 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2737ms total)
TCA28 093:311 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B2 42  returns 0x04 (0001ms, 2738ms total)
TCA28 093:318 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B2 42  returns 0x04 (0001ms, 2739ms total)
TCA28 093:333 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4D  returns 0x01 (0001ms, 2740ms total)
TCA28 093:341 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2740ms total)
TCA28 093:341 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2741ms total)
TCA28 093:342 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B2 42  returns 0x04 (0001ms, 2742ms total)
TCA28 093:350 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2743ms total)
TCA28 093:358 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2744ms total)
TCA28 093:359 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2744ms total)
TCA28 093:359 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2745ms total)
TCA28 093:360 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2746ms total)
TCA28 093:361 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2746ms total)
TCA28 093:361 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 2747ms total)
TCA28 093:362 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2748ms total)
TCA28 093:363 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7D 44 00 00  returns 0x04 (0000ms, 2748ms total)
TCA28 093:371 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2749ms total)
TCA28 093:372 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 05 0C  returns 0x02 (0000ms, 2749ms total)
T7D8C 093:395 JLINK_IsHalted()  returns FALSE (0001ms, 2750ms total)
T7D8C 093:497 JLINK_IsHalted()  returns FALSE (0000ms, 2749ms total)
T7D8C 093:598 JLINK_IsHalted()  returns FALSE (0000ms, 2749ms total)
T7D8C 093:699 JLINK_IsHalted()  returns FALSE (0000ms, 2749ms total)
T7D8C 093:801 JLINK_IsHalted()  returns FALSE (0000ms, 2749ms total)
TCA28 093:902 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2749ms total)
TCA28 093:911 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2749ms total)
TCA28 093:911 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2750ms total)
TCA28 093:912 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 2751ms total)
TCA28 093:920 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0000ms, 2751ms total)
TCA28 093:934 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2752ms total)
TCA28 093:957 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4E  returns 0x01 (0000ms, 2752ms total)
TCA28 093:972 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2753ms total)
TCA28 093:973 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2753ms total)
TCA28 093:973 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2754ms total)
TCA28 093:989 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2755ms total)
TCA28 093:998 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2756ms total)
TCA28 094:007 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2756ms total)
TCA28 094:007 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2757ms total)
TCA28 094:008 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2757ms total)
TCA28 094:008 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2758ms total)
TCA28 094:009 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2759ms total)
TCA28 094:010 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2760ms total)
TCA28 094:011 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 50 44 00 00  returns 0x04 (0000ms, 2760ms total)
TCA28 094:026 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2761ms total)
TCA28 094:027 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 1B 0C  returns 0x02 (0001ms, 2762ms total)
T7D8C 094:052 JLINK_IsHalted()  returns FALSE (0001ms, 2763ms total)
T7D8C 094:153 JLINK_IsHalted()  returns FALSE (0000ms, 2762ms total)
T7D8C 094:254 JLINK_IsHalted()  returns FALSE (0000ms, 2762ms total)
T7D8C 094:356 JLINK_IsHalted()  returns FALSE (0000ms, 2762ms total)
TCA28 094:457 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2763ms total)
TCA28 094:473 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2764ms total)
TCA28 094:474 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2765ms total)
TCA28 094:475 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2765ms total)
TCA28 094:475 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2766ms total)
TCA28 094:483 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2767ms total)
TCA28 094:498 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4E  returns 0x01 (0001ms, 2768ms total)
TCA28 094:506 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2769ms total)
TCA28 094:507 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2769ms total)
TCA28 094:507 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2770ms total)
TCA28 094:515 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2771ms total)
TCA28 094:523 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2772ms total)
TCA28 094:531 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2773ms total)
TCA28 094:532 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2773ms total)
TCA28 094:532 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2774ms total)
TCA28 094:533 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2775ms total)
TCA28 094:534 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0000ms, 2775ms total)
TCA28 094:534 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2776ms total)
TCA28 094:535 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 50 44 00 00  returns 0x04 (0001ms, 2777ms total)
TCA28 094:543 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2778ms total)
TCA28 094:544 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 2B 0C  returns 0x02 (0000ms, 2778ms total)
T7D8C 094:570 JLINK_IsHalted()  returns FALSE (0001ms, 2779ms total)
T7D8C 094:671 JLINK_IsHalted()  returns FALSE (0000ms, 2778ms total)
T7D8C 094:773 JLINK_IsHalted()  returns FALSE (0000ms, 2778ms total)
T7D8C 094:874 JLINK_IsHalted()  returns FALSE (0000ms, 2778ms total)
TCA28 094:975 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2778ms total)
TCA28 094:983 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2779ms total)
TCA28 094:984 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2780ms total)
TCA28 094:985 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2780ms total)
TCA28 094:994 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0000ms, 2780ms total)
TCA28 095:003 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0001ms, 2781ms total)
TCA28 095:020 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4F  returns 0x01 (0002ms, 2783ms total)
TCA28 095:028 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2784ms total)
TCA28 095:029 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2785ms total)
TCA28 095:030 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0000ms, 2785ms total)
TCA28 095:039 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2785ms total)
TCA28 095:048 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2787ms total)
TCA28 095:049 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2788ms total)
TCA28 095:050 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2788ms total)
TCA28 095:051 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2788ms total)
TCA28 095:051 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2789ms total)
TCA28 095:052 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2790ms total)
TCA28 095:053 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2790ms total)
TCA28 095:053 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 51 44 00 00  returns 0x04 (0001ms, 2791ms total)
TCA28 095:062 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2791ms total)
TCA28 095:063 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 39 0C  returns 0x02 (0000ms, 2791ms total)
T7D8C 095:085 JLINK_IsHalted()  returns FALSE (0001ms, 2792ms total)
T7D8C 095:186 JLINK_IsHalted()  returns FALSE (0000ms, 2791ms total)
T7D8C 095:287 JLINK_IsHalted()  returns FALSE (0000ms, 2791ms total)
T7D8C 095:389 JLINK_IsHalted()  returns FALSE (0000ms, 2791ms total)
TCA28 095:490 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2791ms total)
TCA28 095:490 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2792ms total)
TCA28 095:491 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2793ms total)
TCA28 095:492 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2793ms total)
TCA28 095:500 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0001ms, 2794ms total)
TCA28 095:507 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0001ms, 2795ms total)
TCA28 095:523 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 4F  returns 0x01 (0000ms, 2795ms total)
TCA28 095:530 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2796ms total)
TCA28 095:531 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2797ms total)
TCA28 095:532 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B6 42  returns 0x04 (0000ms, 2797ms total)
TCA28 095:539 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2798ms total)
TCA28 095:547 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2799ms total)
TCA28 095:548 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2800ms total)
TCA28 095:549 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2800ms total)
TCA28 095:549 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2801ms total)
TCA28 095:550 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2802ms total)
TCA28 095:551 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2803ms total)
TCA28 095:552 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2803ms total)
TCA28 095:552 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 51 44 00 00  returns 0x04 (0001ms, 2804ms total)
TCA28 095:560 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2805ms total)
TCA28 095:561 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4C 0C  returns 0x02 (0000ms, 2805ms total)
T7D8C 095:583 JLINK_IsHalted()  returns FALSE (0001ms, 2806ms total)
T7D8C 095:684 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T7D8C 095:786 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T7D8C 095:887 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T7D8C 095:988 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
TCA28 096:090 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2805ms total)
TCA28 096:090 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2806ms total)
TCA28 096:091 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2807ms total)
TCA28 096:092 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2808ms total)
TCA28 096:093 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0000ms, 2808ms total)
TCA28 096:102 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0000ms, 2808ms total)
TCA28 096:116 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 50  returns 0x01 (0001ms, 2809ms total)
TCA28 096:124 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2810ms total)
TCA28 096:125 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2810ms total)
TCA28 096:125 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0001ms, 2811ms total)
TCA28 096:134 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2811ms total)
TCA28 096:142 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2811ms total)
TCA28 096:142 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2812ms total)
TCA28 096:143 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2813ms total)
TCA28 096:144 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2813ms total)
TCA28 096:144 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2814ms total)
TCA28 096:145 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2815ms total)
TCA28 096:146 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2816ms total)
TCA28 096:147 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 52 44 00 00  returns 0x04 (0000ms, 2816ms total)
TCA28 096:155 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2816ms total)
TCA28 096:155 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 65 0C  returns 0x02 (0001ms, 2817ms total)
T7D8C 096:178 JLINK_IsHalted()  returns FALSE (0001ms, 2818ms total)
T7D8C 096:280 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T7D8C 096:382 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T7D8C 096:483 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T7D8C 096:584 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
TCA28 096:685 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2817ms total)
TCA28 096:685 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2818ms total)
TCA28 096:686 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2819ms total)
TCA28 096:687 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2819ms total)
TCA28 096:687 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0001ms, 2820ms total)
TCA28 096:696 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0000ms, 2820ms total)
TCA28 096:711 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 50  returns 0x01 (0001ms, 2821ms total)
TCA28 096:719 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2822ms total)
TCA28 096:720 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2822ms total)
TCA28 096:720 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 B8 42  returns 0x04 (0001ms, 2823ms total)
TCA28 096:728 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2824ms total)
TCA28 096:736 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2825ms total)
TCA28 096:737 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2826ms total)
TCA28 096:738 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2826ms total)
TCA28 096:738 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2827ms total)
TCA28 096:739 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2827ms total)
TCA28 096:739 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2828ms total)
TCA28 096:740 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2829ms total)
TCA28 096:741 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 52 44 00 00  returns 0x04 (0001ms, 2830ms total)
TCA28 096:749 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2831ms total)
TCA28 096:750 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 7B 0C  returns 0x02 (0000ms, 2831ms total)
T7D8C 096:773 JLINK_IsHalted()  returns FALSE (0001ms, 2832ms total)
T7D8C 096:874 JLINK_IsHalted()  returns FALSE (0000ms, 2831ms total)
T7D8C 096:975 JLINK_IsHalted()  returns FALSE (0000ms, 2831ms total)
T7D8C 097:076 JLINK_IsHalted()  returns FALSE (0000ms, 2831ms total)
T7D8C 097:177 JLINK_IsHalted()  returns FALSE (0000ms, 2831ms total)
TCA28 097:279 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2831ms total)
TCA28 097:279 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2832ms total)
TCA28 097:280 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2833ms total)
TCA28 097:281 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0000ms, 2833ms total)
TCA28 097:290 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BA 42  returns 0x04 (0000ms, 2833ms total)
TCA28 097:298 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BA 42  returns 0x04 (0000ms, 2833ms total)
TCA28 097:313 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 51  returns 0x01 (0000ms, 2833ms total)
TCA28 097:320 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2834ms total)
TCA28 097:321 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2835ms total)
TCA28 097:322 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BA 42  returns 0x04 (0000ms, 2835ms total)
TCA28 097:330 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2835ms total)
TCA28 097:338 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2835ms total)
TCA28 097:338 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2836ms total)
TCA28 097:339 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2836ms total)
TCA28 097:339 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2837ms total)
TCA28 097:340 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2838ms total)
TCA28 097:341 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2839ms total)
TCA28 097:342 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2839ms total)
TCA28 097:342 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 53 44 00 00  returns 0x04 (0001ms, 2840ms total)
TCA28 097:350 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2841ms total)
TCA28 097:351 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 8A 0C  returns 0x02 (0000ms, 2841ms total)
T7D8C 097:374 JLINK_IsHalted()  returns FALSE (0000ms, 2841ms total)
T7D8C 097:475 JLINK_IsHalted()  returns FALSE (0000ms, 2841ms total)
T7D8C 097:576 JLINK_IsHalted()  returns FALSE (0000ms, 2841ms total)
T7D8C 097:678 JLINK_IsHalted()  returns FALSE (0000ms, 2841ms total)
T7D8C 097:779 JLINK_IsHalted()  returns FALSE (0000ms, 2841ms total)
TCA28 097:880 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2841ms total)
TCA28 097:889 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2842ms total)
TCA28 097:890 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 2842ms total)
TCA28 097:890 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2843ms total)
TCA28 097:905 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2844ms total)
TCA28 097:920 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2845ms total)
TCA28 097:942 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 52  returns 0x01 (0001ms, 2846ms total)
TCA28 097:957 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2846ms total)
TCA28 097:957 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2847ms total)
TCA28 097:958 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2848ms total)
TCA28 097:975 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2848ms total)
TCA28 097:983 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2848ms total)
TCA28 097:983 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2849ms total)
TCA28 097:984 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2850ms total)
TCA28 097:985 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2850ms total)
TCA28 097:985 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2851ms total)
TCA28 097:986 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2852ms total)
TCA28 097:987 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2852ms total)
TCA28 097:987 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 55 44 00 00  returns 0x04 (0001ms, 2853ms total)
TCA28 098:004 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2853ms total)
TCA28 098:004 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: A2 0C  returns 0x02 (0001ms, 2854ms total)
T7D8C 098:030 JLINK_IsHalted()  returns FALSE (0000ms, 2854ms total)
T7D8C 098:131 JLINK_IsHalted()  returns FALSE (0000ms, 2854ms total)
T7D8C 098:232 JLINK_IsHalted()  returns FALSE (0000ms, 2854ms total)
T7D8C 098:334 JLINK_IsHalted()  returns FALSE (0000ms, 2854ms total)
TCA28 098:435 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2854ms total)
TCA28 098:451 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2855ms total)
TCA28 098:452 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2856ms total)
TCA28 098:453 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2856ms total)
TCA28 098:460 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2857ms total)
TCA28 098:468 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2858ms total)
TCA28 098:483 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 52  returns 0x01 (0001ms, 2859ms total)
TCA28 098:491 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2860ms total)
TCA28 098:492 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2861ms total)
TCA28 098:493 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BC 42  returns 0x04 (0000ms, 2861ms total)
TCA28 098:501 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2861ms total)
TCA28 098:509 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2861ms total)
TCA28 098:509 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2862ms total)
TCA28 098:510 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2863ms total)
TCA28 098:511 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2863ms total)
TCA28 098:511 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2864ms total)
TCA28 098:512 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2865ms total)
TCA28 098:513 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2866ms total)
TCA28 098:514 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 55 44 00 00  returns 0x04 (0000ms, 2866ms total)
TCA28 098:522 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2866ms total)
TCA28 098:522 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: AB 0C  returns 0x02 (0001ms, 2867ms total)
T7D8C 098:546 JLINK_IsHalted()  returns FALSE (0001ms, 2868ms total)
T7D8C 098:647 JLINK_IsHalted()  returns FALSE (0000ms, 2867ms total)
T7D8C 098:749 JLINK_IsHalted()  returns FALSE (0000ms, 2867ms total)
T7D8C 098:850 JLINK_IsHalted()  returns FALSE (0000ms, 2867ms total)
TCA28 098:951 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2868ms total)
TCA28 098:962 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2868ms total)
TCA28 098:962 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2869ms total)
TCA28 098:963 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2870ms total)
TCA28 098:964 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0000ms, 2870ms total)
TCA28 098:973 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2871ms total)
TCA28 098:990 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 53  returns 0x01 (0001ms, 2872ms total)
TCA28 098:999 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2872ms total)
TCA28 098:999 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2873ms total)
TCA28 099:000 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0000ms, 2873ms total)
TCA28 099:008 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2874ms total)
TCA28 099:016 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2875ms total)
TCA28 099:017 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2875ms total)
TCA28 099:017 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2876ms total)
TCA28 099:018 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2876ms total)
TCA28 099:019 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2877ms total)
TCA28 099:019 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 2878ms total)
TCA28 099:020 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2879ms total)
TCA28 099:021 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 55 44 00 00  returns 0x04 (0000ms, 2879ms total)
TCA28 099:021 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2880ms total)
TCA28 099:022 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BF 0C  returns 0x02 (0001ms, 2881ms total)
T7D8C 099:046 JLINK_IsHalted()  returns FALSE (0000ms, 2881ms total)
T7D8C 099:147 JLINK_IsHalted()  returns FALSE (0000ms, 2881ms total)
T7D8C 099:248 JLINK_IsHalted()  returns FALSE (0000ms, 2881ms total)
T7D8C 099:349 JLINK_IsHalted()  returns FALSE (0000ms, 2881ms total)
T7D8C 099:451 JLINK_IsHalted()  returns FALSE (0000ms, 2881ms total)
TCA28 099:552 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2881ms total)
TCA28 099:552 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2882ms total)
TCA28 099:553 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2883ms total)
TCA28 099:554 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2883ms total)
TCA28 099:554 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2884ms total)
TCA28 099:562 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2885ms total)
TCA28 099:577 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 53  returns 0x01 (0001ms, 2886ms total)
TCA28 099:585 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2887ms total)
TCA28 099:586 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2887ms total)
TCA28 099:586 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2888ms total)
TCA28 099:594 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2889ms total)
TCA28 099:602 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2890ms total)
TCA28 099:603 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2891ms total)
TCA28 099:604 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2891ms total)
TCA28 099:604 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2892ms total)
TCA28 099:605 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2893ms total)
TCA28 099:606 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 2894ms total)
TCA28 099:607 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2894ms total)
TCA28 099:607 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 55 44 00 00  returns 0x04 (0001ms, 2895ms total)
TCA28 099:608 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2896ms total)
TCA28 099:609 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: CE 0C  returns 0x02 (0000ms, 2896ms total)
T7D8C 099:631 JLINK_IsHalted()  returns FALSE (0001ms, 2897ms total)
T7D8C 099:733 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
T7D8C 099:835 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
T7D8C 099:936 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
T7D8C 100:038 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
TCA28 100:139 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2896ms total)
TCA28 100:139 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2897ms total)
TCA28 100:140 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2898ms total)
TCA28 100:141 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2898ms total)
TCA28 100:141 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0001ms, 2899ms total)
TCA28 100:150 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0000ms, 2899ms total)
TCA28 100:165 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 54  returns 0x01 (0000ms, 2899ms total)
TCA28 100:172 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2900ms total)
TCA28 100:173 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2901ms total)
TCA28 100:174 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0000ms, 2901ms total)
TCA28 100:181 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2902ms total)
TCA28 100:189 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2903ms total)
TCA28 100:190 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2903ms total)
TCA28 100:191 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2903ms total)
TCA28 100:191 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2904ms total)
TCA28 100:192 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2905ms total)
TCA28 100:193 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 2906ms total)
TCA28 100:194 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2906ms total)
TCA28 100:194 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 56 44 00 00  returns 0x04 (0001ms, 2907ms total)
TCA28 100:203 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2907ms total)
TCA28 100:203 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: E3 0C  returns 0x02 (0001ms, 2908ms total)
T7D8C 100:226 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T7D8C 100:327 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T7D8C 100:429 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T7D8C 100:530 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T7D8C 100:631 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
TCA28 100:732 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2908ms total)
TCA28 100:732 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2909ms total)
TCA28 100:733 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2910ms total)
TCA28 100:734 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2911ms total)
TCA28 100:735 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0001ms, 2912ms total)
TCA28 100:743 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0001ms, 2913ms total)
TCA28 100:758 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 54  returns 0x01 (0000ms, 2913ms total)
TCA28 100:765 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2914ms total)
TCA28 100:766 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2914ms total)
TCA28 100:766 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C0 42  returns 0x04 (0001ms, 2915ms total)
TCA28 100:775 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2916ms total)
TCA28 100:783 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2917ms total)
TCA28 100:784 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2918ms total)
TCA28 100:785 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2918ms total)
TCA28 100:785 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2919ms total)
TCA28 100:786 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2920ms total)
TCA28 100:787 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0000ms, 2920ms total)
TCA28 100:787 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2921ms total)
TCA28 100:788 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 56 44 00 00  returns 0x04 (0001ms, 2922ms total)
TCA28 100:796 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2923ms total)
TCA28 100:797 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F7 0C  returns 0x02 (0000ms, 2923ms total)
T7D8C 100:820 JLINK_IsHalted()  returns FALSE (0000ms, 2923ms total)
T7D8C 100:921 JLINK_IsHalted()  returns FALSE (0000ms, 2923ms total)
T7D8C 101:022 JLINK_IsHalted()  returns FALSE (0000ms, 2923ms total)
T7D8C 101:123 JLINK_IsHalted()  returns FALSE (0000ms, 2923ms total)
T7D8C 101:225 JLINK_IsHalted()  returns FALSE (0000ms, 2923ms total)
TCA28 101:326 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2924ms total)
TCA28 101:327 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2924ms total)
TCA28 101:327 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2925ms total)
TCA28 101:328 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2926ms total)
TCA28 101:329 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C2 42  returns 0x04 (0000ms, 2926ms total)
TCA28 101:337 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C2 42  returns 0x04 (0000ms, 2926ms total)
TCA28 101:352 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0001ms, 2927ms total)
TCA28 101:360 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2928ms total)
TCA28 101:361 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2928ms total)
TCA28 101:361 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C2 42  returns 0x04 (0001ms, 2929ms total)
TCA28 101:369 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2930ms total)
TCA28 101:377 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2931ms total)
TCA28 101:378 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2932ms total)
TCA28 101:379 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2932ms total)
TCA28 101:379 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2933ms total)
TCA28 101:380 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2934ms total)
TCA28 101:381 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 03 27 51 00 00 65 FE 00 00 00 ...  returns 0x20 (0001ms, 2935ms total)
TCA28 101:382 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2935ms total)
TCA28 101:382 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 55 44 00 00  returns 0x04 (0001ms, 2936ms total)
TCA28 101:390 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2937ms total)
TCA28 101:391 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 13 0D  returns 0x02 (0000ms, 2937ms total)
T7D8C 101:414 JLINK_IsHalted()  returns FALSE (0000ms, 2937ms total)
T7D8C 101:515 JLINK_IsHalted()  returns FALSE (0000ms, 2937ms total)
T7D8C 101:616 JLINK_IsHalted()  returns FALSE (0000ms, 2937ms total)
T7D8C 101:717 JLINK_IsHalted()  returns FALSE (0000ms, 2937ms total)
T7D8C 101:819 JLINK_IsHalted()  returns FALSE (0000ms, 2937ms total)
TCA28 101:920 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2937ms total)
TCA28 101:920 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2938ms total)
TCA28 101:921 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2939ms total)
TCA28 101:922 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 2939ms total)
TCA28 101:931 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2940ms total)
TCA28 101:946 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2941ms total)
TCA28 101:971 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 56  returns 0x01 (0001ms, 2942ms total)
TCA28 101:987 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2942ms total)
TCA28 101:987 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2943ms total)
TCA28 101:988 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2944ms total)
TCA28 102:004 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2945ms total)
TCA28 102:013 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2946ms total)
TCA28 102:021 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2947ms total)
TCA28 102:022 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2948ms total)
TCA28 102:023 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2948ms total)
TCA28 102:023 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2949ms total)
TCA28 102:024 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2950ms total)
TCA28 102:025 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2951ms total)
TCA28 102:026 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 28 44 00 00  returns 0x04 (0000ms, 2951ms total)
TCA28 102:041 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2952ms total)
TCA28 102:042 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 34 0D  returns 0x02 (0000ms, 2952ms total)
T7D8C 102:064 JLINK_IsHalted()  returns FALSE (0001ms, 2953ms total)
T7D8C 102:166 JLINK_IsHalted()  returns FALSE (0000ms, 2952ms total)
T7D8C 102:268 JLINK_IsHalted()  returns FALSE (0000ms, 2952ms total)
T7D8C 102:369 JLINK_IsHalted()  returns FALSE (0000ms, 2952ms total)
TCA28 102:470 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2953ms total)
TCA28 102:471 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2953ms total)
TCA28 102:471 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2954ms total)
TCA28 102:472 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0001ms, 2955ms total)
TCA28 102:480 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2956ms total)
TCA28 102:488 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0000ms, 2956ms total)
TCA28 102:502 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 56  returns 0x01 (0001ms, 2957ms total)
TCA28 102:510 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2958ms total)
TCA28 102:511 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2959ms total)
TCA28 102:512 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C4 42  returns 0x04 (0000ms, 2959ms total)
TCA28 102:520 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2959ms total)
TCA28 102:528 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 2959ms total)
TCA28 102:536 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2959ms total)
TCA28 102:536 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2960ms total)
TCA28 102:537 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2960ms total)
TCA28 102:538 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2960ms total)
TCA28 102:538 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2961ms total)
TCA28 102:539 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2962ms total)
TCA28 102:540 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 28 44 00 00  returns 0x04 (0000ms, 2962ms total)
TCA28 102:548 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2963ms total)
TCA28 102:549 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 40 0D  returns 0x02 (0001ms, 2964ms total)
T7D8C 102:572 JLINK_IsHalted()  returns FALSE (0001ms, 2965ms total)
T7D8C 102:674 JLINK_IsHalted()  returns FALSE (0000ms, 2964ms total)
T7D8C 102:775 JLINK_IsHalted()  returns FALSE (0000ms, 2964ms total)
T7D8C 102:876 JLINK_IsHalted()  returns FALSE (0000ms, 2964ms total)
TCA28 102:978 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2965ms total)
TCA28 102:979 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2965ms total)
TCA28 102:979 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2966ms total)
TCA28 102:980 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2967ms total)
TCA28 102:989 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2968ms total)
TCA28 102:997 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0002ms, 2970ms total)
TCA28 103:013 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 57  returns 0x01 (0001ms, 2971ms total)
TCA28 103:022 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 2971ms total)
TCA28 103:022 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2972ms total)
TCA28 103:023 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2973ms total)
TCA28 103:031 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2974ms total)
TCA28 103:039 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 2975ms total)
TCA28 103:047 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2976ms total)
TCA28 103:048 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2976ms total)
TCA28 103:048 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2977ms total)
TCA28 103:049 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2977ms total)
TCA28 103:049 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2978ms total)
TCA28 103:050 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2979ms total)
TCA28 103:051 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FA 43 00 00  returns 0x04 (0001ms, 2980ms total)
TCA28 103:059 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2980ms total)
TCA28 103:059 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 4E 0D  returns 0x02 (0001ms, 2981ms total)
T7D8C 103:082 JLINK_IsHalted()  returns FALSE (0000ms, 2981ms total)
T7D8C 103:183 JLINK_IsHalted()  returns FALSE (0000ms, 2981ms total)
T7D8C 103:284 JLINK_IsHalted()  returns FALSE (0000ms, 2981ms total)
T7D8C 103:386 JLINK_IsHalted()  returns FALSE (0000ms, 2981ms total)
TCA28 103:487 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2982ms total)
TCA28 103:488 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2982ms total)
TCA28 103:488 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2983ms total)
TCA28 103:489 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 2984ms total)
TCA28 103:497 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2985ms total)
TCA28 103:505 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2986ms total)
TCA28 103:520 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 57  returns 0x01 (0001ms, 2987ms total)
TCA28 103:528 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2988ms total)
TCA28 103:529 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2988ms total)
TCA28 103:529 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2989ms total)
TCA28 103:537 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2990ms total)
TCA28 103:545 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 2990ms total)
TCA28 103:553 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2990ms total)
TCA28 103:553 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2991ms total)
TCA28 103:554 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2991ms total)
TCA28 103:554 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2992ms total)
TCA28 103:555 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F6 26 51 00 00 73 FD 00 00 00 ...  returns 0x20 (0001ms, 2993ms total)
TCA28 103:556 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 2994ms total)
TCA28 103:557 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FA 43 00 00  returns 0x04 (0000ms, 2994ms total)
TCA28 103:565 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2995ms total)
TCA28 103:566 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 5A 0D  returns 0x02 (0000ms, 2995ms total)
T7D8C 103:588 JLINK_IsHalted()  returns FALSE (0000ms, 2995ms total)
T7D8C 103:689 JLINK_IsHalted()  returns FALSE (0000ms, 2995ms total)
T7D8C 103:791 JLINK_IsHalted()  returns FALSE (0000ms, 2995ms total)
T7D8C 103:892 JLINK_IsHalted()  returns FALSE (0000ms, 2995ms total)
T7D8C 103:993 JLINK_IsHalted()  returns FALSE (0000ms, 2995ms total)
TCA28 104:095 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2995ms total)
TCA28 104:095 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2996ms total)
TCA28 104:096 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 2997ms total)
TCA28 104:097 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 2997ms total)
TCA28 104:097 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 2998ms total)
TCA28 104:106 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 2999ms total)
TCA28 104:121 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 58  returns 0x01 (0001ms, 3000ms total)
TCA28 104:130 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3001ms total)
TCA28 104:131 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3001ms total)
TCA28 104:131 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 3002ms total)
TCA28 104:139 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3002ms total)
TCA28 104:147 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 3002ms total)
TCA28 104:147 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3003ms total)
TCA28 104:148 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3004ms total)
TCA28 104:149 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 3004ms total)
TCA28 104:149 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3005ms total)
TCA28 104:150 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 3006ms total)
TCA28 104:151 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3006ms total)
TCA28 104:151 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0001ms, 3007ms total)
TCA28 104:160 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 3007ms total)
TCA28 104:160 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 70 0D  returns 0x02 (0001ms, 3008ms total)
T7D8C 104:183 JLINK_IsHalted()  returns FALSE (0001ms, 3009ms total)
T7D8C 104:284 JLINK_IsHalted()  returns FALSE (0000ms, 3008ms total)
T7D8C 104:385 JLINK_IsHalted()  returns FALSE (0000ms, 3008ms total)
T7D8C 104:487 JLINK_IsHalted()  returns FALSE (0000ms, 3008ms total)
T7D8C 104:588 JLINK_IsHalted()  returns FALSE (0000ms, 3008ms total)
TCA28 104:689 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3008ms total)
TCA28 104:689 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3009ms total)
TCA28 104:690 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3010ms total)
TCA28 104:691 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3010ms total)
TCA28 104:691 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 3011ms total)
TCA28 104:700 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 3012ms total)
TCA28 104:715 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 58  returns 0x01 (0000ms, 3012ms total)
TCA28 104:723 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3012ms total)
TCA28 104:723 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3013ms total)
TCA28 104:724 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 C8 42  returns 0x04 (0001ms, 3014ms total)
TCA28 104:732 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3015ms total)
TCA28 104:740 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0001ms, 3016ms total)
TCA28 104:741 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3017ms total)
TCA28 104:742 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3017ms total)
TCA28 104:742 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3018ms total)
TCA28 104:743 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 3018ms total)
TCA28 104:743 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 05 27 51 00 00 63 FE 00 00 00 ...  returns 0x20 (0001ms, 3019ms total)
TCA28 104:744 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3020ms total)
TCA28 104:745 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0001ms, 3021ms total)
TCA28 104:753 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3022ms total)
TCA28 104:754 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 81 0D  returns 0x02 (0001ms, 3023ms total)
T7D8C 104:776 JLINK_IsHalted()  returns FALSE (0001ms, 3024ms total)
T7D8C 104:879 JLINK_IsHalted()  returns FALSE (0000ms, 3023ms total)
T7D8C 104:980 JLINK_IsHalted()  returns FALSE (0000ms, 3023ms total)
T7D8C 105:081 JLINK_IsHalted()  returns FALSE (0000ms, 3023ms total)
T7D8C 105:182 JLINK_IsHalted()  returns FALSE (0000ms, 3023ms total)
TCA28 105:284 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3024ms total)
TCA28 105:285 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3025ms total)
TCA28 105:286 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 3025ms total)
TCA28 105:286 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: EC EF 82 40  returns 0x04 (0001ms, 3026ms total)
TCA28 105:295 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CA 42  returns 0x04 (0000ms, 3026ms total)
TCA28 105:302 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CA 42  returns 0x04 (0001ms, 3027ms total)
TCA28 105:318 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 59  returns 0x01 (0000ms, 3027ms total)
TCA28 105:325 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3028ms total)
TCA28 105:326 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3029ms total)
TCA28 105:327 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CA 42  returns 0x04 (0000ms, 3029ms total)
TCA28 105:335 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3029ms total)
TCA28 105:343 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 3029ms total)
TCA28 105:343 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3030ms total)
TCA28 105:344 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3030ms total)
TCA28 105:344 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3031ms total)
TCA28 105:345 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3032ms total)
TCA28 105:346 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 3033ms total)
TCA28 105:347 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3033ms total)
TCA28 105:347 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FC 43 00 00  returns 0x04 (0001ms, 3034ms total)
TCA28 105:348 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3035ms total)
TCA28 105:349 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 97 0D  returns 0x02 (0000ms, 3035ms total)
T7D8C 105:372 JLINK_IsHalted()  returns FALSE (0000ms, 3035ms total)
T7D8C 105:473 JLINK_IsHalted()  returns FALSE (0000ms, 3035ms total)
T7D8C 105:574 JLINK_IsHalted()  returns FALSE (0000ms, 3035ms total)
T7D8C 105:676 JLINK_IsHalted()  returns FALSE (0000ms, 3035ms total)
T7D8C 105:777 JLINK_IsHalted()  returns FALSE (0000ms, 3035ms total)
TCA28 105:878 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 3035ms total)
TCA28 105:887 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 3035ms total)
TCA28 105:887 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3036ms total)
TCA28 105:888 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 3037ms total)
TCA28 105:903 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0001ms, 3038ms total)
TCA28 105:918 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0001ms, 3039ms total)
TCA28 105:942 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5A  returns 0x01 (0001ms, 3040ms total)
TCA28 105:959 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 3042ms total)
TCA28 105:961 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3042ms total)
TCA28 105:961 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0000ms, 3042ms total)
TCA28 105:978 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3042ms total)
TCA28 105:986 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3043ms total)
TCA28 105:994 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3044ms total)
TCA28 105:995 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3044ms total)
TCA28 105:995 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3045ms total)
TCA28 105:996 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 3045ms total)
TCA28 105:997 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0000ms, 3045ms total)
TCA28 105:997 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3046ms total)
TCA28 105:998 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2C 44 00 00  returns 0x04 (0001ms, 3047ms total)
TCA28 106:006 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 3047ms total)
TCA28 106:006 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: BA 0D  returns 0x02 (0001ms, 3048ms total)
T7D8C 106:030 JLINK_IsHalted()  returns FALSE (0000ms, 3048ms total)
T7D8C 106:131 JLINK_IsHalted()  returns FALSE (0000ms, 3048ms total)
T7D8C 106:232 JLINK_IsHalted()  returns FALSE (0000ms, 3048ms total)
T7D8C 106:334 JLINK_IsHalted()  returns FALSE (0000ms, 3048ms total)
TCA28 106:435 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3048ms total)
TCA28 106:452 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3049ms total)
TCA28 106:453 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0000ms, 3049ms total)
TCA28 106:453 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 3050ms total)
TCA28 106:461 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0001ms, 3051ms total)
TCA28 106:469 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0000ms, 3051ms total)
TCA28 106:484 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5A  returns 0x01 (0000ms, 3051ms total)
TCA28 106:492 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3052ms total)
TCA28 106:493 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3052ms total)
TCA28 106:493 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CC 42  returns 0x04 (0001ms, 3053ms total)
TCA28 106:501 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3054ms total)
TCA28 106:509 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3055ms total)
TCA28 106:517 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3056ms total)
TCA28 106:518 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3056ms total)
TCA28 106:518 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3057ms total)
TCA28 106:519 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 3057ms total)
TCA28 106:519 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 3058ms total)
TCA28 106:520 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3059ms total)
TCA28 106:521 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2C 44 00 00  returns 0x04 (0001ms, 3060ms total)
TCA28 106:529 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3061ms total)
TCA28 106:530 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: DB 0D  returns 0x02 (0000ms, 3061ms total)
T7D8C 106:552 JLINK_IsHalted()  returns FALSE (0001ms, 3062ms total)
T7D8C 106:654 JLINK_IsHalted()  returns FALSE (0000ms, 3061ms total)
T7D8C 106:756 JLINK_IsHalted()  returns FALSE (0000ms, 3061ms total)
T7D8C 106:857 JLINK_IsHalted()  returns FALSE (0000ms, 3061ms total)
TCA28 106:958 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3062ms total)
TCA28 106:967 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 3062ms total)
TCA28 106:967 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3063ms total)
TCA28 106:968 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 3064ms total)
TCA28 106:969 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0001ms, 3065ms total)
TCA28 106:977 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0001ms, 3066ms total)
TCA28 106:992 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5A  returns 0x01 (0001ms, 3067ms total)
TCA28 106:993 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3067ms total)
TCA28 106:993 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3068ms total)
TCA28 106:994 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0001ms, 3069ms total)
TCA28 107:002 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3070ms total)
TCA28 107:010 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 3070ms total)
TCA28 107:010 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3071ms total)
TCA28 107:011 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3072ms total)
TCA28 107:012 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 3072ms total)
TCA28 107:012 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3073ms total)
TCA28 107:013 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 3074ms total)
TCA28 107:014 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3075ms total)
TCA28 107:015 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2C 44 00 00  returns 0x04 (0000ms, 3075ms total)
TCA28 107:015 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3076ms total)
TCA28 107:016 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: EA 0D  returns 0x02 (0000ms, 3076ms total)
T7D8C 107:038 JLINK_IsHalted()  returns FALSE (0001ms, 3077ms total)
T7D8C 107:140 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T7D8C 107:241 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T7D8C 107:342 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T7D8C 107:443 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
TCA28 107:545 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3076ms total)
TCA28 107:545 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3077ms total)
TCA28 107:546 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3078ms total)
TCA28 107:547 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3078ms total)
TCA28 107:547 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0001ms, 3079ms total)
TCA28 107:556 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0001ms, 3080ms total)
TCA28 107:572 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5A  returns 0x01 (0001ms, 3081ms total)
TCA28 107:573 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3081ms total)
TCA28 107:573 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3082ms total)
TCA28 107:574 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 CE 42  returns 0x04 (0000ms, 3082ms total)
TCA28 107:582 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3083ms total)
TCA28 107:590 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3084ms total)
TCA28 107:591 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 3084ms total)
TCA28 107:591 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3085ms total)
TCA28 107:592 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3086ms total)
TCA28 107:593 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 3086ms total)
TCA28 107:593 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 02 00 51 00 01 8C FE 00 00 00 ...  returns 0x20 (0001ms, 3087ms total)
TCA28 107:594 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3088ms total)
TCA28 107:595 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2C 44 00 00  returns 0x04 (0001ms, 3089ms total)
TCA28 107:596 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 3089ms total)
TCA28 107:596 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: F7 0D  returns 0x02 (0001ms, 3090ms total)
T7D8C 107:619 JLINK_IsHalted()  returns FALSE (0001ms, 3091ms total)
T7D8C 107:720 JLINK_IsHalted()  returns FALSE (0000ms, 3090ms total)
T7D8C 107:821 JLINK_IsHalted()  returns FALSE (0000ms, 3090ms total)
T7D8C 107:923 JLINK_IsHalted()  returns FALSE (0000ms, 3090ms total)
T7D8C 108:024 JLINK_IsHalted()  returns FALSE (0000ms, 3090ms total)
TCA28 108:126 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3090ms total)
TCA28 108:126 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3091ms total)
TCA28 108:127 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3092ms total)
TCA28 108:128 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3092ms total)
TCA28 108:128 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3093ms total)
TCA28 108:137 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3094ms total)
TCA28 108:152 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5B  returns 0x01 (0001ms, 3095ms total)
TCA28 108:160 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3096ms total)
TCA28 108:161 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3097ms total)
TCA28 108:162 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3098ms total)
TCA28 108:170 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3098ms total)
TCA28 108:177 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 3098ms total)
TCA28 108:184 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3099ms total)
TCA28 108:185 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3100ms total)
TCA28 108:186 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 3100ms total)
TCA28 108:186 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3101ms total)
TCA28 108:187 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F7 26 51 00 00 72 FD 00 00 00 ...  returns 0x20 (0001ms, 3102ms total)
TCA28 108:188 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3103ms total)
TCA28 108:189 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 01 44 00 00  returns 0x04 (0000ms, 3103ms total)
TCA28 108:197 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 3103ms total)
TCA28 108:197 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 05 0E  returns 0x02 (0001ms, 3104ms total)
T7D8C 108:220 JLINK_IsHalted()  returns FALSE (0001ms, 3105ms total)
T7D8C 108:322 JLINK_IsHalted()  returns FALSE (0000ms, 3104ms total)
T7D8C 108:423 JLINK_IsHalted()  returns FALSE (0000ms, 3104ms total)
T7D8C 108:524 JLINK_IsHalted()  returns FALSE (0000ms, 3104ms total)
T7D8C 108:626 JLINK_IsHalted()  returns FALSE (0000ms, 3104ms total)
TCA28 108:727 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3104ms total)
TCA28 108:727 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3105ms total)
TCA28 108:728 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3106ms total)
TCA28 108:729 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3106ms total)
TCA28 108:729 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3107ms total)
TCA28 108:738 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3108ms total)
TCA28 108:753 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5B  returns 0x01 (0001ms, 3109ms total)
TCA28 108:761 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3110ms total)
TCA28 108:762 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3110ms total)
TCA28 108:762 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D0 42  returns 0x04 (0001ms, 3111ms total)
TCA28 108:770 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3112ms total)
TCA28 108:778 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 06  returns 0x01 (0000ms, 3112ms total)
TCA28 108:785 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3113ms total)
TCA28 108:786 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3114ms total)
TCA28 108:787 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 3114ms total)
TCA28 108:787 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3115ms total)
TCA28 108:788 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 F7 26 51 00 00 72 FD 00 00 00 ...  returns 0x20 (0001ms, 3116ms total)
TCA28 108:789 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3117ms total)
TCA28 108:790 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 01 44 00 00  returns 0x04 (0000ms, 3117ms total)
TCA28 108:798 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 3117ms total)
TCA28 108:798 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 15 0E  returns 0x02 (0001ms, 3118ms total)
T7D8C 108:820 JLINK_IsHalted()  returns FALSE (0001ms, 3119ms total)
T7D8C 108:922 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
T7D8C 109:024 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
T7D8C 109:125 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
T7D8C 109:226 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
TCA28 109:327 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3118ms total)
TCA28 109:327 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3119ms total)
TCA28 109:328 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3120ms total)
TCA28 109:329 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0001ms, 3121ms total)
TCA28 109:330 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D2 42  returns 0x04 (0000ms, 3121ms total)
TCA28 109:338 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D2 42  returns 0x04 (0002ms, 3123ms total)
TCA28 109:354 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5C  returns 0x01 (0001ms, 3124ms total)
TCA28 109:362 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3125ms total)
TCA28 109:363 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3126ms total)
TCA28 109:364 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D2 42  returns 0x04 (0000ms, 3126ms total)
TCA28 109:372 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3126ms total)
TCA28 109:380 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0000ms, 3126ms total)
TCA28 109:387 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3127ms total)
TCA28 109:388 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3128ms total)
TCA28 109:389 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 3128ms total)
TCA28 109:389 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3129ms total)
TCA28 109:390 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 3130ms total)
TCA28 109:391 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3131ms total)
TCA28 109:392 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0000ms, 3131ms total)
TCA28 109:400 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3132ms total)
TCA28 109:401 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 26 0E  returns 0x02 (0000ms, 3132ms total)
T7D8C 109:423 JLINK_IsHalted()  returns FALSE (0000ms, 3132ms total)
T7D8C 109:524 JLINK_IsHalted()  returns FALSE (0000ms, 3132ms total)
T7D8C 109:625 JLINK_IsHalted()  returns FALSE (0000ms, 3132ms total)
T7D8C 109:727 JLINK_IsHalted()  returns FALSE (0001ms, 3133ms total)
T7D8C 109:829 JLINK_IsHalted()  returns FALSE (0000ms, 3132ms total)
TCA28 109:930 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3132ms total)
TCA28 109:930 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3133ms total)
TCA28 109:931 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3134ms total)
TCA28 109:932 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3134ms total)
TCA28 109:932 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0001ms, 3135ms total)
TCA28 109:950 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0001ms, 3136ms total)
TCA28 109:973 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5C  returns 0x01 (0000ms, 3136ms total)
TCA28 109:980 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3137ms total)
TCA28 109:981 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 3138ms total)
TCA28 109:982 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0000ms, 3138ms total)
TCA28 109:997 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3139ms total)
TCA28 110:005 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3140ms total)
TCA28 110:013 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3141ms total)
TCA28 110:014 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3141ms total)
TCA28 110:014 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3142ms total)
TCA28 110:015 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3143ms total)
TCA28 110:016 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 3144ms total)
TCA28 110:017 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3144ms total)
TCA28 110:017 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0001ms, 3145ms total)
TCA28 110:025 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3146ms total)
TCA28 110:026 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 3D 0E  returns 0x02 (0001ms, 3147ms total)
T7D8C 110:049 JLINK_IsHalted()  returns FALSE (0001ms, 3148ms total)
T7D8C 110:152 JLINK_IsHalted()  returns FALSE (0000ms, 3147ms total)
T7D8C 110:253 JLINK_IsHalted()  returns FALSE (0000ms, 3147ms total)
T7D8C 110:354 JLINK_IsHalted()  returns FALSE (0000ms, 3147ms total)
TCA28 110:455 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3148ms total)
TCA28 110:456 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3149ms total)
TCA28 110:457 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3150ms total)
TCA28 110:458 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 1D FD 82 40  returns 0x04 (0000ms, 3150ms total)
TCA28 110:458 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0001ms, 3151ms total)
TCA28 110:466 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0001ms, 3152ms total)
TCA28 110:481 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5C  returns 0x01 (0001ms, 3153ms total)
TCA28 110:482 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3154ms total)
TCA28 110:483 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3154ms total)
TCA28 110:483 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D4 42  returns 0x04 (0002ms, 3156ms total)
TCA28 110:492 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 3157ms total)
TCA28 110:500 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3158ms total)
TCA28 110:501 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3159ms total)
TCA28 110:502 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 3159ms total)
TCA28 110:502 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3160ms total)
TCA28 110:503 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 3161ms total)
TCA28 110:504 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 01 00 51 00 01 8D FE 00 00 00 ...  returns 0x20 (0001ms, 3162ms total)
TCA28 110:505 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 3162ms total)
TCA28 110:505 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2E 44 00 00  returns 0x04 (0001ms, 3163ms total)
TCA28 110:506 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3164ms total)
TCA28 110:507 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 52 0E  returns 0x02 (0000ms, 3164ms total)
T7D8C 110:529 JLINK_IsHalted()  returns FALSE (0001ms, 3165ms total)
T7D8C 110:631 JLINK_IsHalted()  returns FALSE (0000ms, 3164ms total)
T7D8C 110:732 JLINK_IsHalted()  returns FALSE (0000ms, 3164ms total)
T7D8C 110:833 JLINK_IsHalted()  returns FALSE (0000ms, 3164ms total)
T7D8C 110:935 JLINK_IsHalted()  returns FALSE (0000ms, 3164ms total)
TCA28 111:036 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3164ms total)
TCA28 111:036 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 3165ms total)
TCA28 111:037 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 62  returns 0x01 (0001ms, 3166ms total)
TCA28 111:038 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: BB E2 82 40  returns 0x04 (0000ms, 3166ms total)
TCA28 111:046 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D6 42  returns 0x04 (0001ms, 3167ms total)
TCA28 111:053 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D6 42  returns 0x04 (0001ms, 3168ms total)
TCA28 111:068 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 5D  returns 0x01 (0001ms, 3169ms total)
TCA28 111:076 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3170ms total)
TCA28 111:077 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 3170ms total)
TCA28 111:077 JLINK_ReadMemEx(0x200001C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001C0) - Data: 00 00 D6 42  returns 0x04 (0001ms, 3171ms total)
TCA28 111:086 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 3171ms total)
TCA28 111:093 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 3172ms total)
TCA28 111:094 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 3173ms total)
TCA28 111:095 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 3174ms total)
TCA28 111:096 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 3175ms total)
TCA28 111:097 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 3175ms total)
TCA28 111:097 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 59 00 04 27 51 00 00 64 FE 00 00 00 ...  returns 0x20 (0001ms, 3176ms total)
TCA28 111:098 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 3177ms total)
TCA28 111:099 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2F 44 00 00  returns 0x04 (0001ms, 3178ms total)
TCA28 111:107 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 3179ms total)
TCA28 111:108 JLINK_ReadMemEx(0x200000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E2) - Data: 70 0E  returns 0x02 (0001ms, 3180ms total)
T7D8C 111:131 JLINK_IsHalted()  returns FALSE (0001ms, 3181ms total)
T7D8C 111:232 JLINK_IsHalted()  returns FALSE (0000ms, 3180ms total)
T7D8C 111:334 JLINK_IsHalted()  returns FALSE (0000ms, 3180ms total)
T7D8C 111:435 JLINK_IsHalted()  returns FALSE (0000ms, 3180ms total)
T7D8C 111:536 JLINK_Halt()  returns 0x00 (0003ms, 3183ms total)
T7D8C 111:539 JLINK_IsHalted()  returns TRUE (0000ms, 3183ms total)
T7D8C 111:539 JLINK_IsHalted()  returns TRUE (0000ms, 3183ms total)
T7D8C 111:539 JLINK_IsHalted()  returns TRUE (0000ms, 3183ms total)
T7D8C 111:539 JLINK_ReadReg(R15 (PC))  returns 0x080051F4 (0000ms, 3183ms total)
T7D8C 111:539 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 3183ms total)
T7D8C 111:539 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0002ms, 3185ms total)
T7D8C 111:541 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 3185ms total)
T7D8C 111:541 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 3186ms total)
TCA28 112:113 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> (0022ms, 3208ms total)
TCA28 112:113  (0022ms, 3208ms total)
TCA28 112:113 Closed (0022ms, 3208ms total)