WXK
2025-02-11 e328ebef585cea2351b37117b2d5ac4978ecd3c0
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
 
T2B58 000:044 SEGGER J-Link V6.20g Log File (0001ms, 0022ms total)
T2B58 000:044 DLL Compiled: Oct 20 2017 17:09:27 (0001ms, 0022ms total)
T2B58 000:044 Logging started @ 2025-02-07 17:58 (0001ms, 0022ms total)
T2B58 000:045 JLINK_SetWarnOutHandler(...) (0000ms, 0022ms total)
T2B58 000:045 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 (0015ms, 0037ms total)
T2B58 000:045 WEBSRV Webserver running on local port 19080 (0015ms, 0037ms total)
T2B58 000:045   returns O.K. (0015ms, 0037ms total)
T2B58 000:060 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0037ms total)
T2B58 000:060 JLINK_TIF_GetAvailable(...) (0001ms, 0038ms total)
T2B58 000:061 JLINK_SetErrorOutHandler(...) (0000ms, 0038ms total)
T2B58 000:061 JLINK_ExecCommand("ProjectFile = "D:\zhangbo\2024\Code\ChinaUWB\ChinaUWBProject-biaoqian-RX - BT - ceshiban\keil\JLinkSettings.ini"", ...). D:\keil\ARM\Segger\JLinkDevices.xml evaluated successfully.
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0x00 (0079ms, 0117ms total)
T2B58 000:140 JLINK_ExecCommand("Device = MK8000", ...). 
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0xFFFFFFFF (0000ms, 0117ms total)
T2B58 000:140 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0117ms total)
T2B58 000:140 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0117ms total)
T2B58 000:140 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0117ms total)
T2B58 000:140 JLINK_GetFirmwareString(...) (0000ms, 0117ms total)
T2B58 000:140 JLINK_GetDLLVersion()  returns 62007 (0001ms, 0118ms total)
T2B58 000:141 JLINK_GetCompileDateTime() (0000ms, 0118ms total)
T2B58 000:141 JLINK_GetFirmwareString(...) (0000ms, 0118ms total)
T2B58 000:141 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0118ms total)
T2B58 000:141 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0120ms total)
T2B58 000:143 JLINK_SetSpeed(10000) (0000ms, 0120ms total)
T2B58 000:143 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian.
Identified core does not match configuration. (Found: Cortex-M0, Configured: Cortex-M4) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000)
 -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0153ms, 0273ms total)
T2B58 000:296 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0273ms total)
T2B58 000:296 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0273ms total)
T2B58 000:296 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 0274ms total)
T2B58 000:297 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0274ms total)
T2B58 000:297 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0274ms total)
T2B58 000:297 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, 0275ms total)
T2B58 000:298 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0275ms total)
T2B58 000:298 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0275ms total)
T2B58 000:298 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, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDebugInfo(0x01 = Unknown)  returns 0xFFFFFFFF (0000ms, 0276ms total)
T2B58 000:299 JLINK_GetDeviceFamily()  returns 6 (0000ms, 0276ms total)
T2B58 000:299 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0277ms total)
T2B58 000:300 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0277ms total)
T2B58 000:300 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0277ms total)
T2B58 000:300 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0076ms, 0353ms total)
T2B58 000:376 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0353ms total)
T2B58 000:376 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0353ms total)
T2B58 000:376 JLINK_Halt()  returns 0x00 (0000ms, 0353ms total)
T2B58 000:376 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0354ms total)
T2B58 000:377 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0355ms total)
T2B58 000:378 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0356ms total)
T2B58 000:379 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0357ms total)
T2B58 000:380 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0357ms total)
T2B58 000:380 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0357ms total)
T2B58 000:380 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0357ms total)
T2B58 000:380 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0357ms total)
T2B58 000:380 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0358ms total)
T2B58 000:381 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0358ms total)
T2B58 000:381 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0358ms total)
T2B58 000:471 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0358ms total)
T2B58 000:471 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0075ms, 0433ms total)
T2B58 000:546 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0433ms total)
T2B58 000:546 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0433ms total)
T2B58 000:546 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0435ms total)
T2B58 000:548 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0436ms total)
T2B58 000:549 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0437ms total)
T2B58 002:717 JLINK_ReadReg(R0)  returns 0x50002000 (0001ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R1)  returns 0x00004020 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R2)  returns 0x00000009 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R3)  returns 0x00000200 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R4)  returns 0x00014FC4 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R6)  returns 0x00014FC4 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R14)  returns 0x0000AFE5 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0438ms total)
T2B58 002:718 JLINK_ReadMemEx(0x0201A1E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A1E8) - Data: 00  returns 0x01 (0001ms, 0439ms total)
T2B58 002:719 JLINK_ReadMemEx(0x0201A1E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A1E8) - Data: 00  returns 0x01 (0001ms, 0440ms total)
T2B58 002:720 JLINK_ReadMemEx(0x0201A1E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A1E8) - Data: 00  returns 0x01 (0001ms, 0441ms total)
T2B58 002:724 JLINK_ReadMemEx(0x0201BE28, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BE28) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0442ms total)
T2B58 002:727 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0443ms total)
T2B58 002:728 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0444ms total)
T2B58 002:729 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0445ms total)
T2B58 002:731 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0446ms total)
T2B58 002:732 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0447ms total)
T2B58 002:733 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0448ms total)
T2B58 002:735 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0449ms total)
T2B58 002:736 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0450ms total)
T2B58 002:737 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0451ms total)
T2B58 002:739 JLINK_ReadMemEx(0x0201A0BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0BC) - Data: 02 00 00 00  returns 0x04 (0001ms, 0452ms total)
T2B58 002:740 JLINK_ReadMemEx(0x0201A0BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0BC) - Data: 02 00 00 00  returns 0x04 (0001ms, 0453ms total)
T2B58 002:741 JLINK_ReadMemEx(0x0201A0BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0BC) - Data: 02 00 00 00  returns 0x04 (0001ms, 0454ms total)
T2B58 002:744 JLINK_ReadMemEx(0x0201C79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C79C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0455ms total)
T2B58 002:745 JLINK_ReadMemEx(0x0201C79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C79C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0456ms total)
T2B58 002:746 JLINK_ReadMemEx(0x0201C79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C79C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0457ms total)
T2B58 002:748 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0458ms total)
T2B58 002:749 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0459ms total)
T2B58 002:750 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0460ms total)
T2B58 002:751 JLINK_ReadMemEx(0x0201BD90, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BD90) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0462ms total)
T2B58 002:755 JLINK_ReadMemEx(0x020193E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193E9) - Data: 01  returns 0x01 (0001ms, 0463ms total)
T2B58 002:756 JLINK_ReadMemEx(0x020193E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193E9) - Data: 01  returns 0x01 (0001ms, 0464ms total)
T2B58 002:757 JLINK_ReadMemEx(0x020193E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193E9) - Data: 01  returns 0x01 (0001ms, 0465ms total)
T2B58 002:759 JLINK_ReadMemEx(0x0201CFF0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201CFF0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0466ms total)
T2B58 002:760 JLINK_ReadMemEx(0x0201CFF0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201CFF0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0467ms total)
T2B58 002:761 JLINK_ReadMemEx(0x0201CFF0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201CFF0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0468ms total)
T2B58 002:762 JLINK_ReadMemEx(0x0201BCB0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201BCB0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0470ms total)
T2B58 002:764 JLINK_ReadMemEx(0x0201BCB0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201BCB0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0471ms total)
T2B58 002:765 JLINK_ReadMemEx(0x0201BCB0, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201BCB0) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0472ms total)
T2B58 002:767 JLINK_ReadMemEx(0x0201C340, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C340) - Data: 00 00 00 00  returns 0x04 (0001ms, 0473ms total)
T2B58 002:768 JLINK_ReadMemEx(0x0201C340, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C340) - Data: 00 00 00 00  returns 0x04 (0001ms, 0474ms total)
T2B58 002:769 JLINK_ReadMemEx(0x0201C340, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C340) - Data: 00 00 00 00  returns 0x04 (0001ms, 0475ms total)
T2B58 002:773 JLINK_ReadMemEx(0x0201CFE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201CFE4) - Data: 00 00  returns 0x02 (0001ms, 0476ms total)
T2B58 002:774 JLINK_ReadMemEx(0x0201CFE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201CFE4) - Data: 00 00  returns 0x02 (0001ms, 0477ms total)
T2B58 002:775 JLINK_ReadMemEx(0x0201CFE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201CFE4) - Data: 00 00  returns 0x02 (0001ms, 0478ms total)
T2B58 002:777 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0479ms total)
T2B58 002:778 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0480ms total)
T2B58 002:779 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0481ms total)
T2B58 002:781 JLINK_ReadMemEx(0x0201C7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0482ms total)
T2B58 002:782 JLINK_ReadMemEx(0x0201C7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0483ms total)
T2B58 002:783 JLINK_ReadMemEx(0x0201C7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0484ms total)
T2B58 002:784 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0485ms total)
T2B58 002:785 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0486ms total)
T2B58 002:786 JLINK_ReadMemEx(0x0201C7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C7A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0487ms total)
T2B58 002:789 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0488ms total)
T2B58 002:790 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0489ms total)
T2B58 002:791 JLINK_ReadMemEx(0x0201A578, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A578) - Data: 00 00 00 00  returns 0x04 (0001ms, 0490ms total)
T2B58 002:792 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0491ms total)
T2B58 002:793 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0492ms total)
T2B58 002:794 JLINK_ReadMemEx(0x0201AAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0493ms total)
T2B58 002:796 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0494ms total)
T2B58 002:803 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0495ms total)
T2B58 002:804 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0496ms total)
T2B58 002:813 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0497ms total)
T2B58 002:814 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0498ms total)
T2B58 002:815 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0499ms total)
T2B58 002:821 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0500ms total)
T2B58 002:822 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0501ms total)
T2B58 002:823 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0502ms total)
T2B58 002:829 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 01 00 00 00 00 00 15 FE 00 00 ...  returns 0x20 (0002ms, 0504ms total)
T2B58 002:835 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0505ms total)
T2B58 002:836 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0506ms total)
T2B58 002:837 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0507ms total)
T2B58 002:848 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 02 00  returns 0x02 (0001ms, 0508ms total)
T2B58 002:849 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 02 00  returns 0x02 (0001ms, 0509ms total)
T2B58 002:850 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 02 00  returns 0x02 (0001ms, 0510ms total)
T2B58 002:855 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0511ms total)
T2B58 002:856 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0512ms total)
T2B58 002:857 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0513ms total)
T2B58 002:882 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0514ms total)
T2B58 002:883 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0515ms total)
T2B58 002:884 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0516ms total)
T2B58 002:892 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0517ms total)
T2B58 002:893 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0518ms total)
T2B58 002:894 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0519ms total)
T2B58 002:901 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0520ms total)
T2B58 002:910 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0521ms total)
T2B58 002:911 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0522ms total)
T2B58 002:912 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0523ms total)
T2B58 002:920 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0524ms total)
T2B58 002:921 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0525ms total)
T2B58 002:922 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0526ms total)
T661C 003:027 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0526ms total)
T661C 003:028 JLINK_SetBPEx(Addr = 0x0000AF38, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0527ms total)
T661C 003:028 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) (0006ms, 0533ms total)
T661C 003:134 JLINK_IsHalted()  returns TRUE (0004ms, 0537ms total)
T661C 003:138 JLINK_Halt()  returns 0x00 (0001ms, 0534ms total)
T661C 003:139 JLINK_IsHalted()  returns TRUE (0000ms, 0534ms total)
T661C 003:139 JLINK_IsHalted()  returns TRUE (0000ms, 0534ms total)
T661C 003:139 JLINK_IsHalted()  returns TRUE (0000ms, 0534ms total)
T661C 003:139 JLINK_ReadReg(R15 (PC))  returns 0x0000AF38 (0000ms, 0534ms total)
T661C 003:139 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0534ms total)
T661C 003:139 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0534ms total)
T661C 003:139 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0535ms total)
T661C 003:140 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0536ms total)
T661C 003:141 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R0)  returns 0x0000AF39 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R1)  returns 0x0201D004 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R3)  returns 0x00012A35 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R4)  returns 0x00014FC4 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R6)  returns 0x00014FC4 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R14)  returns 0x00001379 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(R15 (PC))  returns 0x0000AF38 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0537ms total)
T661C 003:142 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0537ms total)
T2B58 003:142 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0538ms total)
T2B58 003:144 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0539ms total)
T2B58 003:145 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0540ms total)
T2B58 003:146 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0541ms total)
T2B58 003:148 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0542ms total)
T2B58 003:149 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 00 00  returns 0x02 (0001ms, 0543ms total)
T2B58 003:151 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0544ms total)
T2B58 003:153 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0544ms total)
T2B58 003:154 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0546ms total)
T2B58 003:155 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0547ms total)
T2B58 003:157 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 00 00  returns 0x02 (0001ms, 0548ms total)
T2B58 003:158 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0549ms total)
T661C 003:754 JLINK_ReadMemEx(0x0000AF38, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000AF00) -- Updating DA cache (64 bytes @ 0x0000AF00) -- Read from DA cache (2 bytes @ 0x0000AF38) - Data: 80 B5  returns 0x02 (0002ms, 0551ms total)
T661C 003:756 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 0555ms total)
T661C 003:861 JLINK_IsHalted()  returns FALSE (0001ms, 0556ms total)
T661C 003:963 JLINK_IsHalted()  returns FALSE (0001ms, 0556ms total)
T661C 004:064 JLINK_IsHalted()  returns FALSE (0000ms, 0555ms total)
T661C 004:165 JLINK_IsHalted()  returns FALSE (0001ms, 0556ms total)
T2B58 004:266 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0556ms total)
T2B58 004:267 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0557ms total)
T2B58 004:268 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0558ms total)
T2B58 004:269 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0560ms total)
T2B58 004:271 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0561ms total)
T2B58 004:272 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 00 00  returns 0x02 (0001ms, 0562ms total)
T2B58 004:273 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0563ms total)
T2B58 004:275 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0564ms total)
T2B58 004:276 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0565ms total)
T2B58 004:277 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0566ms total)
T2B58 004:278 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 00 00  returns 0x02 (0001ms, 0567ms total)
T2B58 004:280 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 00 00 00 00  returns 0x04 (0003ms, 0570ms total)
T661C 004:284 JLINK_IsHalted()  returns FALSE (0001ms, 0571ms total)
T661C 004:386 JLINK_IsHalted()  returns FALSE (0001ms, 0571ms total)
T661C 004:488 JLINK_IsHalted()  returns FALSE (0001ms, 0571ms total)
T661C 004:590 JLINK_IsHalted()  returns FALSE (0001ms, 0571ms total)
T661C 004:691 JLINK_IsHalted()  returns FALSE (0000ms, 0570ms total)
T2B58 004:792 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0571ms total)
T2B58 004:794 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0572ms total)
T2B58 004:795 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0573ms total)
T2B58 004:796 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0574ms total)
T2B58 004:797 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0575ms total)
T2B58 004:798 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 00 00  returns 0x02 (0001ms, 0576ms total)
T2B58 004:799 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0577ms total)
T2B58 004:801 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0578ms total)
T2B58 004:802 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0579ms total)
T2B58 004:804 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0581ms total)
T2B58 004:806 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 00 00  returns 0x02 (0001ms, 0582ms total)
T2B58 004:807 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0583ms total)
T661C 004:808 JLINK_IsHalted()  returns FALSE (0001ms, 0584ms total)
T661C 004:909 JLINK_IsHalted()  returns FALSE (0001ms, 0584ms total)
T661C 005:011 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
T661C 005:113 JLINK_IsHalted()  returns FALSE (0000ms, 0583ms total)
T661C 005:214 JLINK_IsHalted()  returns FALSE (0001ms, 0584ms total)
T2B58 005:315 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0584ms total)
T2B58 005:316 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0585ms total)
T2B58 005:317 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0586ms total)
T2B58 005:318 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 01 00 00 00 00 00 15 FE 00 00 ...  returns 0x20 (0002ms, 0588ms total)
T2B58 005:320 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0589ms total)
T2B58 005:321 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 02 00  returns 0x02 (0001ms, 0590ms total)
T2B58 005:323 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0591ms total)
T2B58 005:324 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0592ms total)
T2B58 005:325 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0593ms total)
T2B58 005:326 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 0595ms total)
T2B58 005:328 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0002ms, 0597ms total)
T2B58 005:330 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0598ms total)
T661C 005:331 JLINK_IsHalted()  returns FALSE (0001ms, 0599ms total)
T661C 005:432 JLINK_IsHalted()  returns FALSE (0001ms, 0599ms total)
T661C 005:534 JLINK_IsHalted()  returns FALSE (0001ms, 0599ms total)
T661C 005:635 JLINK_IsHalted()  returns FALSE (0001ms, 0599ms total)
T661C 005:737 JLINK_IsHalted()  returns FALSE (0001ms, 0599ms total)
T2B58 005:838 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 01 00 00 00  returns 0x04 (0002ms, 0600ms total)
T2B58 005:841 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0002ms, 0602ms total)
T2B58 005:843 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 01 00 00 00  returns 0x04 (0001ms, 0603ms total)
T2B58 005:845 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 01 00 00 00 00 00 15 FE 00 00 ...  returns 0x20 (0001ms, 0604ms total)
T2B58 005:846 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0605ms total)
T2B58 005:848 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 02 00  returns 0x02 (0001ms, 0606ms total)
T2B58 005:849 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 00 00  returns 0x02 (0001ms, 0607ms total)
T2B58 005:850 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 03 00 00 00  returns 0x04 (0001ms, 0608ms total)
T2B58 005:852 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0609ms total)
T2B58 005:853 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0610ms total)
T2B58 005:855 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0611ms total)
T2B58 005:856 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0612ms total)
T661C 005:857 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T661C 005:959 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T661C 006:061 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T661C 006:162 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T661C 006:263 JLINK_IsHalted()  returns FALSE (0001ms, 0613ms total)
T2B58 006:364 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 01 00 00 00  returns 0x04 (0001ms, 0613ms total)
T2B58 006:366 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0614ms total)
T2B58 006:367 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 01 00 00 00  returns 0x04 (0001ms, 0615ms total)
T2B58 006:369 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 33 0E 89 67 33 98 0B 01 43 E1 00 00 15 FE C0 FB ...  returns 0x20 (0001ms, 0616ms total)
T2B58 006:371 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0617ms total)
T2B58 006:372 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 03 00  returns 0x02 (0001ms, 0618ms total)
T2B58 006:374 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 01 00  returns 0x02 (0001ms, 0619ms total)
T2B58 006:376 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 03 00 00 00  returns 0x04 (0001ms, 0620ms total)
T2B58 006:377 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0621ms total)
T2B58 006:378 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0003ms, 0624ms total)
T2B58 006:381 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0625ms total)
T2B58 006:382 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0626ms total)
T661C 006:383 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T661C 006:486 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T661C 006:587 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T661C 006:688 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T661C 006:790 JLINK_IsHalted()  returns FALSE (0001ms, 0627ms total)
T2B58 006:891 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 01 00 00 00  returns 0x04 (0001ms, 0627ms total)
T2B58 006:892 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0628ms total)
T2B58 006:893 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 01 00 00 00  returns 0x04 (0001ms, 0629ms total)
T2B58 006:894 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 33 0E 89 67 33 98 0B 01 43 E1 00 00 15 FE C0 FB ...  returns 0x20 (0002ms, 0631ms total)
T2B58 006:896 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0632ms total)
T2B58 006:897 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 03 00  returns 0x02 (0001ms, 0633ms total)
T2B58 006:898 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 01 00  returns 0x02 (0001ms, 0634ms total)
T2B58 006:900 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 04 00 00 00  returns 0x04 (0001ms, 0635ms total)
T2B58 006:901 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 02 00 00 00  returns 0x04 (0001ms, 0636ms total)
T2B58 006:902 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 0638ms total)
T2B58 006:904 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0639ms total)
T2B58 006:905 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0640ms total)
T661C 006:906 JLINK_IsHalted()  returns FALSE (0001ms, 0641ms total)
T661C 007:008 JLINK_IsHalted()  returns FALSE (0001ms, 0641ms total)
T661C 007:110 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T661C 007:211 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T661C 007:312 JLINK_IsHalted()  returns FALSE (0001ms, 0641ms total)
T2B58 007:414 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 01 00 00 00  returns 0x04 (0001ms, 0641ms total)
T2B58 007:416 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0642ms total)
T2B58 007:417 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 01 00 00 00  returns 0x04 (0001ms, 0643ms total)
T2B58 007:418 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 02 00 43 E1 00 00 F0 FC C0 FB ...  returns 0x20 (0001ms, 0644ms total)
T2B58 007:420 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0645ms total)
T2B58 007:421 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 04 00  returns 0x02 (0001ms, 0646ms total)
T2B58 007:422 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0647ms total)
T2B58 007:424 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 04 00 00 00  returns 0x04 (0001ms, 0648ms total)
T2B58 007:425 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 02 00 00 00  returns 0x04 (0001ms, 0649ms total)
T2B58 007:426 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0650ms total)
T2B58 007:427 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0651ms total)
T2B58 007:428 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0652ms total)
T661C 007:429 JLINK_IsHalted()  returns FALSE (0001ms, 0653ms total)
T661C 007:531 JLINK_IsHalted()  returns FALSE (0001ms, 0653ms total)
T661C 007:634 JLINK_IsHalted()  returns FALSE (0001ms, 0653ms total)
T661C 007:735 JLINK_IsHalted()  returns FALSE (0001ms, 0653ms total)
T661C 007:836 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T2B58 007:938 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 02 00 00 00  returns 0x04 (0001ms, 0653ms total)
T2B58 007:941 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0654ms total)
T2B58 007:942 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0655ms total)
T2B58 007:943 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 02 00 43 E1 00 00 F0 FC C0 FB ...  returns 0x20 (0002ms, 0657ms total)
T2B58 007:945 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0658ms total)
T2B58 007:946 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 04 00  returns 0x02 (0001ms, 0659ms total)
T2B58 007:947 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 0661ms total)
T2B58 007:951 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 05 00 00 00  returns 0x04 (0001ms, 0662ms total)
T2B58 007:952 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 03 00 00 00  returns 0x04 (0001ms, 0663ms total)
T2B58 007:954 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0664ms total)
T2B58 007:955 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0665ms total)
T2B58 007:956 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0666ms total)
T661C 007:957 JLINK_IsHalted()  returns FALSE (0001ms, 0667ms total)
T661C 008:059 JLINK_IsHalted()  returns FALSE (0000ms, 0666ms total)
T661C 008:160 JLINK_IsHalted()  returns FALSE (0001ms, 0667ms total)
T661C 008:261 JLINK_IsHalted()  returns FALSE (0001ms, 0667ms total)
T661C 008:363 JLINK_IsHalted()  returns FALSE (0001ms, 0667ms total)
T2B58 008:464 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 02 00 00 00  returns 0x04 (0001ms, 0667ms total)
T2B58 008:466 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0668ms total)
T2B58 008:467 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 02 00 00 00  returns 0x04 (0001ms, 0669ms total)
T2B58 008:468 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 05 00 43 E1 00 00 ED FC C0 FB ...  returns 0x20 (0002ms, 0671ms total)
T2B58 008:470 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0672ms total)
T2B58 008:471 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 07 00  returns 0x02 (0001ms, 0673ms total)
T2B58 008:473 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 0673ms total)
T2B58 008:474 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 08 00 00 00  returns 0x04 (0001ms, 0674ms total)
T2B58 008:475 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 03 00 00 00  returns 0x04 (0001ms, 0675ms total)
T2B58 008:476 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 92 22 47 00 00 33 FD 00 00 00 ...  returns 0x20 (0002ms, 0677ms total)
T2B58 008:478 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 92 22  returns 0x02 (0001ms, 0678ms total)
T2B58 008:479 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: FA 70 00 00  returns 0x04 (0001ms, 0679ms total)
T661C 008:480 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T661C 008:583 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T661C 008:685 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T661C 008:786 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T661C 008:887 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T2B58 008:989 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 03 00 00 00  returns 0x04 (0001ms, 0680ms total)
T2B58 008:991 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0681ms total)
T2B58 008:992 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 03 00 00 00  returns 0x04 (0001ms, 0682ms total)
T2B58 008:993 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 05 00 43 E1 00 00 ED FC C0 FB ...  returns 0x20 (0002ms, 0684ms total)
T2B58 008:995 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0685ms total)
T2B58 008:996 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 07 00  returns 0x02 (0001ms, 0686ms total)
T2B58 008:997 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0687ms total)
T2B58 008:998 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 09 00 00 00  returns 0x04 (0001ms, 0688ms total)
T2B58 009:000 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 04 00 00 00  returns 0x04 (0001ms, 0689ms total)
T2B58 009:001 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 92 22 47 00 00 33 FD 00 00 00 ...  returns 0x20 (0002ms, 0691ms total)
T2B58 009:003 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 92 22  returns 0x02 (0001ms, 0692ms total)
T2B58 009:005 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: FA 70 00 00  returns 0x04 (0001ms, 0693ms total)
T661C 009:007 JLINK_IsHalted()  returns FALSE (0001ms, 0694ms total)
T661C 009:108 JLINK_IsHalted()  returns FALSE (0001ms, 0694ms total)
T661C 009:209 JLINK_IsHalted()  returns FALSE (0001ms, 0694ms total)
T661C 009:311 JLINK_IsHalted()  returns FALSE (0001ms, 0694ms total)
T661C 009:412 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T2B58 009:514 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 03 00 00 00  returns 0x04 (0001ms, 0694ms total)
T2B58 009:516 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0695ms total)
T2B58 009:517 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 03 00 00 00  returns 0x04 (0001ms, 0696ms total)
T2B58 009:518 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 06 00 43 E1 00 00 EC FC C0 FB ...  returns 0x20 (0002ms, 0698ms total)
T2B58 009:520 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T2B58 009:522 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 08 00  returns 0x02 (0001ms, 0700ms total)
T2B58 009:523 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0701ms total)
T2B58 009:524 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0702ms total)
T2B58 009:527 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 04 00 00 00  returns 0x04 (0001ms, 0703ms total)
T2B58 009:528 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0704ms total)
T2B58 009:530 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0705ms total)
T2B58 009:531 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0706ms total)
T661C 009:532 JLINK_IsHalted()  returns FALSE (0001ms, 0707ms total)
T661C 009:635 JLINK_IsHalted()  returns FALSE (0001ms, 0707ms total)
T661C 009:736 JLINK_IsHalted()  returns FALSE (0001ms, 0707ms total)
T661C 009:837 JLINK_IsHalted()  returns FALSE (0001ms, 0707ms total)
T661C 009:938 JLINK_IsHalted()  returns FALSE (0001ms, 0707ms total)
T2B58 010:040 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 04 00 00 00  returns 0x04 (0001ms, 0707ms total)
T2B58 010:043 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 02 00 00 00  returns 0x04 (0001ms, 0708ms total)
T2B58 010:044 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 04 00 00 00  returns 0x04 (0001ms, 0709ms total)
T2B58 010:045 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 06 00 43 E1 00 00 EC FC C0 FB ...  returns 0x20 (0002ms, 0711ms total)
T2B58 010:047 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0712ms total)
T2B58 010:048 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 08 00  returns 0x02 (0001ms, 0713ms total)
T2B58 010:049 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0714ms total)
T2B58 010:051 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0715ms total)
T2B58 010:052 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 05 00 00 00  returns 0x04 (0001ms, 0716ms total)
T2B58 010:054 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0717ms total)
T2B58 010:056 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0718ms total)
T2B58 010:057 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0719ms total)
T661C 010:058 JLINK_IsHalted()  returns FALSE (0001ms, 0720ms total)
T661C 010:161 JLINK_IsHalted()  returns FALSE (0001ms, 0720ms total)
T661C 010:262 JLINK_IsHalted()  returns FALSE (0001ms, 0720ms total)
T661C 010:364 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T661C 010:466 JLINK_IsHalted()  returns FALSE (0001ms, 0720ms total)
T2B58 010:567 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 04 00 00 00  returns 0x04 (0001ms, 0720ms total)
T2B58 010:570 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 02 00 00 00  returns 0x04 (0001ms, 0721ms total)
T2B58 010:571 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 04 00 00 00  returns 0x04 (0002ms, 0723ms total)
T2B58 010:573 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 07 00 43 E1 00 00 EB FC C0 FB ...  returns 0x20 (0002ms, 0725ms total)
T2B58 010:575 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0726ms total)
T2B58 010:577 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 09 00  returns 0x02 (0001ms, 0727ms total)
T2B58 010:578 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0728ms total)
T2B58 010:579 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0729ms total)
T2B58 010:581 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 06 00 00 00  returns 0x04 (0001ms, 0730ms total)
T2B58 010:582 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 0732ms total)
T2B58 010:584 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0733ms total)
T2B58 010:586 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0734ms total)
T661C 010:587 JLINK_IsHalted()  returns FALSE (0001ms, 0735ms total)
T661C 010:689 JLINK_IsHalted()  returns FALSE (0001ms, 0735ms total)
T661C 010:790 JLINK_IsHalted()  returns FALSE (0001ms, 0735ms total)
T661C 010:892 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T661C 010:993 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T2B58 011:094 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 05 00 00 00  returns 0x04 (0001ms, 0735ms total)
T2B58 011:096 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 03 00 00 00  returns 0x04 (0001ms, 0736ms total)
T2B58 011:098 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 05 00 00 00  returns 0x04 (0001ms, 0737ms total)
T2B58 011:099 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 07 00 43 E1 00 00 EB FC C0 FB ...  returns 0x20 (0001ms, 0738ms total)
T2B58 011:100 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0739ms total)
T2B58 011:102 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 09 00  returns 0x02 (0001ms, 0740ms total)
T2B58 011:103 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0741ms total)
T2B58 011:104 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0742ms total)
T2B58 011:105 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 06 00 00 00  returns 0x04 (0001ms, 0743ms total)
T2B58 011:106 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 0745ms total)
T2B58 011:108 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0746ms total)
T2B58 011:109 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0747ms total)
T661C 011:110 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T661C 011:213 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T661C 011:314 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T661C 011:416 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T661C 011:517 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T2B58 011:619 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0748ms total)
T2B58 011:621 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 04 00 00 00  returns 0x04 (0001ms, 0749ms total)
T2B58 011:623 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 06 00 00 00  returns 0x04 (0001ms, 0750ms total)
T2B58 011:624 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 08 00 43 E1 00 00 EA FC C0 FB ...  returns 0x20 (0002ms, 0752ms total)
T2B58 011:626 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0753ms total)
T2B58 011:627 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0A 00  returns 0x02 (0001ms, 0754ms total)
T2B58 011:629 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0755ms total)
T2B58 011:631 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0756ms total)
T2B58 011:632 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 07 00 00 00  returns 0x04 (0001ms, 0757ms total)
T2B58 011:633 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 0759ms total)
T2B58 011:635 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0760ms total)
T2B58 011:636 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0761ms total)
T661C 011:638 JLINK_IsHalted()  returns FALSE (0001ms, 0762ms total)
T661C 011:739 JLINK_IsHalted()  returns FALSE (0001ms, 0762ms total)
T661C 011:841 JLINK_IsHalted()  returns FALSE (0001ms, 0762ms total)
T661C 011:942 JLINK_IsHalted()  returns FALSE (0001ms, 0762ms total)
T661C 012:045 JLINK_IsHalted()  returns FALSE (0001ms, 0762ms total)
T2B58 012:146 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0762ms total)
T2B58 012:148 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 04 00 00 00  returns 0x04 (0001ms, 0763ms total)
T2B58 012:149 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 06 00 00 00  returns 0x04 (0001ms, 0764ms total)
T2B58 012:150 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 08 00 43 E1 00 00 EA FC C0 FB ...  returns 0x20 (0002ms, 0766ms total)
T2B58 012:152 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0767ms total)
T2B58 012:153 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0A 00  returns 0x02 (0001ms, 0768ms total)
T2B58 012:155 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 0768ms total)
T2B58 012:156 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0769ms total)
T2B58 012:157 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 07 00 00 00  returns 0x04 (0001ms, 0770ms total)
T2B58 012:158 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 0772ms total)
T2B58 012:160 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0773ms total)
T2B58 012:161 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0774ms total)
T661C 012:162 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T661C 012:264 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T661C 012:366 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T661C 012:468 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T661C 012:570 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T2B58 012:672 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 07 00 00 00  returns 0x04 (0001ms, 0775ms total)
T2B58 012:674 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 05 00 00 00  returns 0x04 (0001ms, 0776ms total)
T2B58 012:675 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 07 00 00 00  returns 0x04 (0001ms, 0777ms total)
T2B58 012:676 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 09 00 43 E1 00 00 E9 FC C0 FB ...  returns 0x20 (0002ms, 0779ms total)
T2B58 012:678 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 0781ms total)
T2B58 012:680 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0B 00  returns 0x02 (0001ms, 0782ms total)
T2B58 012:681 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0783ms total)
T2B58 012:682 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 11 00 00 00  returns 0x04 (0001ms, 0784ms total)
T2B58 012:683 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 08 00 00 00  returns 0x04 (0001ms, 0785ms total)
T2B58 012:685 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0786ms total)
T2B58 012:687 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0788ms total)
T2B58 012:688 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0789ms total)
T661C 012:689 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T661C 012:791 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T661C 012:893 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T661C 012:994 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T661C 013:096 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T2B58 013:198 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 07 00 00 00  returns 0x04 (0000ms, 0789ms total)
T2B58 013:200 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 05 00 00 00  returns 0x04 (0001ms, 0790ms total)
T2B58 013:201 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 07 00 00 00  returns 0x04 (0001ms, 0791ms total)
T2B58 013:202 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 09 00 43 E1 00 00 E9 FC C0 FB ...  returns 0x20 (0002ms, 0793ms total)
T2B58 013:204 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0794ms total)
T2B58 013:205 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0B 00  returns 0x02 (0001ms, 0795ms total)
T2B58 013:207 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0796ms total)
T2B58 013:208 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 11 00 00 00  returns 0x04 (0001ms, 0797ms total)
T2B58 013:209 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 08 00 00 00  returns 0x04 (0001ms, 0798ms total)
T2B58 013:210 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0800ms total)
T2B58 013:212 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0801ms total)
T2B58 013:213 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0802ms total)
T661C 013:214 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T661C 013:316 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T661C 013:418 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T661C 013:520 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T661C 013:622 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T2B58 013:723 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 08 00 00 00  returns 0x04 (0001ms, 0803ms total)
T2B58 013:725 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 06 00 00 00  returns 0x04 (0001ms, 0804ms total)
T2B58 013:726 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 08 00 00 00  returns 0x04 (0001ms, 0805ms total)
T2B58 013:727 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0A 00 43 E1 00 00 E8 FC C0 FB ...  returns 0x20 (0002ms, 0807ms total)
T2B58 013:729 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0808ms total)
T2B58 013:731 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0C 00  returns 0x02 (0001ms, 0809ms total)
T2B58 013:732 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0810ms total)
T2B58 013:733 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 13 00 00 00  returns 0x04 (0001ms, 0811ms total)
T2B58 013:734 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0812ms total)
T2B58 013:735 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0814ms total)
T2B58 013:737 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0815ms total)
T2B58 013:739 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 0815ms total)
T661C 013:741 JLINK_IsHalted()  returns FALSE (0001ms, 0817ms total)
T661C 013:843 JLINK_IsHalted()  returns FALSE (0001ms, 0817ms total)
T661C 013:945 JLINK_IsHalted()  returns FALSE (0001ms, 0817ms total)
T661C 014:047 JLINK_IsHalted()  returns FALSE (0001ms, 0817ms total)
T661C 014:148 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T2B58 014:249 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 08 00 00 00  returns 0x04 (0001ms, 0817ms total)
T2B58 014:251 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 06 00 00 00  returns 0x04 (0001ms, 0818ms total)
T2B58 014:252 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 08 00 00 00  returns 0x04 (0001ms, 0819ms total)
T2B58 014:253 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0B 00 43 E1 00 00 E7 FC C0 FB ...  returns 0x20 (0002ms, 0821ms total)
T2B58 014:256 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 0821ms total)
T2B58 014:257 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0D 00  returns 0x02 (0001ms, 0823ms total)
T2B58 014:258 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0824ms total)
T2B58 014:259 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 14 00 00 00  returns 0x04 (0001ms, 0825ms total)
T2B58 014:261 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 09 00 00 00  returns 0x04 (0002ms, 0827ms total)
T2B58 014:263 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0828ms total)
T2B58 014:265 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0830ms total)
T2B58 014:268 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0831ms total)
T661C 014:269 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T661C 014:371 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T661C 014:473 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T661C 014:574 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T661C 014:676 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T2B58 014:778 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 09 00 00 00  returns 0x04 (0001ms, 0832ms total)
T2B58 014:780 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 07 00 00 00  returns 0x04 (0001ms, 0833ms total)
T2B58 014:781 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 09 00 00 00  returns 0x04 (0001ms, 0834ms total)
T2B58 014:782 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0B 00 43 E1 00 00 E7 FC C0 FB ...  returns 0x20 (0002ms, 0836ms total)
T2B58 014:784 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0837ms total)
T2B58 014:785 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0D 00  returns 0x02 (0001ms, 0838ms total)
T2B58 014:786 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0839ms total)
T2B58 014:788 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 15 00 00 00  returns 0x04 (0001ms, 0840ms total)
T2B58 014:789 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0841ms total)
T2B58 014:790 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0843ms total)
T2B58 014:792 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0844ms total)
T2B58 014:793 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0845ms total)
T661C 014:794 JLINK_IsHalted()  returns FALSE (0002ms, 0847ms total)
T661C 014:898 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T661C 014:999 JLINK_IsHalted()  returns FALSE (0001ms, 0846ms total)
T661C 015:101 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T661C 015:202 JLINK_IsHalted()  returns FALSE (0001ms, 0846ms total)
T2B58 015:303 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 09 00 00 00  returns 0x04 (0001ms, 0846ms total)
T2B58 015:305 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 07 00 00 00  returns 0x04 (0001ms, 0847ms total)
T2B58 015:307 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 09 00 00 00  returns 0x04 (0000ms, 0847ms total)
T2B58 015:308 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0C 00 43 E1 00 00 E6 FC C0 FB ...  returns 0x20 (0001ms, 0848ms total)
T2B58 015:310 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0849ms total)
T2B58 015:311 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0E 00  returns 0x02 (0001ms, 0850ms total)
T2B58 015:312 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0851ms total)
T2B58 015:314 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 16 00 00 00  returns 0x04 (0001ms, 0852ms total)
T2B58 015:315 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0853ms total)
T2B58 015:316 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0855ms total)
T2B58 015:318 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0856ms total)
T2B58 015:320 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0857ms total)
T661C 015:321 JLINK_IsHalted()  returns FALSE (0001ms, 0858ms total)
T661C 015:423 JLINK_IsHalted()  returns FALSE (0001ms, 0858ms total)
T661C 015:525 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T661C 015:626 JLINK_IsHalted()  returns FALSE (0001ms, 0858ms total)
T661C 015:728 JLINK_IsHalted()  returns FALSE (0001ms, 0858ms total)
T2B58 015:829 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0858ms total)
T2B58 015:831 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 08 00 00 00  returns 0x04 (0001ms, 0859ms total)
T2B58 015:832 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0860ms total)
T2B58 015:833 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0C 00 43 E1 00 00 E6 FC C0 FB ...  returns 0x20 (0002ms, 0862ms total)
T2B58 015:835 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0863ms total)
T2B58 015:836 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0E 00  returns 0x02 (0001ms, 0864ms total)
T2B58 015:837 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0865ms total)
T2B58 015:839 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 17 00 00 00  returns 0x04 (0001ms, 0866ms total)
T2B58 015:840 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0867ms total)
T2B58 015:841 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0869ms total)
T2B58 015:843 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0870ms total)
T2B58 015:846 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 0870ms total)
T661C 015:847 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T661C 015:949 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T661C 016:051 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T661C 016:152 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T661C 016:254 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T2B58 016:356 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0871ms total)
T2B58 016:358 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 08 00 00 00  returns 0x04 (0001ms, 0872ms total)
T2B58 016:359 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0873ms total)
T2B58 016:360 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0D 00 43 E1 00 00 E5 FC C0 FB ...  returns 0x20 (0002ms, 0875ms total)
T2B58 016:362 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0876ms total)
T2B58 016:364 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0F 00  returns 0x02 (0001ms, 0877ms total)
T2B58 016:365 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0878ms total)
T2B58 016:367 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 18 00 00 00  returns 0x04 (0001ms, 0879ms total)
T2B58 016:369 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0880ms total)
T2B58 016:370 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0881ms total)
T2B58 016:372 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0882ms total)
T2B58 016:373 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0883ms total)
T661C 016:374 JLINK_IsHalted()  returns FALSE (0001ms, 0884ms total)
T661C 016:476 JLINK_IsHalted()  returns FALSE (0001ms, 0884ms total)
T661C 016:577 JLINK_IsHalted()  returns FALSE (0001ms, 0884ms total)
T661C 016:678 JLINK_IsHalted()  returns FALSE (0001ms, 0884ms total)
T661C 016:780 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T2B58 016:881 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0884ms total)
T2B58 016:883 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0885ms total)
T2B58 016:884 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0886ms total)
T2B58 016:885 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0D 00 43 E1 00 00 E5 FC C0 FB ...  returns 0x20 (0002ms, 0888ms total)
T2B58 016:887 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0889ms total)
T2B58 016:888 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 0F 00  returns 0x02 (0001ms, 0890ms total)
T2B58 016:889 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0891ms total)
T2B58 016:891 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 19 00 00 00  returns 0x04 (0001ms, 0892ms total)
T2B58 016:892 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0893ms total)
T2B58 016:893 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0895ms total)
T2B58 016:896 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0000ms, 0895ms total)
T2B58 016:897 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0896ms total)
T661C 016:898 JLINK_IsHalted()  returns FALSE (0001ms, 0897ms total)
T661C 017:000 JLINK_IsHalted()  returns FALSE (0001ms, 0897ms total)
T661C 017:101 JLINK_IsHalted()  returns FALSE (0001ms, 0897ms total)
T661C 017:202 JLINK_IsHalted()  returns FALSE (0001ms, 0897ms total)
T661C 017:304 JLINK_IsHalted()  returns FALSE (0001ms, 0897ms total)
T2B58 017:407 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0897ms total)
T2B58 017:410 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0898ms total)
T2B58 017:411 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0899ms total)
T2B58 017:412 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0E 00 43 E1 00 00 E4 FC C0 FB ...  returns 0x20 (0002ms, 0901ms total)
T2B58 017:414 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0902ms total)
T2B58 017:415 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 10 00  returns 0x02 (0001ms, 0903ms total)
T2B58 017:416 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0904ms total)
T2B58 017:418 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1A 00 00 00  returns 0x04 (0001ms, 0905ms total)
T2B58 017:419 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0906ms total)
T2B58 017:420 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0908ms total)
T2B58 017:423 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0909ms total)
T2B58 017:424 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0910ms total)
T661C 017:425 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T661C 017:527 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T661C 017:628 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T661C 017:729 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T661C 017:830 JLINK_IsHalted()  returns FALSE (0001ms, 0911ms total)
T2B58 017:932 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0911ms total)
T2B58 017:933 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0912ms total)
T2B58 017:934 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0913ms total)
T2B58 017:935 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0E 00 43 E1 00 00 E4 FC C0 FB ...  returns 0x20 (0002ms, 0915ms total)
T2B58 017:937 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0916ms total)
T2B58 017:938 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 10 00  returns 0x02 (0001ms, 0917ms total)
T2B58 017:939 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0918ms total)
T2B58 017:941 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1B 00 00 00  returns 0x04 (0002ms, 0920ms total)
T2B58 017:943 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0921ms total)
T2B58 017:945 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0922ms total)
T2B58 017:947 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0923ms total)
T2B58 017:948 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0924ms total)
T661C 017:949 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
T661C 018:051 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
T661C 018:152 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
T661C 018:254 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
T661C 018:355 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
T2B58 018:457 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0925ms total)
T2B58 018:459 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0926ms total)
T2B58 018:460 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0927ms total)
T2B58 018:461 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0F 00 43 E1 00 00 E3 FC C0 FB ...  returns 0x20 (0001ms, 0928ms total)
T2B58 018:463 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0929ms total)
T2B58 018:464 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 11 00  returns 0x02 (0001ms, 0930ms total)
T2B58 018:465 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0931ms total)
T2B58 018:467 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1C 00 00 00  returns 0x04 (0000ms, 0931ms total)
T2B58 018:468 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0932ms total)
T2B58 018:469 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 0933ms total)
T2B58 018:471 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0934ms total)
T2B58 018:472 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0935ms total)
T661C 018:473 JLINK_IsHalted()  returns FALSE (0001ms, 0936ms total)
T661C 018:575 JLINK_IsHalted()  returns FALSE (0001ms, 0936ms total)
T661C 018:676 JLINK_IsHalted()  returns FALSE (0001ms, 0936ms total)
T661C 018:778 JLINK_IsHalted()  returns FALSE (0001ms, 0936ms total)
T661C 018:879 JLINK_IsHalted()  returns FALSE (0001ms, 0936ms total)
T2B58 018:981 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0936ms total)
T2B58 018:984 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0937ms total)
T2B58 018:985 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0938ms total)
T2B58 018:986 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 0F 00 43 E1 00 00 E3 FC C0 FB ...  returns 0x20 (0002ms, 0940ms total)
T2B58 018:988 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0941ms total)
T2B58 018:989 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 11 00  returns 0x02 (0001ms, 0942ms total)
T2B58 018:990 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0943ms total)
T2B58 018:992 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1D 00 00 00  returns 0x04 (0001ms, 0944ms total)
T2B58 018:993 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0945ms total)
T2B58 018:994 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 0947ms total)
T2B58 018:996 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0948ms total)
T2B58 018:999 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0949ms total)
T661C 019:000 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T661C 019:102 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T661C 019:203 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T661C 019:304 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T661C 019:406 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T2B58 019:508 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0950ms total)
T2B58 019:510 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0951ms total)
T2B58 019:511 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0952ms total)
T2B58 019:513 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 10 00 43 E1 00 00 E2 FC C0 FB ...  returns 0x20 (0001ms, 0953ms total)
T2B58 019:515 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0954ms total)
T2B58 019:516 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 12 00  returns 0x02 (0001ms, 0955ms total)
T2B58 019:517 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0956ms total)
T2B58 019:519 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1E 00 00 00  returns 0x04 (0000ms, 0956ms total)
T2B58 019:520 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0957ms total)
T2B58 019:521 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 0958ms total)
T2B58 019:523 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0959ms total)
T2B58 019:524 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0960ms total)
T661C 019:525 JLINK_IsHalted()  returns FALSE (0002ms, 0962ms total)
T661C 019:627 JLINK_IsHalted()  returns FALSE (0001ms, 0961ms total)
T661C 019:728 JLINK_IsHalted()  returns FALSE (0001ms, 0961ms total)
T661C 019:831 JLINK_IsHalted()  returns FALSE (0001ms, 0961ms total)
T661C 019:932 JLINK_IsHalted()  returns FALSE (0001ms, 0961ms total)
T2B58 020:034 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0961ms total)
T2B58 020:037 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0962ms total)
T2B58 020:038 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0963ms total)
T2B58 020:039 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 10 00 43 E1 00 00 E2 FC C0 FB ...  returns 0x20 (0002ms, 0965ms total)
T2B58 020:041 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0966ms total)
T2B58 020:042 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 12 00  returns 0x02 (0001ms, 0967ms total)
T2B58 020:043 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0968ms total)
T2B58 020:045 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 1F 00 00 00  returns 0x04 (0001ms, 0969ms total)
T2B58 020:047 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0970ms total)
T2B58 020:048 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 0972ms total)
T2B58 020:050 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 0973ms total)
T2B58 020:051 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 0974ms total)
T661C 020:052 JLINK_IsHalted()  returns FALSE (0001ms, 0975ms total)
T661C 020:154 JLINK_IsHalted()  returns FALSE (0001ms, 0975ms total)
T661C 020:256 JLINK_IsHalted()  returns FALSE (0001ms, 0975ms total)
T661C 020:357 JLINK_IsHalted()  returns FALSE (0001ms, 0975ms total)
T661C 020:459 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T2B58 020:560 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0975ms total)
T2B58 020:562 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0976ms total)
T2B58 020:563 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0977ms total)
T2B58 020:564 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 11 00 43 E1 00 00 E1 FC C0 FB ...  returns 0x20 (0002ms, 0979ms total)
T2B58 020:567 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 0981ms total)
T2B58 020:569 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 13 00  returns 0x02 (0001ms, 0982ms total)
T2B58 020:570 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0983ms total)
T2B58 020:571 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 20 00 00 00  returns 0x04 (0001ms, 0984ms total)
T2B58 020:573 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0985ms total)
T2B58 020:574 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 0986ms total)
T2B58 020:576 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 0987ms total)
T2B58 020:577 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 0988ms total)
T661C 020:578 JLINK_IsHalted()  returns FALSE (0003ms, 0991ms total)
T661C 020:682 JLINK_IsHalted()  returns FALSE (0001ms, 0989ms total)
T661C 020:783 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T661C 020:885 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T661C 020:987 JLINK_IsHalted()  returns FALSE (0001ms, 0989ms total)
T2B58 021:088 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0989ms total)
T2B58 021:089 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0990ms total)
T2B58 021:090 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0991ms total)
T2B58 021:091 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 11 00 43 E1 00 00 E1 FC C0 FB ...  returns 0x20 (0002ms, 0993ms total)
T2B58 021:093 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 0994ms total)
T2B58 021:094 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 13 00  returns 0x02 (0001ms, 0995ms total)
T2B58 021:095 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 0996ms total)
T2B58 021:097 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 21 00 00 00  returns 0x04 (0001ms, 0997ms total)
T2B58 021:098 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 10 00 00 00  returns 0x04 (0001ms, 0998ms total)
T2B58 021:099 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1000ms total)
T2B58 021:101 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0002ms, 1002ms total)
T2B58 021:104 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 1002ms total)
T661C 021:105 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T661C 021:207 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T661C 021:308 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T661C 021:410 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T661C 021:512 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T2B58 021:614 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1003ms total)
T2B58 021:615 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1004ms total)
T2B58 021:616 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0D 00 00 00  returns 0x04 (0002ms, 1006ms total)
T2B58 021:618 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 12 00 43 E1 00 00 E0 FC C0 FB ...  returns 0x20 (0001ms, 1007ms total)
T2B58 021:620 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1008ms total)
T2B58 021:621 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 14 00  returns 0x02 (0001ms, 1009ms total)
T2B58 021:624 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1010ms total)
T2B58 021:625 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 23 00 00 00  returns 0x04 (0001ms, 1011ms total)
T2B58 021:627 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 11 00 00 00  returns 0x04 (0001ms, 1012ms total)
T2B58 021:628 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1014ms total)
T2B58 021:630 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1015ms total)
T2B58 021:631 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1016ms total)
T661C 021:632 JLINK_IsHalted()  returns FALSE (0001ms, 1017ms total)
T661C 021:734 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T661C 021:835 JLINK_IsHalted()  returns FALSE (0001ms, 1017ms total)
T661C 021:936 JLINK_IsHalted()  returns FALSE (0001ms, 1017ms total)
T661C 022:038 JLINK_IsHalted()  returns FALSE (0001ms, 1017ms total)
T2B58 022:140 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1017ms total)
T2B58 022:142 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1018ms total)
T2B58 022:143 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1019ms total)
T2B58 022:144 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 12 00 43 E1 00 00 E0 FC C0 FB ...  returns 0x20 (0001ms, 1020ms total)
T2B58 022:145 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T2B58 022:147 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 14 00  returns 0x02 (0001ms, 1022ms total)
T2B58 022:148 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1023ms total)
T2B58 022:149 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 23 00 00 00  returns 0x04 (0001ms, 1024ms total)
T2B58 022:150 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 11 00 00 00  returns 0x04 (0001ms, 1025ms total)
T2B58 022:152 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1026ms total)
T2B58 022:153 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1027ms total)
T2B58 022:154 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1028ms total)
T661C 022:155 JLINK_IsHalted()  returns FALSE (0001ms, 1029ms total)
T661C 022:257 JLINK_IsHalted()  returns FALSE (0001ms, 1029ms total)
T661C 022:359 JLINK_IsHalted()  returns FALSE (0001ms, 1029ms total)
T661C 022:461 JLINK_IsHalted()  returns FALSE (0001ms, 1029ms total)
T661C 022:563 JLINK_IsHalted()  returns FALSE (0001ms, 1029ms total)
T2B58 022:665 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1029ms total)
T2B58 022:667 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1030ms total)
T2B58 022:669 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1031ms total)
T2B58 022:670 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 13 00 43 E1 00 00 DF FC C0 FB ...  returns 0x20 (0001ms, 1032ms total)
T2B58 022:672 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1033ms total)
T2B58 022:673 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 15 00  returns 0x02 (0001ms, 1034ms total)
T2B58 022:674 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1035ms total)
T2B58 022:675 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 25 00 00 00  returns 0x04 (0001ms, 1036ms total)
T2B58 022:676 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 12 00 00 00  returns 0x04 (0001ms, 1037ms total)
T2B58 022:678 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1039ms total)
T2B58 022:681 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1040ms total)
T2B58 022:682 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1041ms total)
T661C 022:683 JLINK_IsHalted()  returns FALSE (0001ms, 1042ms total)
T661C 022:785 JLINK_IsHalted()  returns FALSE (0001ms, 1042ms total)
T661C 022:886 JLINK_IsHalted()  returns FALSE (0001ms, 1042ms total)
T661C 022:988 JLINK_IsHalted()  returns FALSE (0001ms, 1042ms total)
T661C 023:089 JLINK_IsHalted()  returns FALSE (0001ms, 1042ms total)
T2B58 023:191 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1042ms total)
T2B58 023:193 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1043ms total)
T2B58 023:194 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1044ms total)
T2B58 023:195 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 13 00 43 E1 00 00 DF FC C0 FB ...  returns 0x20 (0002ms, 1046ms total)
T2B58 023:197 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1047ms total)
T2B58 023:198 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 15 00  returns 0x02 (0001ms, 1048ms total)
T2B58 023:199 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1049ms total)
T2B58 023:200 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 25 00 00 00  returns 0x04 (0001ms, 1050ms total)
T2B58 023:202 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 12 00 00 00  returns 0x04 (0000ms, 1050ms total)
T2B58 023:204 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1052ms total)
T2B58 023:206 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1053ms total)
T2B58 023:207 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1054ms total)
T661C 023:208 JLINK_IsHalted()  returns FALSE (0001ms, 1055ms total)
T661C 023:310 JLINK_IsHalted()  returns FALSE (0001ms, 1055ms total)
T661C 023:412 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T661C 023:514 JLINK_IsHalted()  returns FALSE (0001ms, 1055ms total)
T661C 023:616 JLINK_IsHalted()  returns FALSE (0001ms, 1055ms total)
T2B58 023:717 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1055ms total)
T2B58 023:718 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1056ms total)
T2B58 023:719 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1057ms total)
T2B58 023:720 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 14 00 43 E1 00 00 DE FC C0 FB ...  returns 0x20 (0002ms, 1059ms total)
T2B58 023:722 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1060ms total)
T2B58 023:724 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 16 00  returns 0x02 (0001ms, 1061ms total)
T2B58 023:725 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1062ms total)
T2B58 023:726 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 27 00 00 00  returns 0x04 (0001ms, 1063ms total)
T2B58 023:728 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 13 00 00 00  returns 0x04 (0000ms, 1063ms total)
T2B58 023:729 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1064ms total)
T2B58 023:731 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1065ms total)
T2B58 023:732 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1066ms total)
T661C 023:733 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T661C 023:835 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T661C 023:937 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T661C 024:039 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T661C 024:140 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T2B58 024:242 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1067ms total)
T2B58 024:244 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1068ms total)
T2B58 024:245 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1069ms total)
T2B58 024:246 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 15 00 43 E1 00 00 DD FC C0 FB ...  returns 0x20 (0001ms, 1070ms total)
T2B58 024:248 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1071ms total)
T2B58 024:249 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 17 00  returns 0x02 (0001ms, 1072ms total)
T2B58 024:250 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1073ms total)
T2B58 024:252 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 28 00 00 00  returns 0x04 (0001ms, 1074ms total)
T2B58 024:253 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1075ms total)
T2B58 024:254 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1077ms total)
T2B58 024:256 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1078ms total)
T2B58 024:257 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1079ms total)
T661C 024:259 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T661C 024:360 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T661C 024:462 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T661C 024:564 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T661C 024:665 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T2B58 024:766 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1080ms total)
T2B58 024:768 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1081ms total)
T2B58 024:769 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1082ms total)
T2B58 024:770 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 15 00 43 E1 00 00 DD FC C0 FB ...  returns 0x20 (0001ms, 1083ms total)
T2B58 024:771 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1084ms total)
T2B58 024:773 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 17 00  returns 0x02 (0001ms, 1085ms total)
T2B58 024:774 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1086ms total)
T2B58 024:775 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 29 00 00 00  returns 0x04 (0001ms, 1087ms total)
T2B58 024:776 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1088ms total)
T2B58 024:778 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1089ms total)
T2B58 024:780 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0000ms, 1089ms total)
T2B58 024:781 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1090ms total)
T661C 024:783 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T661C 024:884 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T661C 024:986 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T661C 025:087 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T661C 025:188 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T2B58 025:291 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1091ms total)
T2B58 025:293 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1092ms total)
T2B58 025:294 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1093ms total)
T2B58 025:295 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 16 00 43 E1 00 00 DC FC C0 FB ...  returns 0x20 (0002ms, 1095ms total)
T2B58 025:298 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1096ms total)
T2B58 025:299 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 18 00  returns 0x02 (0001ms, 1097ms total)
T2B58 025:300 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1098ms total)
T2B58 025:302 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1099ms total)
T2B58 025:303 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1100ms total)
T2B58 025:305 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1101ms total)
T2B58 025:306 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1102ms total)
T2B58 025:308 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1103ms total)
T661C 025:310 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T661C 025:411 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T661C 025:513 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T661C 025:615 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T661C 025:716 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T2B58 025:817 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1104ms total)
T2B58 025:819 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1105ms total)
T2B58 025:820 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1106ms total)
T2B58 025:821 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 16 00 43 E1 00 00 DC FC C0 FB ...  returns 0x20 (0002ms, 1108ms total)
T2B58 025:823 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1109ms total)
T2B58 025:825 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 18 00  returns 0x02 (0001ms, 1110ms total)
T2B58 025:826 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1111ms total)
T2B58 025:827 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1112ms total)
T2B58 025:829 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1113ms total)
T2B58 025:830 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1115ms total)
T2B58 025:832 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1116ms total)
T2B58 025:833 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1117ms total)
T661C 025:834 JLINK_IsHalted()  returns FALSE (0001ms, 1118ms total)
T661C 025:936 JLINK_IsHalted()  returns FALSE (0001ms, 1118ms total)
T661C 026:038 JLINK_IsHalted()  returns FALSE (0001ms, 1118ms total)
T661C 026:139 JLINK_IsHalted()  returns FALSE (0001ms, 1118ms total)
T661C 026:241 JLINK_IsHalted()  returns FALSE (0001ms, 1118ms total)
T2B58 026:342 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1118ms total)
T2B58 026:344 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1119ms total)
T2B58 026:345 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1120ms total)
T2B58 026:346 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 17 00 43 E1 00 00 DB FC C0 FB ...  returns 0x20 (0002ms, 1122ms total)
T2B58 026:348 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1123ms total)
T2B58 026:350 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 19 00  returns 0x02 (0001ms, 1124ms total)
T2B58 026:351 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1125ms total)
T2B58 026:352 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1126ms total)
T2B58 026:354 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1127ms total)
T2B58 026:355 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1128ms total)
T2B58 026:357 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0002ms, 1130ms total)
T2B58 026:359 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1131ms total)
T661C 026:360 JLINK_IsHalted()  returns FALSE (0001ms, 1132ms total)
T661C 026:461 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T661C 026:562 JLINK_IsHalted()  returns FALSE (0001ms, 1132ms total)
T661C 026:665 JLINK_IsHalted()  returns FALSE (0001ms, 1132ms total)
T661C 026:766 JLINK_IsHalted()  returns FALSE (0001ms, 1132ms total)
T2B58 026:867 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 10 00 00 00  returns 0x04 (0001ms, 1132ms total)
T2B58 026:869 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1133ms total)
T2B58 026:870 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 10 00 00 00  returns 0x04 (0001ms, 1134ms total)
T2B58 026:873 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 17 00 43 E1 00 00 DB FC C0 FB ...  returns 0x20 (0002ms, 1136ms total)
T2B58 026:875 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 1136ms total)
T2B58 026:876 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 19 00  returns 0x02 (0001ms, 1137ms total)
T2B58 026:877 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1138ms total)
T2B58 026:878 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1139ms total)
T2B58 026:880 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 16 00 00 00  returns 0x04 (0000ms, 1139ms total)
T2B58 026:881 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1140ms total)
T2B58 026:883 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1141ms total)
T2B58 026:884 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1142ms total)
T661C 026:885 JLINK_IsHalted()  returns FALSE (0001ms, 1143ms total)
T661C 026:987 JLINK_IsHalted()  returns FALSE (0001ms, 1143ms total)
T661C 027:089 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T661C 027:191 JLINK_IsHalted()  returns FALSE (0001ms, 1143ms total)
T661C 027:292 JLINK_IsHalted()  returns FALSE (0001ms, 1143ms total)
T2B58 027:394 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 10 00 00 00  returns 0x04 (0001ms, 1143ms total)
T2B58 027:396 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1144ms total)
T2B58 027:397 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 10 00 00 00  returns 0x04 (0001ms, 1145ms total)
T2B58 027:398 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 18 00 43 E1 00 00 DA FC C0 FB ...  returns 0x20 (0002ms, 1147ms total)
T2B58 027:400 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1148ms total)
T2B58 027:402 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1A 00  returns 0x02 (0001ms, 1149ms total)
T2B58 027:403 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1150ms total)
T2B58 027:404 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1151ms total)
T2B58 027:406 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 16 00 00 00  returns 0x04 (0001ms, 1152ms total)
T2B58 027:407 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1153ms total)
T2B58 027:409 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1154ms total)
T2B58 027:410 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1155ms total)
T661C 027:411 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T661C 027:514 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T661C 027:615 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T661C 027:716 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T661C 027:818 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T2B58 027:919 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 11 00 00 00  returns 0x04 (0001ms, 1156ms total)
T2B58 027:922 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1157ms total)
T2B58 027:923 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 11 00 00 00  returns 0x04 (0001ms, 1158ms total)
T2B58 027:925 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 18 00 43 E1 00 00 DA FC C0 FB ...  returns 0x20 (0001ms, 1159ms total)
T2B58 027:927 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1161ms total)
T2B58 027:929 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1A 00  returns 0x02 (0001ms, 1162ms total)
T2B58 027:930 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1163ms total)
T2B58 027:932 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1164ms total)
T2B58 027:933 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 17 00 00 00  returns 0x04 (0001ms, 1165ms total)
T2B58 027:935 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1167ms total)
T2B58 027:937 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1168ms total)
T2B58 027:938 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1169ms total)
T661C 027:940 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T661C 028:042 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T661C 028:143 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T661C 028:245 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T661C 028:347 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T2B58 028:448 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 11 00 00 00  returns 0x04 (0001ms, 1170ms total)
T2B58 028:451 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1171ms total)
T2B58 028:452 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 11 00 00 00  returns 0x04 (0001ms, 1172ms total)
T2B58 028:453 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 19 00 43 E1 00 00 D9 FC C0 FB ...  returns 0x20 (0002ms, 1174ms total)
T2B58 028:456 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1175ms total)
T2B58 028:458 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1B 00  returns 0x02 (0001ms, 1176ms total)
T2B58 028:459 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1177ms total)
T2B58 028:460 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 30 00 00 00  returns 0x04 (0001ms, 1178ms total)
T2B58 028:462 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 17 00 00 00  returns 0x04 (0001ms, 1179ms total)
T2B58 028:463 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1181ms total)
T2B58 028:465 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1182ms total)
T2B58 028:467 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1183ms total)
T661C 028:468 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T661C 028:569 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T661C 028:670 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T661C 028:772 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T661C 028:873 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T2B58 028:975 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 12 00 00 00  returns 0x04 (0001ms, 1184ms total)
T2B58 028:978 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 10 00 00 00  returns 0x04 (0001ms, 1185ms total)
T2B58 028:979 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 12 00 00 00  returns 0x04 (0001ms, 1186ms total)
T2B58 028:980 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 19 00 43 E1 00 00 D9 FC C0 FB ...  returns 0x20 (0002ms, 1188ms total)
T2B58 028:982 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1189ms total)
T2B58 028:984 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1B 00  returns 0x02 (0001ms, 1190ms total)
T2B58 028:985 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1191ms total)
T2B58 028:987 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 31 00 00 00  returns 0x04 (0001ms, 1192ms total)
T2B58 028:988 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 18 00 00 00  returns 0x04 (0001ms, 1193ms total)
T2B58 028:990 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1194ms total)
T2B58 028:992 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1195ms total)
T2B58 028:993 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1196ms total)
T661C 028:994 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T661C 029:096 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T661C 029:197 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T661C 029:299 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T661C 029:401 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T2B58 029:502 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 12 00 00 00  returns 0x04 (0001ms, 1197ms total)
T2B58 029:505 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 10 00 00 00  returns 0x04 (0000ms, 1197ms total)
T2B58 029:506 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 12 00 00 00  returns 0x04 (0001ms, 1198ms total)
T2B58 029:507 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1A 00 43 E1 00 00 D8 FC C0 FB ...  returns 0x20 (0001ms, 1199ms total)
T2B58 029:509 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T2B58 029:510 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1C 00  returns 0x02 (0001ms, 1201ms total)
T2B58 029:511 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1202ms total)
T2B58 029:513 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 32 00 00 00  returns 0x04 (0002ms, 1204ms total)
T2B58 029:515 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 18 00 00 00  returns 0x04 (0001ms, 1205ms total)
T2B58 029:516 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1207ms total)
T2B58 029:518 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1208ms total)
T2B58 029:520 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 1208ms total)
T661C 029:521 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T661C 029:622 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T661C 029:723 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T661C 029:824 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T661C 029:926 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T2B58 030:028 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 13 00 00 00  returns 0x04 (0001ms, 1209ms total)
T2B58 030:031 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 11 00 00 00  returns 0x04 (0001ms, 1210ms total)
T2B58 030:032 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 13 00 00 00  returns 0x04 (0001ms, 1211ms total)
T2B58 030:033 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1A 00 43 E1 00 00 D8 FC C0 FB ...  returns 0x20 (0002ms, 1213ms total)
T2B58 030:035 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1214ms total)
T2B58 030:036 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1C 00  returns 0x02 (0001ms, 1215ms total)
T2B58 030:037 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1216ms total)
T2B58 030:039 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 33 00 00 00  returns 0x04 (0001ms, 1217ms total)
T2B58 030:041 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 19 00 00 00  returns 0x04 (0001ms, 1218ms total)
T2B58 030:042 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1219ms total)
T2B58 030:044 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1220ms total)
T2B58 030:045 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1221ms total)
T661C 030:046 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T661C 030:148 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T661C 030:249 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T661C 030:351 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T661C 030:453 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T2B58 030:555 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 13 00 00 00  returns 0x04 (0001ms, 1222ms total)
T2B58 030:557 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 11 00 00 00  returns 0x04 (0001ms, 1223ms total)
T2B58 030:558 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 13 00 00 00  returns 0x04 (0001ms, 1224ms total)
T2B58 030:559 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1B 00 43 E1 00 00 D7 FC C0 FB ...  returns 0x20 (0002ms, 1226ms total)
T2B58 030:561 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1227ms total)
T2B58 030:563 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1D 00  returns 0x02 (0001ms, 1228ms total)
T2B58 030:564 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1229ms total)
T2B58 030:565 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 34 00 00 00  returns 0x04 (0001ms, 1230ms total)
T2B58 030:568 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 19 00 00 00  returns 0x04 (0001ms, 1231ms total)
T2B58 030:569 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1233ms total)
T2B58 030:571 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1234ms total)
T2B58 030:572 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1235ms total)
T661C 030:574 JLINK_IsHalted()  returns FALSE (0001ms, 1236ms total)
T661C 030:675 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T661C 030:776 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T661C 030:878 JLINK_IsHalted()  returns FALSE (0001ms, 1236ms total)
T661C 030:980 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T2B58 031:081 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 14 00 00 00  returns 0x04 (0001ms, 1236ms total)
T2B58 031:083 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 12 00 00 00  returns 0x04 (0001ms, 1237ms total)
T2B58 031:085 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 14 00 00 00  returns 0x04 (0001ms, 1238ms total)
T2B58 031:086 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1B 00 43 E1 00 00 D7 FC C0 FB ...  returns 0x20 (0002ms, 1240ms total)
T2B58 031:088 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1241ms total)
T2B58 031:090 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1D 00  returns 0x02 (0001ms, 1242ms total)
T2B58 031:091 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1243ms total)
T2B58 031:092 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 35 00 00 00  returns 0x04 (0001ms, 1244ms total)
T2B58 031:093 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1245ms total)
T2B58 031:095 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1246ms total)
T2B58 031:096 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1247ms total)
T2B58 031:098 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1248ms total)
T661C 031:099 JLINK_IsHalted()  returns FALSE (0001ms, 1249ms total)
T661C 031:202 JLINK_IsHalted()  returns FALSE (0002ms, 1250ms total)
T661C 031:305 JLINK_IsHalted()  returns FALSE (0001ms, 1249ms total)
T661C 031:407 JLINK_IsHalted()  returns FALSE (0001ms, 1249ms total)
T661C 031:508 JLINK_IsHalted()  returns FALSE (0001ms, 1249ms total)
T2B58 031:610 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 14 00 00 00  returns 0x04 (0001ms, 1249ms total)
T2B58 031:612 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 12 00 00 00  returns 0x04 (0001ms, 1250ms total)
T2B58 031:613 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 14 00 00 00  returns 0x04 (0001ms, 1251ms total)
T2B58 031:615 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1C 00 43 E1 00 00 D6 FC C0 FB ...  returns 0x20 (0001ms, 1252ms total)
T2B58 031:617 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1253ms total)
T2B58 031:618 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1E 00  returns 0x02 (0001ms, 1254ms total)
T2B58 031:620 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1254ms total)
T2B58 031:621 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 37 00 00 00  returns 0x04 (0001ms, 1255ms total)
T2B58 031:622 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1256ms total)
T2B58 031:624 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1257ms total)
T2B58 031:626 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1258ms total)
T2B58 031:627 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1259ms total)
T661C 031:628 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T661C 031:730 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T661C 031:831 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T661C 031:933 JLINK_IsHalted()  returns FALSE (0001ms, 1260ms total)
T661C 032:034 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T2B58 032:136 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 14 00 00 00  returns 0x04 (0001ms, 1260ms total)
T2B58 032:137 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 12 00 00 00  returns 0x04 (0001ms, 1261ms total)
T2B58 032:138 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 14 00 00 00  returns 0x04 (0001ms, 1262ms total)
T2B58 032:140 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1C 00 43 E1 00 00 D6 FC C0 FB ...  returns 0x20 (0001ms, 1263ms total)
T2B58 032:141 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1264ms total)
T2B58 032:142 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1E 00  returns 0x02 (0001ms, 1265ms total)
T2B58 032:144 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1265ms total)
T2B58 032:145 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 37 00 00 00  returns 0x04 (0001ms, 1266ms total)
T2B58 032:146 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1267ms total)
T2B58 032:147 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1269ms total)
T2B58 032:149 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1270ms total)
T2B58 032:150 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1271ms total)
T661C 032:151 JLINK_IsHalted()  returns FALSE (0001ms, 1272ms total)
T661C 032:253 JLINK_IsHalted()  returns FALSE (0001ms, 1272ms total)
T661C 032:354 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T661C 032:456 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T661C 032:557 JLINK_IsHalted()  returns FALSE (0001ms, 1272ms total)
T2B58 032:661 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1272ms total)
T2B58 032:666 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1273ms total)
T2B58 032:667 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1274ms total)
T2B58 032:669 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1D 00 43 E1 00 00 D5 FC C0 FB ...  returns 0x20 (0001ms, 1275ms total)
T2B58 032:671 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T2B58 032:672 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1F 00  returns 0x02 (0001ms, 1277ms total)
T2B58 032:674 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1278ms total)
T2B58 032:675 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 39 00 00 00  returns 0x04 (0001ms, 1279ms total)
T2B58 032:676 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1280ms total)
T2B58 032:678 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1281ms total)
T2B58 032:680 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1282ms total)
T2B58 032:681 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1283ms total)
T661C 032:683 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T661C 032:786 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T661C 032:887 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T661C 032:989 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T661C 033:090 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T2B58 033:192 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1284ms total)
T2B58 033:194 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1285ms total)
T2B58 033:196 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1286ms total)
T2B58 033:197 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1D 00 43 E1 00 00 D5 FC C0 FB ...  returns 0x20 (0002ms, 1288ms total)
T2B58 033:199 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1289ms total)
T2B58 033:200 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 1F 00  returns 0x02 (0001ms, 1290ms total)
T2B58 033:202 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1291ms total)
T2B58 033:203 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 39 00 00 00  returns 0x04 (0001ms, 1292ms total)
T2B58 033:204 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1293ms total)
T2B58 033:205 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1295ms total)
T2B58 033:207 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1296ms total)
T2B58 033:208 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1297ms total)
T661C 033:209 JLINK_IsHalted()  returns FALSE (0001ms, 1298ms total)
T661C 033:312 JLINK_IsHalted()  returns FALSE (0001ms, 1298ms total)
T661C 033:414 JLINK_IsHalted()  returns FALSE (0001ms, 1298ms total)
T661C 033:516 JLINK_IsHalted()  returns FALSE (0001ms, 1298ms total)
T661C 033:618 JLINK_IsHalted()  returns FALSE (0001ms, 1298ms total)
T2B58 033:723 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1298ms total)
T2B58 033:727 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1299ms total)
T2B58 033:728 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1300ms total)
T2B58 033:729 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1E 00 43 E1 00 00 D4 FC C0 FB ...  returns 0x20 (0002ms, 1302ms total)
T2B58 033:732 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1303ms total)
T2B58 033:734 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 20 00  returns 0x02 (0001ms, 1304ms total)
T2B58 033:735 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1305ms total)
T2B58 033:737 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1306ms total)
T2B58 033:739 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1307ms total)
T2B58 033:741 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1309ms total)
T2B58 033:743 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1310ms total)
T2B58 033:744 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1311ms total)
T661C 033:745 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
T661C 033:848 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
T661C 033:949 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
T661C 034:050 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
T661C 034:152 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
T2B58 034:253 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1312ms total)
T2B58 034:255 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0000ms, 1312ms total)
T2B58 034:255 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1313ms total)
T2B58 034:257 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1F 00 43 E1 00 00 D3 FC C0 FB ...  returns 0x20 (0001ms, 1315ms total)
T2B58 034:259 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1316ms total)
T2B58 034:260 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 21 00  returns 0x02 (0001ms, 1317ms total)
T2B58 034:262 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1318ms total)
T2B58 034:263 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 3C 00 00 00  returns 0x04 (0001ms, 1319ms total)
T2B58 034:264 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1320ms total)
T2B58 034:266 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1321ms total)
T2B58 034:268 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1322ms total)
T2B58 034:269 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1323ms total)
T661C 034:270 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T661C 034:372 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T661C 034:474 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T661C 034:576 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T661C 034:677 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T2B58 034:779 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1324ms total)
T2B58 034:781 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1325ms total)
T2B58 034:782 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1326ms total)
T2B58 034:783 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 1F 00 43 E1 00 00 D3 FC C0 FB ...  returns 0x20 (0002ms, 1328ms total)
T2B58 034:785 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1329ms total)
T2B58 034:786 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 21 00  returns 0x02 (0001ms, 1330ms total)
T2B58 034:787 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1331ms total)
T2B58 034:789 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1332ms total)
T2B58 034:790 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1333ms total)
T2B58 034:791 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1335ms total)
T2B58 034:793 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1336ms total)
T2B58 034:794 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1337ms total)
T661C 034:797 JLINK_IsHalted()  returns FALSE (0001ms, 1338ms total)
T661C 034:898 JLINK_IsHalted()  returns FALSE (0001ms, 1338ms total)
T661C 035:000 JLINK_IsHalted()  returns FALSE (0001ms, 1338ms total)
T661C 035:101 JLINK_IsHalted()  returns FALSE (0001ms, 1338ms total)
T661C 035:203 JLINK_IsHalted()  returns FALSE (0001ms, 1338ms total)
T2B58 035:304 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1338ms total)
T2B58 035:305 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1339ms total)
T2B58 035:306 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1340ms total)
T2B58 035:307 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 20 00 43 E1 00 00 D2 FC C0 FB ...  returns 0x20 (0002ms, 1342ms total)
T2B58 035:309 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1343ms total)
T2B58 035:310 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 22 00  returns 0x02 (0001ms, 1344ms total)
T2B58 035:312 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1344ms total)
T2B58 035:313 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1345ms total)
T2B58 035:314 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1346ms total)
T2B58 035:315 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1348ms total)
T2B58 035:317 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1349ms total)
T2B58 035:318 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1350ms total)
T661C 035:320 JLINK_IsHalted()  returns FALSE (0001ms, 1351ms total)
T661C 035:421 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T661C 035:523 JLINK_IsHalted()  returns FALSE (0001ms, 1351ms total)
T661C 035:624 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T661C 035:725 JLINK_IsHalted()  returns FALSE (0001ms, 1351ms total)
T2B58 035:827 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1351ms total)
T2B58 035:829 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1352ms total)
T2B58 035:830 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1353ms total)
T2B58 035:831 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 20 00 43 E1 00 00 D2 FC C0 FB ...  returns 0x20 (0001ms, 1354ms total)
T2B58 035:832 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T2B58 035:834 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 22 00  returns 0x02 (0001ms, 1356ms total)
T2B58 035:835 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1357ms total)
T2B58 035:836 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 3F 00 00 00  returns 0x04 (0001ms, 1358ms total)
T2B58 035:839 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1359ms total)
T2B58 035:840 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1360ms total)
T2B58 035:842 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1361ms total)
T2B58 035:843 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1362ms total)
T661C 035:844 JLINK_IsHalted()  returns FALSE (0001ms, 1363ms total)
T661C 035:946 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T661C 036:048 JLINK_IsHalted()  returns FALSE (0001ms, 1363ms total)
T661C 036:150 JLINK_IsHalted()  returns FALSE (0001ms, 1363ms total)
T661C 036:251 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T2B58 036:352 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1363ms total)
T2B58 036:353 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1364ms total)
T2B58 036:354 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1365ms total)
T2B58 036:355 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 21 00 43 E1 00 00 D1 FC C0 FB ...  returns 0x20 (0002ms, 1367ms total)
T2B58 036:357 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1368ms total)
T2B58 036:359 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 23 00  returns 0x02 (0001ms, 1369ms total)
T2B58 036:360 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1370ms total)
T2B58 036:361 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 40 00 00 00  returns 0x04 (0001ms, 1371ms total)
T2B58 036:362 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1372ms total)
T2B58 036:364 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1373ms total)
T2B58 036:366 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1374ms total)
T2B58 036:367 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1375ms total)
T661C 036:368 JLINK_IsHalted()  returns FALSE (0001ms, 1376ms total)
T661C 036:470 JLINK_IsHalted()  returns FALSE (0001ms, 1376ms total)
T661C 036:571 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T661C 036:673 JLINK_IsHalted()  returns FALSE (0001ms, 1376ms total)
T661C 036:774 JLINK_IsHalted()  returns FALSE (0001ms, 1376ms total)
T2B58 036:875 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1376ms total)
T2B58 036:877 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0000ms, 1376ms total)
T2B58 036:878 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0000ms, 1377ms total)
T2B58 036:879 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 21 00 43 E1 00 00 D1 FC C0 FB ...  returns 0x20 (0001ms, 1378ms total)
T2B58 036:880 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1379ms total)
T2B58 036:881 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 23 00  returns 0x02 (0001ms, 1380ms total)
T2B58 036:882 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1381ms total)
T2B58 036:884 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 41 00 00 00  returns 0x04 (0001ms, 1382ms total)
T2B58 036:885 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1383ms total)
T2B58 036:887 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1384ms total)
T2B58 036:889 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1385ms total)
T2B58 036:894 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0003ms, 1388ms total)
T661C 036:899 JLINK_IsHalted()  returns FALSE (0003ms, 1391ms total)
T661C 037:003 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T661C 037:104 JLINK_IsHalted()  returns FALSE (0001ms, 1389ms total)
T661C 037:207 JLINK_IsHalted()  returns FALSE (0001ms, 1389ms total)
T661C 037:309 JLINK_IsHalted()  returns FALSE (0001ms, 1389ms total)
T2B58 037:411 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1389ms total)
T2B58 037:413 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1390ms total)
T2B58 037:414 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1391ms total)
T2B58 037:415 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 22 00 43 E1 00 00 D0 FC C0 FB ...  returns 0x20 (0001ms, 1392ms total)
T2B58 037:417 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1393ms total)
T2B58 037:418 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 24 00  returns 0x02 (0001ms, 1394ms total)
T2B58 037:420 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1394ms total)
T2B58 037:421 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 42 00 00 00  returns 0x04 (0001ms, 1395ms total)
T2B58 037:422 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1396ms total)
T2B58 037:424 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1397ms total)
T2B58 037:429 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1398ms total)
T2B58 037:431 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1399ms total)
T661C 037:432 JLINK_IsHalted()  returns FALSE (0001ms, 1400ms total)
T661C 037:534 JLINK_IsHalted()  returns FALSE (0001ms, 1400ms total)
T661C 037:635 JLINK_IsHalted()  returns FALSE (0001ms, 1400ms total)
T661C 037:736 JLINK_IsHalted()  returns FALSE (0001ms, 1400ms total)
T661C 037:838 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T2B58 037:939 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1400ms total)
T2B58 037:941 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1401ms total)
T2B58 037:942 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1402ms total)
T2B58 037:943 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 22 00 43 E1 00 00 D0 FC C0 FB ...  returns 0x20 (0001ms, 1403ms total)
T2B58 037:944 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1404ms total)
T2B58 037:946 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 24 00  returns 0x02 (0001ms, 1405ms total)
T2B58 037:947 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1406ms total)
T2B58 037:949 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 43 00 00 00  returns 0x04 (0001ms, 1407ms total)
T2B58 037:951 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 21 00 00 00  returns 0x04 (0001ms, 1408ms total)
T2B58 037:952 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1409ms total)
T2B58 037:954 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1410ms total)
T2B58 037:955 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1411ms total)
T661C 037:956 JLINK_IsHalted()  returns FALSE (0001ms, 1412ms total)
T661C 038:059 JLINK_IsHalted()  returns FALSE (0001ms, 1412ms total)
T661C 038:161 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T661C 038:262 JLINK_IsHalted()  returns FALSE (0001ms, 1412ms total)
T661C 038:364 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T2B58 038:465 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 15 00 00 00  returns 0x04 (0001ms, 1412ms total)
T2B58 038:467 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 1413ms total)
T2B58 038:468 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 15 00 00 00  returns 0x04 (0001ms, 1414ms total)
T2B58 038:469 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 23 00 43 E1 00 00 CF FC C0 FB ...  returns 0x20 (0002ms, 1416ms total)
T2B58 038:471 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1417ms total)
T2B58 038:472 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 25 00  returns 0x02 (0001ms, 1418ms total)
T2B58 038:474 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1419ms total)
T2B58 038:475 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 44 00 00 00  returns 0x04 (0002ms, 1421ms total)
T2B58 038:478 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 21 00 00 00  returns 0x04 (0000ms, 1421ms total)
T2B58 038:479 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1422ms total)
T2B58 038:481 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1423ms total)
T2B58 038:482 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1424ms total)
T661C 038:483 JLINK_IsHalted()  returns FALSE (0001ms, 1425ms total)
T661C 038:586 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T661C 038:687 JLINK_IsHalted()  returns FALSE (0001ms, 1425ms total)
T661C 038:788 JLINK_IsHalted()  returns FALSE (0001ms, 1425ms total)
T661C 038:890 JLINK_IsHalted()  returns FALSE (0001ms, 1425ms total)
T2B58 038:992 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 16 00 00 00  returns 0x04 (0001ms, 1425ms total)
T2B58 038:994 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1426ms total)
T2B58 038:995 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 16 00 00 00  returns 0x04 (0002ms, 1428ms total)
T2B58 038:997 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 23 00 43 E1 00 00 CF FC C0 FB ...  returns 0x20 (0001ms, 1429ms total)
T2B58 038:998 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1430ms total)
T2B58 039:000 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 25 00  returns 0x02 (0001ms, 1431ms total)
T2B58 039:001 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1432ms total)
T2B58 039:002 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 45 00 00 00  returns 0x04 (0001ms, 1433ms total)
T2B58 039:003 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 22 00 00 00  returns 0x04 (0001ms, 1434ms total)
T2B58 039:005 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1435ms total)
T2B58 039:007 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1436ms total)
T2B58 039:008 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1437ms total)
T661C 039:009 JLINK_IsHalted()  returns FALSE (0001ms, 1438ms total)
T661C 039:111 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T661C 039:213 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T661C 039:314 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T661C 039:415 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T2B58 039:517 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 16 00 00 00  returns 0x04 (0001ms, 1438ms total)
T2B58 039:519 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1439ms total)
T2B58 039:521 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 16 00 00 00  returns 0x04 (0000ms, 1439ms total)
T2B58 039:522 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 24 00 43 E1 00 00 CE FC C0 FB ...  returns 0x20 (0001ms, 1440ms total)
T2B58 039:524 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T2B58 039:525 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 26 00  returns 0x02 (0001ms, 1442ms total)
T2B58 039:526 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1443ms total)
T2B58 039:527 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 46 00 00 00  returns 0x04 (0001ms, 1444ms total)
T2B58 039:529 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 22 00 00 00  returns 0x04 (0001ms, 1445ms total)
T2B58 039:530 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1447ms total)
T2B58 039:533 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1448ms total)
T2B58 039:534 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1449ms total)
T661C 039:535 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T661C 039:637 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T661C 039:740 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T661C 039:842 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T661C 039:943 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T2B58 040:045 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 16 00 00 00  returns 0x04 (0001ms, 1450ms total)
T2B58 040:047 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1451ms total)
T2B58 040:048 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 16 00 00 00  returns 0x04 (0001ms, 1452ms total)
T2B58 040:049 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 24 00 43 E1 00 00 CE FC C0 FB ...  returns 0x20 (0001ms, 1453ms total)
T2B58 040:050 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1454ms total)
T2B58 040:052 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 26 00  returns 0x02 (0002ms, 1456ms total)
T2B58 040:054 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1457ms total)
T2B58 040:055 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 47 00 00 00  returns 0x04 (0001ms, 1458ms total)
T2B58 040:057 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 23 00 00 00  returns 0x04 (0001ms, 1459ms total)
T2B58 040:058 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1460ms total)
T2B58 040:060 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1461ms total)
T2B58 040:061 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1462ms total)
T661C 040:062 JLINK_IsHalted()  returns FALSE (0001ms, 1463ms total)
T661C 040:164 JLINK_IsHalted()  returns FALSE (0001ms, 1463ms total)
T661C 040:265 JLINK_IsHalted()  returns FALSE (0001ms, 1463ms total)
T661C 040:367 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T661C 040:469 JLINK_IsHalted()  returns FALSE (0001ms, 1463ms total)
T2B58 040:570 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 16 00 00 00  returns 0x04 (0001ms, 1463ms total)
T2B58 040:571 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 14 00 00 00  returns 0x04 (0001ms, 1464ms total)
T2B58 040:572 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 16 00 00 00  returns 0x04 (0001ms, 1465ms total)
T2B58 040:573 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 25 00 43 E1 00 00 CD FC C0 FB ...  returns 0x20 (0002ms, 1467ms total)
T2B58 040:576 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 1467ms total)
T2B58 040:577 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 27 00  returns 0x02 (0001ms, 1468ms total)
T2B58 040:578 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1469ms total)
T2B58 040:579 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 49 00 00 00  returns 0x04 (0001ms, 1470ms total)
T2B58 040:581 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0001ms, 1471ms total)
T2B58 040:582 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1473ms total)
T2B58 040:584 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1474ms total)
T2B58 040:585 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1475ms total)
T661C 040:586 JLINK_IsHalted()  returns FALSE (0002ms, 1477ms total)
T661C 040:688 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T661C 040:790 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T661C 040:891 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T661C 040:993 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T2B58 041:095 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 17 00 00 00  returns 0x04 (0001ms, 1476ms total)
T2B58 041:098 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 15 00 00 00  returns 0x04 (0002ms, 1478ms total)
T2B58 041:100 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 17 00 00 00  returns 0x04 (0001ms, 1479ms total)
T2B58 041:101 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 25 00 43 E1 00 00 CD FC C0 FB ...  returns 0x20 (0002ms, 1481ms total)
T2B58 041:103 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1482ms total)
T2B58 041:104 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 27 00  returns 0x02 (0001ms, 1483ms total)
T2B58 041:105 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1484ms total)
T2B58 041:107 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 49 00 00 00  returns 0x04 (0000ms, 1484ms total)
T2B58 041:108 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0002ms, 1486ms total)
T2B58 041:110 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1487ms total)
T2B58 041:111 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1488ms total)
T2B58 041:113 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1489ms total)
T661C 041:114 JLINK_IsHalted()  returns FALSE (0001ms, 1490ms total)
T661C 041:215 JLINK_IsHalted()  returns FALSE (0001ms, 1490ms total)
T661C 041:317 JLINK_IsHalted()  returns FALSE (0001ms, 1490ms total)
T661C 041:418 JLINK_IsHalted()  returns FALSE (0001ms, 1490ms total)
T661C 041:520 JLINK_IsHalted()  returns FALSE (0001ms, 1490ms total)
T2B58 041:621 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 17 00 00 00  returns 0x04 (0001ms, 1490ms total)
T2B58 041:623 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1491ms total)
T2B58 041:624 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 17 00 00 00  returns 0x04 (0001ms, 1492ms total)
T2B58 041:625 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 26 00 43 E1 00 00 CC FC C0 FB ...  returns 0x20 (0002ms, 1494ms total)
T2B58 041:628 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 1494ms total)
T2B58 041:629 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 28 00  returns 0x02 (0001ms, 1495ms total)
T2B58 041:630 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1496ms total)
T2B58 041:631 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4A 00 00 00  returns 0x04 (0001ms, 1497ms total)
T2B58 041:633 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0000ms, 1497ms total)
T2B58 041:633 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1499ms total)
T2B58 041:637 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1500ms total)
T2B58 041:638 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1501ms total)
T661C 041:639 JLINK_IsHalted()  returns FALSE (0001ms, 1502ms total)
T661C 041:741 JLINK_IsHalted()  returns FALSE (0001ms, 1502ms total)
T661C 041:843 JLINK_IsHalted()  returns FALSE (0001ms, 1502ms total)
T661C 041:944 JLINK_IsHalted()  returns FALSE (0001ms, 1502ms total)
T661C 042:045 JLINK_IsHalted()  returns FALSE (0001ms, 1502ms total)
T2B58 042:147 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 17 00 00 00  returns 0x04 (0001ms, 1502ms total)
T2B58 042:149 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1503ms total)
T2B58 042:150 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 17 00 00 00  returns 0x04 (0001ms, 1504ms total)
T2B58 042:151 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 26 00 43 E1 00 00 CC FC C0 FB ...  returns 0x20 (0002ms, 1506ms total)
T2B58 042:153 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1507ms total)
T2B58 042:154 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 28 00  returns 0x02 (0001ms, 1508ms total)
T2B58 042:155 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1509ms total)
T2B58 042:158 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4A 00 00 00  returns 0x04 (0001ms, 1510ms total)
T2B58 042:159 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0001ms, 1511ms total)
T2B58 042:160 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1513ms total)
T2B58 042:162 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1514ms total)
T2B58 042:163 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1515ms total)
T661C 042:164 JLINK_IsHalted()  returns FALSE (0001ms, 1516ms total)
T661C 042:269 JLINK_IsHalted()  returns FALSE (0001ms, 1516ms total)
T661C 042:370 JLINK_IsHalted()  returns FALSE (0001ms, 1516ms total)
T661C 042:472 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T661C 042:573 JLINK_IsHalted()  returns FALSE (0001ms, 1516ms total)
T2B58 042:675 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 17 00 00 00  returns 0x04 (0001ms, 1516ms total)
T2B58 042:677 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1517ms total)
T2B58 042:678 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 17 00 00 00  returns 0x04 (0001ms, 1518ms total)
T2B58 042:679 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 27 00 43 E1 00 00 CB FC C0 FB ...  returns 0x20 (0001ms, 1519ms total)
T2B58 042:681 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1520ms total)
T2B58 042:682 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 29 00  returns 0x02 (0001ms, 1521ms total)
T2B58 042:683 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1522ms total)
T2B58 042:684 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4B 00 00 00  returns 0x04 (0001ms, 1523ms total)
T2B58 042:685 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0001ms, 1524ms total)
T2B58 042:686 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1526ms total)
T2B58 042:688 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1527ms total)
T2B58 042:689 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1528ms total)
T661C 042:690 JLINK_IsHalted()  returns FALSE (0001ms, 1529ms total)
T661C 042:792 JLINK_IsHalted()  returns FALSE (0001ms, 1529ms total)
T661C 042:894 JLINK_IsHalted()  returns FALSE (0000ms, 1528ms total)
T661C 042:995 JLINK_IsHalted()  returns FALSE (0001ms, 1529ms total)
T661C 043:097 JLINK_IsHalted()  returns FALSE (0001ms, 1529ms total)
T2B58 043:198 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 17 00 00 00  returns 0x04 (0001ms, 1529ms total)
T2B58 043:200 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 15 00 00 00  returns 0x04 (0001ms, 1530ms total)
T2B58 043:201 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 17 00 00 00  returns 0x04 (0001ms, 1531ms total)
T2B58 043:202 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 27 00 43 E1 00 00 CB FC C0 FB ...  returns 0x20 (0001ms, 1532ms total)
T2B58 043:203 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1533ms total)
T2B58 043:205 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 29 00  returns 0x02 (0001ms, 1534ms total)
T2B58 043:206 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1535ms total)
T2B58 043:207 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4B 00 00 00  returns 0x04 (0001ms, 1536ms total)
T2B58 043:208 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 24 00 00 00  returns 0x04 (0001ms, 1537ms total)
T2B58 043:209 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1539ms total)
T2B58 043:211 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1540ms total)
T2B58 043:213 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1541ms total)
T661C 043:214 JLINK_IsHalted()  returns FALSE (0001ms, 1542ms total)
T661C 043:316 JLINK_IsHalted()  returns FALSE (0001ms, 1542ms total)
T661C 043:418 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T661C 043:519 JLINK_IsHalted()  returns FALSE (0001ms, 1542ms total)
T661C 043:621 JLINK_IsHalted()  returns FALSE (0001ms, 1542ms total)
T2B58 043:722 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 18 00 00 00  returns 0x04 (0001ms, 1542ms total)
T2B58 043:724 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 16 00 00 00  returns 0x04 (0001ms, 1543ms total)
T2B58 043:725 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 18 00 00 00  returns 0x04 (0001ms, 1544ms total)
T2B58 043:727 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 28 00 43 E1 00 00 CA FC C0 FB ...  returns 0x20 (0001ms, 1545ms total)
T2B58 043:729 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 1545ms total)
T2B58 043:730 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2A 00  returns 0x02 (0000ms, 1545ms total)
T2B58 043:731 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1547ms total)
T2B58 043:733 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4D 00 00 00  returns 0x04 (0002ms, 1549ms total)
T2B58 043:735 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 25 00 00 00  returns 0x04 (0001ms, 1550ms total)
T2B58 043:736 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1552ms total)
T2B58 043:738 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1553ms total)
T2B58 043:739 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1554ms total)
T661C 043:741 JLINK_IsHalted()  returns FALSE (0000ms, 1554ms total)
T661C 043:842 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T661C 043:944 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T661C 044:045 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T661C 044:147 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T2B58 044:248 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 18 00 00 00  returns 0x04 (0001ms, 1555ms total)
T2B58 044:250 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 16 00 00 00  returns 0x04 (0001ms, 1556ms total)
T2B58 044:251 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 18 00 00 00  returns 0x04 (0001ms, 1557ms total)
T2B58 044:253 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 29 00 43 E1 00 00 C9 FC C0 FB ...  returns 0x20 (0001ms, 1558ms total)
T2B58 044:255 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1559ms total)
T2B58 044:256 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2B 00  returns 0x02 (0001ms, 1560ms total)
T2B58 044:258 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1561ms total)
T2B58 044:259 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4E 00 00 00  returns 0x04 (0001ms, 1562ms total)
T2B58 044:261 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 25 00 00 00  returns 0x04 (0001ms, 1563ms total)
T2B58 044:262 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1564ms total)
T2B58 044:264 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1566ms total)
T2B58 044:265 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1567ms total)
T661C 044:267 JLINK_IsHalted()  returns FALSE (0003ms, 1570ms total)
T661C 044:371 JLINK_IsHalted()  returns FALSE (0001ms, 1568ms total)
T661C 044:473 JLINK_IsHalted()  returns FALSE (0001ms, 1568ms total)
T661C 044:576 JLINK_IsHalted()  returns FALSE (0004ms, 1571ms total)
T661C 044:681 JLINK_IsHalted()  returns FALSE (0001ms, 1568ms total)
T2B58 044:784 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 19 00 00 00  returns 0x04 (0001ms, 1568ms total)
T2B58 044:786 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 17 00 00 00  returns 0x04 (0001ms, 1569ms total)
T2B58 044:788 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 19 00 00 00  returns 0x04 (0001ms, 1570ms total)
T2B58 044:789 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 29 00 43 E1 00 00 C9 FC C0 FB ...  returns 0x20 (0002ms, 1572ms total)
T2B58 044:791 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1573ms total)
T2B58 044:792 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2B 00  returns 0x02 (0001ms, 1574ms total)
T2B58 044:793 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1575ms total)
T2B58 044:794 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 4F 00 00 00  returns 0x04 (0001ms, 1576ms total)
T2B58 044:796 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 26 00 00 00  returns 0x04 (0001ms, 1577ms total)
T2B58 044:797 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1578ms total)
T2B58 044:799 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1579ms total)
T2B58 044:800 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1580ms total)
T661C 044:801 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T661C 044:903 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T661C 045:004 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T661C 045:107 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T661C 045:208 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T2B58 045:309 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 19 00 00 00  returns 0x04 (0001ms, 1581ms total)
T2B58 045:311 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 17 00 00 00  returns 0x04 (0001ms, 1582ms total)
T2B58 045:313 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 19 00 00 00  returns 0x04 (0001ms, 1583ms total)
T2B58 045:314 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2A 00 43 E1 00 00 C8 FC C0 FB ...  returns 0x20 (0001ms, 1584ms total)
T2B58 045:316 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1585ms total)
T2B58 045:318 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2C 00  returns 0x02 (0001ms, 1586ms total)
T2B58 045:320 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1587ms total)
T2B58 045:321 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 50 00 00 00  returns 0x04 (0001ms, 1588ms total)
T2B58 045:323 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 26 00 00 00  returns 0x04 (0001ms, 1589ms total)
T2B58 045:324 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1591ms total)
T2B58 045:326 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1592ms total)
T2B58 045:327 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1593ms total)
T661C 045:329 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T661C 045:430 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T661C 045:532 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T661C 045:633 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T661C 045:734 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T2B58 045:837 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1594ms total)
T2B58 045:839 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 18 00 00 00  returns 0x04 (0001ms, 1595ms total)
T2B58 045:840 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1596ms total)
T2B58 045:842 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2A 00 43 E1 00 00 C8 FC C0 FB ...  returns 0x20 (0001ms, 1597ms total)
T2B58 045:843 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1598ms total)
T2B58 045:845 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2C 00  returns 0x02 (0001ms, 1599ms total)
T2B58 045:846 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1600ms total)
T2B58 045:847 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 51 00 00 00  returns 0x04 (0001ms, 1601ms total)
T2B58 045:849 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 27 00 00 00  returns 0x04 (0001ms, 1602ms total)
T2B58 045:850 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1604ms total)
T2B58 045:853 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1605ms total)
T2B58 045:854 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1606ms total)
T661C 045:855 JLINK_IsHalted()  returns FALSE (0001ms, 1607ms total)
T661C 045:957 JLINK_IsHalted()  returns FALSE (0001ms, 1607ms total)
T661C 046:059 JLINK_IsHalted()  returns FALSE (0001ms, 1607ms total)
T661C 046:160 JLINK_IsHalted()  returns FALSE (0001ms, 1607ms total)
T661C 046:261 JLINK_IsHalted()  returns FALSE (0001ms, 1607ms total)
T2B58 046:363 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1607ms total)
T2B58 046:365 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 18 00 00 00  returns 0x04 (0001ms, 1608ms total)
T2B58 046:367 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1609ms total)
T2B58 046:368 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2B 00 43 E1 00 00 C7 FC C0 FB ...  returns 0x20 (0001ms, 1610ms total)
T2B58 046:370 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1611ms total)
T2B58 046:371 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2D 00  returns 0x02 (0002ms, 1613ms total)
T2B58 046:373 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1614ms total)
T2B58 046:374 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 52 00 00 00  returns 0x04 (0001ms, 1615ms total)
T2B58 046:376 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 27 00 00 00  returns 0x04 (0001ms, 1616ms total)
T2B58 046:377 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1617ms total)
T2B58 046:379 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1618ms total)
T2B58 046:380 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1619ms total)
T661C 046:381 JLINK_IsHalted()  returns FALSE (0001ms, 1620ms total)
T661C 046:483 JLINK_IsHalted()  returns FALSE (0001ms, 1620ms total)
T661C 046:584 JLINK_IsHalted()  returns FALSE (0001ms, 1620ms total)
T661C 046:685 JLINK_IsHalted()  returns FALSE (0000ms, 1619ms total)
T661C 046:787 JLINK_IsHalted()  returns FALSE (0000ms, 1619ms total)
T2B58 046:888 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1620ms total)
T2B58 046:890 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 19 00 00 00  returns 0x04 (0001ms, 1621ms total)
T2B58 046:892 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1622ms total)
T2B58 046:893 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2B 00 43 E1 00 00 C7 FC C0 FB ...  returns 0x20 (0001ms, 1623ms total)
T2B58 046:894 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1624ms total)
T2B58 046:896 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2D 00  returns 0x02 (0001ms, 1625ms total)
T2B58 046:897 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1626ms total)
T2B58 046:898 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 53 00 00 00  returns 0x04 (0001ms, 1627ms total)
T2B58 046:899 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 28 00 00 00  returns 0x04 (0001ms, 1628ms total)
T2B58 046:900 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1630ms total)
T2B58 046:902 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1631ms total)
T2B58 046:904 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0000ms, 1631ms total)
T661C 046:905 JLINK_IsHalted()  returns FALSE (0001ms, 1632ms total)
T661C 047:007 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T661C 047:108 JLINK_IsHalted()  returns FALSE (0001ms, 1632ms total)
T661C 047:209 JLINK_IsHalted()  returns FALSE (0001ms, 1632ms total)
T661C 047:311 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2B58 047:413 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1632ms total)
T2B58 047:415 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 19 00 00 00  returns 0x04 (0001ms, 1633ms total)
T2B58 047:416 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1634ms total)
T2B58 047:417 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2C 00 43 E1 00 00 C6 FC C0 FB ...  returns 0x20 (0002ms, 1636ms total)
T2B58 047:419 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1637ms total)
T2B58 047:421 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2E 00  returns 0x02 (0000ms, 1637ms total)
T2B58 047:422 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1638ms total)
T2B58 047:423 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 54 00 00 00  returns 0x04 (0001ms, 1639ms total)
T2B58 047:424 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 28 00 00 00  returns 0x04 (0001ms, 1640ms total)
T2B58 047:425 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1642ms total)
T2B58 047:427 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1643ms total)
T2B58 047:429 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 1643ms total)
T661C 047:430 JLINK_IsHalted()  returns FALSE (0001ms, 1644ms total)
T661C 047:532 JLINK_IsHalted()  returns FALSE (0001ms, 1644ms total)
T661C 047:634 JLINK_IsHalted()  returns FALSE (0001ms, 1644ms total)
T661C 047:737 JLINK_IsHalted()  returns FALSE (0001ms, 1644ms total)
T661C 047:838 JLINK_IsHalted()  returns FALSE (0001ms, 1644ms total)
T2B58 047:939 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1644ms total)
T2B58 047:941 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1645ms total)
T2B58 047:942 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1646ms total)
T2B58 047:944 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2C 00 43 E1 00 00 C6 FC C0 FB ...  returns 0x20 (0001ms, 1647ms total)
T2B58 047:945 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1648ms total)
T2B58 047:946 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2E 00  returns 0x02 (0002ms, 1650ms total)
T2B58 047:949 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1651ms total)
T2B58 047:950 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 55 00 00 00  returns 0x04 (0001ms, 1652ms total)
T2B58 047:951 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 29 00 00 00  returns 0x04 (0001ms, 1653ms total)
T2B58 047:952 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0003ms, 1656ms total)
T2B58 047:955 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1657ms total)
T2B58 047:956 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1658ms total)
T661C 047:958 JLINK_IsHalted()  returns FALSE (0000ms, 1658ms total)
T661C 048:059 JLINK_IsHalted()  returns FALSE (0001ms, 1659ms total)
T661C 048:160 JLINK_IsHalted()  returns FALSE (0001ms, 1659ms total)
T661C 048:262 JLINK_IsHalted()  returns FALSE (0001ms, 1659ms total)
T661C 048:365 JLINK_IsHalted()  returns FALSE (0001ms, 1659ms total)
T2B58 048:467 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1659ms total)
T2B58 048:469 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1660ms total)
T2B58 048:470 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1661ms total)
T2B58 048:471 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2D 00 43 E1 00 00 C5 FC C0 FB ...  returns 0x20 (0002ms, 1663ms total)
T2B58 048:473 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T2B58 048:474 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2F 00  returns 0x02 (0001ms, 1665ms total)
T2B58 048:476 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1666ms total)
T2B58 048:478 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 56 00 00 00  returns 0x04 (0001ms, 1667ms total)
T2B58 048:479 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 29 00 00 00  returns 0x04 (0001ms, 1668ms total)
T2B58 048:480 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1670ms total)
T2B58 048:482 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1671ms total)
T2B58 048:483 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1672ms total)
T661C 048:485 JLINK_IsHalted()  returns FALSE (0000ms, 1672ms total)
T661C 048:586 JLINK_IsHalted()  returns FALSE (0001ms, 1673ms total)
T661C 048:688 JLINK_IsHalted()  returns FALSE (0001ms, 1673ms total)
T661C 048:789 JLINK_IsHalted()  returns FALSE (0001ms, 1673ms total)
T661C 048:891 JLINK_IsHalted()  returns FALSE (0001ms, 1673ms total)
T2B58 048:993 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1673ms total)
T2B58 048:995 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1A 00 00 00  returns 0x04 (0000ms, 1673ms total)
T2B58 048:995 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1674ms total)
T2B58 048:996 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2D 00 43 E1 00 00 C5 FC C0 FB ...  returns 0x20 (0002ms, 1676ms total)
T2B58 048:998 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1677ms total)
T2B58 048:999 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 2F 00  returns 0x02 (0001ms, 1678ms total)
T2B58 049:001 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1679ms total)
T2B58 049:002 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 57 00 00 00  returns 0x04 (0001ms, 1680ms total)
T2B58 049:003 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1681ms total)
T2B58 049:004 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1683ms total)
T2B58 049:006 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1684ms total)
T2B58 049:007 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1685ms total)
T661C 049:009 JLINK_IsHalted()  returns FALSE (0000ms, 1685ms total)
T661C 049:111 JLINK_IsHalted()  returns FALSE (0001ms, 1686ms total)
T661C 049:213 JLINK_IsHalted()  returns FALSE (0001ms, 1686ms total)
T661C 049:314 JLINK_IsHalted()  returns FALSE (0001ms, 1686ms total)
T661C 049:416 JLINK_IsHalted()  returns FALSE (0001ms, 1686ms total)
T2B58 049:518 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1686ms total)
T2B58 049:519 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1687ms total)
T2B58 049:520 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1688ms total)
T2B58 049:521 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2E 00 43 E1 00 00 C4 FC C0 FB ...  returns 0x20 (0002ms, 1690ms total)
T2B58 049:523 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1691ms total)
T2B58 049:525 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 30 00  returns 0x02 (0001ms, 1692ms total)
T2B58 049:526 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1693ms total)
T2B58 049:527 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 58 00 00 00  returns 0x04 (0001ms, 1694ms total)
T2B58 049:528 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1695ms total)
T2B58 049:529 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1697ms total)
T2B58 049:533 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1698ms total)
T2B58 049:534 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1699ms total)
T661C 049:535 JLINK_IsHalted()  returns FALSE (0001ms, 1700ms total)
T661C 049:636 JLINK_IsHalted()  returns FALSE (0001ms, 1700ms total)
T661C 049:737 JLINK_IsHalted()  returns FALSE (0001ms, 1700ms total)
T661C 049:839 JLINK_IsHalted()  returns FALSE (0001ms, 1700ms total)
T661C 049:940 JLINK_IsHalted()  returns FALSE (0000ms, 1699ms total)
T2B58 050:042 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1700ms total)
T2B58 050:044 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1701ms total)
T2B58 050:045 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1702ms total)
T2B58 050:047 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2E 00 43 E1 00 00 C4 FC C0 FB ...  returns 0x20 (0001ms, 1703ms total)
T2B58 050:048 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T2B58 050:049 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 30 00  returns 0x02 (0001ms, 1705ms total)
T2B58 050:050 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 1707ms total)
T2B58 050:053 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 59 00 00 00  returns 0x04 (0001ms, 1708ms total)
T2B58 050:055 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2B 00 00 00  returns 0x04 (0000ms, 1708ms total)
T2B58 050:056 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1710ms total)
T2B58 050:058 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1711ms total)
T2B58 050:059 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1712ms total)
T661C 050:060 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T661C 050:161 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T661C 050:263 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T661C 050:364 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T661C 050:466 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T2B58 050:567 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1713ms total)
T2B58 050:569 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1714ms total)
T2B58 050:570 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1715ms total)
T2B58 050:572 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2F 00 43 E1 00 00 C3 FC C0 FB ...  returns 0x20 (0001ms, 1716ms total)
T2B58 050:574 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1717ms total)
T2B58 050:575 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 31 00  returns 0x02 (0001ms, 1718ms total)
T2B58 050:576 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1719ms total)
T2B58 050:578 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5B 00 00 00  returns 0x04 (0001ms, 1720ms total)
T2B58 050:579 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1721ms total)
T2B58 050:581 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1722ms total)
T2B58 050:583 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1723ms total)
T2B58 050:584 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1724ms total)
T661C 050:585 JLINK_IsHalted()  returns FALSE (0001ms, 1725ms total)
T661C 050:687 JLINK_IsHalted()  returns FALSE (0001ms, 1725ms total)
T661C 050:790 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T661C 050:891 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T661C 050:993 JLINK_IsHalted()  returns FALSE (0001ms, 1725ms total)
T2B58 051:095 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1725ms total)
T2B58 051:098 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1726ms total)
T2B58 051:099 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1727ms total)
T2B58 051:100 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 2F 00 43 E1 00 00 C3 FC C0 FB ...  returns 0x20 (0002ms, 1729ms total)
T2B58 051:102 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 1729ms total)
T2B58 051:103 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 31 00  returns 0x02 (0001ms, 1730ms total)
T2B58 051:104 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1731ms total)
T2B58 051:105 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5B 00 00 00  returns 0x04 (0001ms, 1732ms total)
T2B58 051:106 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2C 00 00 00  returns 0x04 (0002ms, 1734ms total)
T2B58 051:108 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1735ms total)
T2B58 051:109 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1736ms total)
T2B58 051:111 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 1736ms total)
T661C 051:112 JLINK_IsHalted()  returns FALSE (0001ms, 1737ms total)
T661C 051:213 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T661C 051:314 JLINK_IsHalted()  returns FALSE (0001ms, 1737ms total)
T661C 051:416 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T661C 051:517 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T2B58 051:618 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1737ms total)
T2B58 051:620 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1738ms total)
T2B58 051:622 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1739ms total)
T2B58 051:623 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 30 00 43 E1 00 00 C2 FC C0 FB ...  returns 0x20 (0001ms, 1740ms total)
T2B58 051:625 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1741ms total)
T2B58 051:626 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 32 00  returns 0x02 (0001ms, 1742ms total)
T2B58 051:627 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 1744ms total)
T2B58 051:630 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5D 00 00 00  returns 0x04 (0001ms, 1745ms total)
T2B58 051:631 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1746ms total)
T2B58 051:632 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1748ms total)
T2B58 051:634 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1749ms total)
T2B58 051:635 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1750ms total)
T661C 051:636 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T661C 051:739 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T661C 051:840 JLINK_IsHalted()  returns FALSE (0000ms, 1750ms total)
T661C 051:942 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T661C 052:043 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T2B58 052:145 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1751ms total)
T2B58 052:146 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0002ms, 1753ms total)
T2B58 052:148 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1754ms total)
T2B58 052:149 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 30 00 43 E1 00 00 C2 FC C0 FB ...  returns 0x20 (0001ms, 1755ms total)
T2B58 052:150 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1756ms total)
T2B58 052:151 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 32 00  returns 0x02 (0001ms, 1757ms total)
T2B58 052:153 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1757ms total)
T2B58 052:154 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5D 00 00 00  returns 0x04 (0001ms, 1758ms total)
T2B58 052:155 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1759ms total)
T2B58 052:157 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1760ms total)
T2B58 052:158 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1761ms total)
T2B58 052:160 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1762ms total)
T661C 052:161 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T661C 052:263 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T661C 052:365 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T661C 052:467 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T661C 052:568 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T2B58 052:670 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1763ms total)
T2B58 052:671 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0002ms, 1765ms total)
T2B58 052:673 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0000ms, 1765ms total)
T2B58 052:673 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 31 00 43 E1 00 00 C1 FC C0 FB ...  returns 0x20 (0002ms, 1767ms total)
T2B58 052:676 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1768ms total)
T2B58 052:678 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 33 00  returns 0x02 (0001ms, 1769ms total)
T2B58 052:679 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1770ms total)
T2B58 052:681 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5F 00 00 00  returns 0x04 (0001ms, 1771ms total)
T2B58 052:682 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1772ms total)
T2B58 052:683 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1774ms total)
T2B58 052:685 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1775ms total)
T2B58 052:686 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1776ms total)
T661C 052:687 JLINK_IsHalted()  returns FALSE (0001ms, 1777ms total)
T661C 052:789 JLINK_IsHalted()  returns FALSE (0001ms, 1777ms total)
T661C 052:891 JLINK_IsHalted()  returns FALSE (0000ms, 1776ms total)
T661C 052:993 JLINK_IsHalted()  returns FALSE (0001ms, 1777ms total)
T661C 053:094 JLINK_IsHalted()  returns FALSE (0001ms, 1777ms total)
T2B58 053:195 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1777ms total)
T2B58 053:197 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1778ms total)
T2B58 053:198 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1779ms total)
T2B58 053:199 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 31 00 43 E1 00 00 C1 FC C0 FB ...  returns 0x20 (0002ms, 1781ms total)
T2B58 053:201 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1782ms total)
T2B58 053:202 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 33 00  returns 0x02 (0001ms, 1783ms total)
T2B58 053:203 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1784ms total)
T2B58 053:205 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 5F 00 00 00  returns 0x04 (0001ms, 1785ms total)
T2B58 053:206 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1786ms total)
T2B58 053:207 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1787ms total)
T2B58 053:208 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1788ms total)
T2B58 053:210 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1789ms total)
T661C 053:211 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T661C 053:314 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T661C 053:415 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T661C 053:517 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T661C 053:618 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T2B58 053:719 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1790ms total)
T2B58 053:721 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1791ms total)
T2B58 053:722 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1792ms total)
T2B58 053:723 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 32 00 43 E1 00 00 C0 FC C0 FB ...  returns 0x20 (0001ms, 1793ms total)
T2B58 053:725 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1794ms total)
T2B58 053:726 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 34 00  returns 0x02 (0001ms, 1795ms total)
T2B58 053:727 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1796ms total)
T2B58 053:729 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 61 00 00 00  returns 0x04 (0000ms, 1796ms total)
T2B58 053:730 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1797ms total)
T2B58 053:731 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1799ms total)
T2B58 053:734 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1800ms total)
T2B58 053:735 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1801ms total)
T661C 053:736 JLINK_IsHalted()  returns FALSE (0001ms, 1802ms total)
T661C 053:838 JLINK_IsHalted()  returns FALSE (0001ms, 1802ms total)
T661C 053:941 JLINK_IsHalted()  returns FALSE (0001ms, 1802ms total)
T661C 054:043 JLINK_IsHalted()  returns FALSE (0001ms, 1802ms total)
T661C 054:144 JLINK_IsHalted()  returns FALSE (0001ms, 1802ms total)
T2B58 054:247 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1802ms total)
T2B58 054:249 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1803ms total)
T2B58 054:250 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1804ms total)
T2B58 054:251 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 33 00 43 E1 00 00 BF FC C0 FB ...  returns 0x20 (0001ms, 1805ms total)
T2B58 054:253 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1806ms total)
T2B58 054:255 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 35 00  returns 0x02 (0001ms, 1807ms total)
T2B58 054:256 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1808ms total)
T2B58 054:258 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 62 00 00 00  returns 0x04 (0001ms, 1809ms total)
T2B58 054:259 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1810ms total)
T2B58 054:260 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 1812ms total)
T2B58 054:262 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1813ms total)
T2B58 054:264 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1814ms total)
T661C 054:265 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T661C 054:367 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T661C 054:468 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T661C 054:569 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T661C 054:672 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T2B58 054:773 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1815ms total)
T2B58 054:775 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1816ms total)
T2B58 054:776 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1817ms total)
T2B58 054:778 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 33 00 43 E1 00 00 BF FC C0 FB ...  returns 0x20 (0001ms, 1818ms total)
T2B58 054:779 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1819ms total)
T2B58 054:781 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 35 00  returns 0x02 (0001ms, 1820ms total)
T2B58 054:782 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1821ms total)
T2B58 054:783 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 63 00 00 00  returns 0x04 (0001ms, 1822ms total)
T2B58 054:784 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 30 00 00 00  returns 0x04 (0001ms, 1823ms total)
T2B58 054:786 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 1824ms total)
T2B58 054:788 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1825ms total)
T2B58 054:790 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1826ms total)
T661C 054:792 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T661C 054:893 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T661C 054:995 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T661C 055:096 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T661C 055:198 JLINK_IsHalted()  returns FALSE (0001ms, 1827ms total)
T2B58 055:299 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1827ms total)
T2B58 055:301 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1828ms total)
T2B58 055:302 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1829ms total)
T2B58 055:303 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 34 00 43 E1 00 00 BE FC C0 FB ...  returns 0x20 (0002ms, 1831ms total)
T2B58 055:305 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1832ms total)
T2B58 055:306 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 36 00  returns 0x02 (0001ms, 1833ms total)
T2B58 055:307 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1834ms total)
T2B58 055:310 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 64 00 00 00  returns 0x04 (0001ms, 1835ms total)
T2B58 055:311 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 30 00 00 00  returns 0x04 (0001ms, 1836ms total)
T2B58 055:312 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 1838ms total)
T2B58 055:314 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1839ms total)
T2B58 055:316 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0000ms, 1839ms total)
T661C 055:317 JLINK_IsHalted()  returns FALSE (0001ms, 1840ms total)
T661C 055:418 JLINK_IsHalted()  returns FALSE (0001ms, 1840ms total)
T661C 055:520 JLINK_IsHalted()  returns FALSE (0001ms, 1840ms total)
T661C 055:622 JLINK_IsHalted()  returns FALSE (0001ms, 1840ms total)
T661C 055:723 JLINK_IsHalted()  returns FALSE (0002ms, 1841ms total)
T2B58 055:826 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1840ms total)
T2B58 055:828 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1841ms total)
T2B58 055:829 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1842ms total)
T2B58 055:830 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 34 00 43 E1 00 00 BE FC C0 FB ...  returns 0x20 (0001ms, 1843ms total)
T2B58 055:831 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1844ms total)
T2B58 055:832 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 36 00  returns 0x02 (0001ms, 1845ms total)
T2B58 055:834 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1846ms total)
T2B58 055:835 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 65 00 00 00  returns 0x04 (0001ms, 1847ms total)
T2B58 055:837 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 31 00 00 00  returns 0x04 (0000ms, 1847ms total)
T2B58 055:838 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 1848ms total)
T2B58 055:840 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1849ms total)
T2B58 055:841 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1850ms total)
T661C 055:842 JLINK_IsHalted()  returns FALSE (0002ms, 1852ms total)
T661C 055:945 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T661C 056:047 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T661C 056:148 JLINK_IsHalted()  returns FALSE (0001ms, 1851ms total)
T661C 056:250 JLINK_IsHalted()  returns FALSE (0001ms, 1851ms total)
T2B58 056:351 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1851ms total)
T2B58 056:352 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1D 00 00 00  returns 0x04 (0002ms, 1853ms total)
T2B58 056:354 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1854ms total)
T2B58 056:355 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 35 00 43 E1 00 00 BD FC C0 FB ...  returns 0x20 (0001ms, 1855ms total)
T2B58 056:357 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 1857ms total)
T2B58 056:359 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 37 00  returns 0x02 (0001ms, 1858ms total)
T2B58 056:360 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1859ms total)
T2B58 056:362 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 66 00 00 00  returns 0x04 (0001ms, 1860ms total)
T2B58 056:363 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 31 00 00 00  returns 0x04 (0001ms, 1861ms total)
T2B58 056:364 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1863ms total)
T2B58 056:366 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1864ms total)
T2B58 056:367 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1865ms total)
T661C 056:368 JLINK_IsHalted()  returns FALSE (0001ms, 1866ms total)
T661C 056:470 JLINK_IsHalted()  returns FALSE (0000ms, 1865ms total)
T661C 056:571 JLINK_IsHalted()  returns FALSE (0000ms, 1865ms total)
T661C 056:672 JLINK_IsHalted()  returns FALSE (0001ms, 1866ms total)
T661C 056:774 JLINK_IsHalted()  returns FALSE (0002ms, 1867ms total)
T2B58 056:877 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 20 00 00 00  returns 0x04 (0001ms, 1866ms total)
T2B58 056:879 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1867ms total)
T2B58 056:880 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 20 00 00 00  returns 0x04 (0001ms, 1868ms total)
T2B58 056:881 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 35 00 43 E1 00 00 BD FC C0 FB ...  returns 0x20 (0002ms, 1870ms total)
T2B58 056:883 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1871ms total)
T2B58 056:884 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 37 00  returns 0x02 (0001ms, 1872ms total)
T2B58 056:885 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1873ms total)
T2B58 056:887 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 67 00 00 00  returns 0x04 (0001ms, 1874ms total)
T2B58 056:888 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 32 00 00 00  returns 0x04 (0001ms, 1875ms total)
T2B58 056:890 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1876ms total)
T2B58 056:894 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1877ms total)
T2B58 056:895 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1878ms total)
T661C 056:896 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T661C 056:998 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T661C 057:099 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T661C 057:201 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T661C 057:302 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T2B58 057:403 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 20 00 00 00  returns 0x04 (0001ms, 1879ms total)
T2B58 057:407 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1881ms total)
T2B58 057:408 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 20 00 00 00  returns 0x04 (0001ms, 1882ms total)
T2B58 057:409 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 36 00 43 E1 00 00 BC FC C0 FB ...  returns 0x20 (0002ms, 1884ms total)
T2B58 057:411 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1885ms total)
T2B58 057:413 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 38 00  returns 0x02 (0001ms, 1886ms total)
T2B58 057:414 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1887ms total)
T2B58 057:415 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 68 00 00 00  returns 0x04 (0001ms, 1888ms total)
T2B58 057:417 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 32 00 00 00  returns 0x04 (0001ms, 1889ms total)
T2B58 057:418 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1890ms total)
T2B58 057:420 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1891ms total)
T2B58 057:421 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1892ms total)
T661C 057:422 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T661C 057:524 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T661C 057:625 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T661C 057:727 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T661C 057:828 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T2B58 057:929 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 21 00 00 00  returns 0x04 (0001ms, 1893ms total)
T2B58 057:931 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1894ms total)
T2B58 057:932 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 21 00 00 00  returns 0x04 (0001ms, 1895ms total)
T2B58 057:933 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 36 00 43 E1 00 00 BC FC C0 FB ...  returns 0x20 (0002ms, 1897ms total)
T2B58 057:935 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1898ms total)
T2B58 057:936 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 38 00  returns 0x02 (0001ms, 1899ms total)
T2B58 057:937 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1900ms total)
T2B58 057:939 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 69 00 00 00  returns 0x04 (0001ms, 1901ms total)
T2B58 057:940 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 33 00 00 00  returns 0x04 (0001ms, 1902ms total)
T2B58 057:941 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1904ms total)
T2B58 057:943 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1905ms total)
T2B58 057:945 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0000ms, 1905ms total)
T661C 057:946 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T661C 058:048 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T661C 058:149 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T661C 058:250 JLINK_IsHalted()  returns FALSE (0002ms, 1908ms total)
T661C 058:353 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T2B58 058:454 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 21 00 00 00  returns 0x04 (0001ms, 1907ms total)
T2B58 058:457 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 1F 00 00 00  returns 0x04 (0000ms, 1907ms total)
T2B58 058:457 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 21 00 00 00  returns 0x04 (0001ms, 1908ms total)
T2B58 058:458 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 37 00 43 E1 00 00 BB FC C0 FB ...  returns 0x20 (0003ms, 1911ms total)
T2B58 058:462 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1912ms total)
T2B58 058:463 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 39 00  returns 0x02 (0000ms, 1912ms total)
T2B58 058:464 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1912ms total)
T2B58 058:465 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6A 00 00 00  returns 0x04 (0001ms, 1913ms total)
T2B58 058:466 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 33 00 00 00  returns 0x04 (0001ms, 1914ms total)
T2B58 058:468 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1916ms total)
T2B58 058:470 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1917ms total)
T2B58 058:471 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1918ms total)
T661C 058:473 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T661C 058:574 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T661C 058:676 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T661C 058:777 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T661C 058:878 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T2B58 058:980 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 22 00 00 00  returns 0x04 (0001ms, 1919ms total)
T2B58 058:982 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1920ms total)
T2B58 058:983 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 22 00 00 00  returns 0x04 (0001ms, 1921ms total)
T2B58 058:984 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 37 00 43 E1 00 00 BB FC C0 FB ...  returns 0x20 (0002ms, 1923ms total)
T2B58 058:986 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1924ms total)
T2B58 058:987 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 39 00  returns 0x02 (0001ms, 1925ms total)
T2B58 058:989 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1926ms total)
T2B58 058:992 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6B 00 00 00  returns 0x04 (0001ms, 1927ms total)
T2B58 058:993 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 34 00 00 00  returns 0x04 (0001ms, 1928ms total)
T2B58 058:994 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1930ms total)
T2B58 058:996 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1931ms total)
T2B58 058:997 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1932ms total)
T661C 058:998 JLINK_IsHalted()  returns FALSE (0001ms, 1933ms total)
T661C 059:100 JLINK_IsHalted()  returns FALSE (0001ms, 1933ms total)
T661C 059:201 JLINK_IsHalted()  returns FALSE (0001ms, 1933ms total)
T661C 059:303 JLINK_IsHalted()  returns FALSE (0001ms, 1933ms total)
T661C 059:405 JLINK_IsHalted()  returns FALSE (0000ms, 1932ms total)
T2B58 059:506 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 22 00 00 00  returns 0x04 (0001ms, 1933ms total)
T2B58 059:508 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1934ms total)
T2B58 059:510 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 22 00 00 00  returns 0x04 (0001ms, 1935ms total)
T2B58 059:511 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 38 00 43 E1 00 00 BA FC C0 FB ...  returns 0x20 (0001ms, 1936ms total)
T2B58 059:513 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1937ms total)
T2B58 059:514 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3A 00  returns 0x02 (0001ms, 1938ms total)
T2B58 059:515 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1939ms total)
T2B58 059:517 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6C 00 00 00  returns 0x04 (0001ms, 1940ms total)
T2B58 059:518 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 34 00 00 00  returns 0x04 (0001ms, 1941ms total)
T2B58 059:519 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 1943ms total)
T2B58 059:521 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1944ms total)
T2B58 059:522 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1945ms total)
T661C 059:523 JLINK_IsHalted()  returns FALSE (0003ms, 1948ms total)
T661C 059:626 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T661C 059:729 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T661C 059:830 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T661C 059:931 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T2B58 060:033 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 23 00 00 00  returns 0x04 (0001ms, 1946ms total)
T2B58 060:035 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 21 00 00 00  returns 0x04 (0001ms, 1947ms total)
T2B58 060:036 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 23 00 00 00  returns 0x04 (0001ms, 1948ms total)
T2B58 060:037 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 38 00 43 E1 00 00 BA FC C0 FB ...  returns 0x20 (0002ms, 1950ms total)
T2B58 060:039 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1951ms total)
T2B58 060:040 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3A 00  returns 0x02 (0001ms, 1952ms total)
T2B58 060:041 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1953ms total)
T2B58 060:043 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6D 00 00 00  returns 0x04 (0001ms, 1954ms total)
T2B58 060:044 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 35 00 00 00  returns 0x04 (0002ms, 1956ms total)
T2B58 060:047 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1958ms total)
T2B58 060:049 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 1959ms total)
T2B58 060:050 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1960ms total)
T661C 060:051 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T661C 060:153 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T661C 060:254 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T661C 060:356 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T661C 060:457 JLINK_IsHalted()  returns FALSE (0002ms, 1962ms total)
T2B58 060:559 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 23 00 00 00  returns 0x04 (0001ms, 1961ms total)
T2B58 060:561 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 21 00 00 00  returns 0x04 (0001ms, 1962ms total)
T2B58 060:562 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 23 00 00 00  returns 0x04 (0001ms, 1963ms total)
T2B58 060:563 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 39 00 43 E1 00 00 B9 FC C0 FB ...  returns 0x20 (0002ms, 1965ms total)
T2B58 060:565 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1966ms total)
T2B58 060:566 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3B 00  returns 0x02 (0001ms, 1967ms total)
T2B58 060:567 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 1968ms total)
T2B58 060:569 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6E 00 00 00  returns 0x04 (0001ms, 1969ms total)
T2B58 060:570 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 35 00 00 00  returns 0x04 (0001ms, 1970ms total)
T2B58 060:571 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0003ms, 1973ms total)
T2B58 060:574 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1974ms total)
T2B58 060:575 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1975ms total)
T661C 060:576 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T661C 060:679 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T661C 060:780 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T661C 060:881 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T661C 060:983 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T2B58 061:084 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 24 00 00 00  returns 0x04 (0001ms, 1976ms total)
T2B58 061:087 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 22 00 00 00  returns 0x04 (0001ms, 1977ms total)
T2B58 061:088 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 24 00 00 00  returns 0x04 (0001ms, 1978ms total)
T2B58 061:089 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 39 00 43 E1 00 00 B9 FC C0 FB ...  returns 0x20 (0002ms, 1980ms total)
T2B58 061:091 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1981ms total)
T2B58 061:092 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3B 00  returns 0x02 (0001ms, 1982ms total)
T2B58 061:095 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1982ms total)
T2B58 061:096 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 6F 00 00 00  returns 0x04 (0001ms, 1983ms total)
T2B58 061:098 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 36 00 00 00  returns 0x04 (0000ms, 1983ms total)
T2B58 061:099 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1984ms total)
T2B58 061:101 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 1985ms total)
T2B58 061:102 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 1986ms total)
T661C 061:103 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T661C 061:206 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T661C 061:307 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T661C 061:409 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T661C 061:511 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T2B58 061:612 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 25 00 00 00  returns 0x04 (0001ms, 1987ms total)
T2B58 061:614 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 23 00 00 00  returns 0x04 (0001ms, 1988ms total)
T2B58 061:616 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 25 00 00 00  returns 0x04 (0001ms, 1989ms total)
T2B58 061:617 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3A 00 43 E1 00 00 B8 FC C0 FB ...  returns 0x20 (0002ms, 1991ms total)
T2B58 061:619 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 1992ms total)
T2B58 061:620 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3C 00  returns 0x02 (0001ms, 1993ms total)
T2B58 061:622 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 1993ms total)
T2B58 061:623 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 71 00 00 00  returns 0x04 (0001ms, 1994ms total)
T2B58 061:624 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 37 00 00 00  returns 0x04 (0001ms, 1995ms total)
T2B58 061:626 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 1996ms total)
T2B58 061:628 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0002ms, 1998ms total)
T2B58 061:630 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 1999ms total)
T661C 061:631 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T661C 061:733 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T661C 061:835 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T661C 061:936 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T661C 062:038 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T2B58 062:140 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 25 00 00 00  returns 0x04 (0001ms, 2000ms total)
T2B58 062:142 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 23 00 00 00  returns 0x04 (0001ms, 2001ms total)
T2B58 062:143 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 25 00 00 00  returns 0x04 (0001ms, 2002ms total)
T2B58 062:144 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3A 00 43 E1 00 00 B8 FC C0 FB ...  returns 0x20 (0002ms, 2004ms total)
T2B58 062:146 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2005ms total)
T2B58 062:147 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3C 00  returns 0x02 (0001ms, 2006ms total)
T2B58 062:148 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 2008ms total)
T2B58 062:151 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 71 00 00 00  returns 0x04 (0001ms, 2009ms total)
T2B58 062:152 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 37 00 00 00  returns 0x04 (0001ms, 2010ms total)
T2B58 062:153 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 01 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2012ms total)
T2B58 062:155 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2013ms total)
T2B58 062:156 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2014ms total)
T661C 062:157 JLINK_IsHalted()  returns FALSE (0001ms, 2015ms total)
T661C 062:259 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
T661C 062:360 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
T661C 062:461 JLINK_IsHalted()  returns FALSE (0001ms, 2015ms total)
T661C 062:563 JLINK_IsHalted()  returns FALSE (0001ms, 2015ms total)
T2B58 062:664 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 26 00 00 00  returns 0x04 (0001ms, 2015ms total)
T2B58 062:666 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 24 00 00 00  returns 0x04 (0001ms, 2016ms total)
T2B58 062:667 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 26 00 00 00  returns 0x04 (0001ms, 2017ms total)
T2B58 062:668 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3B 00 43 E1 00 00 B7 FC C0 FB ...  returns 0x20 (0002ms, 2019ms total)
T2B58 062:670 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2020ms total)
T2B58 062:671 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3D 00  returns 0x02 (0001ms, 2021ms total)
T2B58 062:672 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2022ms total)
T2B58 062:674 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 73 00 00 00  returns 0x04 (0001ms, 2023ms total)
T2B58 062:675 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 38 00 00 00  returns 0x04 (0001ms, 2024ms total)
T2B58 062:676 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0012ms, 2036ms total)
T2B58 062:689 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2037ms total)
T2B58 062:690 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2038ms total)
T661C 062:691 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T661C 062:793 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T661C 062:894 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T661C 062:995 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T661C 063:097 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T2B58 063:198 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 26 00 00 00  returns 0x04 (0001ms, 2039ms total)
T2B58 063:200 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 24 00 00 00  returns 0x04 (0001ms, 2040ms total)
T2B58 063:201 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 26 00 00 00  returns 0x04 (0001ms, 2041ms total)
T2B58 063:203 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3B 00 43 E1 00 00 B7 FC C0 FB ...  returns 0x20 (0001ms, 2042ms total)
T2B58 063:204 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2043ms total)
T2B58 063:205 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3D 00  returns 0x02 (0001ms, 2044ms total)
T2B58 063:207 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 2044ms total)
T2B58 063:208 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 73 00 00 00  returns 0x04 (0001ms, 2045ms total)
T2B58 063:209 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 38 00 00 00  returns 0x04 (0001ms, 2046ms total)
T2B58 063:210 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2048ms total)
T2B58 063:212 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2049ms total)
T2B58 063:213 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2051ms total)
T661C 063:215 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T661C 063:317 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T661C 063:418 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T661C 063:520 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T661C 063:621 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T2B58 063:722 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 27 00 00 00  returns 0x04 (0001ms, 2052ms total)
T2B58 063:724 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 25 00 00 00  returns 0x04 (0001ms, 2053ms total)
T2B58 063:725 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 27 00 00 00  returns 0x04 (0001ms, 2054ms total)
T2B58 063:727 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3C 00 43 E1 00 00 B6 FC C0 FB ...  returns 0x20 (0001ms, 2055ms total)
T2B58 063:729 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2056ms total)
T2B58 063:730 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3E 00  returns 0x02 (0001ms, 2057ms total)
T2B58 063:731 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 2059ms total)
T2B58 063:734 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 75 00 00 00  returns 0x04 (0001ms, 2060ms total)
T2B58 063:735 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 39 00 00 00  returns 0x04 (0001ms, 2061ms total)
T2B58 063:736 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 2063ms total)
T2B58 063:738 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2064ms total)
T2B58 063:739 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2065ms total)
T661C 063:740 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T661C 063:843 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T661C 063:944 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T661C 064:046 JLINK_IsHalted()  returns FALSE (0003ms, 2068ms total)
T661C 064:149 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T2B58 064:250 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 27 00 00 00  returns 0x04 (0001ms, 2066ms total)
T2B58 064:252 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 25 00 00 00  returns 0x04 (0001ms, 2067ms total)
T2B58 064:253 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 27 00 00 00  returns 0x04 (0001ms, 2068ms total)
T2B58 064:254 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3D 00 43 E1 00 00 B5 FC C0 FB ...  returns 0x20 (0002ms, 2070ms total)
T2B58 064:256 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 2072ms total)
T2B58 064:258 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3F 00  returns 0x02 (0001ms, 2073ms total)
T2B58 064:261 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2074ms total)
T2B58 064:263 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 76 00 00 00  returns 0x04 (0001ms, 2075ms total)
T2B58 064:264 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 39 00 00 00  returns 0x04 (0001ms, 2076ms total)
T2B58 064:265 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 2078ms total)
T2B58 064:268 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2079ms total)
T2B58 064:269 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2080ms total)
T661C 064:270 JLINK_IsHalted()  returns FALSE (0001ms, 2081ms total)
T661C 064:373 JLINK_IsHalted()  returns FALSE (0001ms, 2081ms total)
T661C 064:474 JLINK_IsHalted()  returns FALSE (0001ms, 2081ms total)
T661C 064:575 JLINK_IsHalted()  returns FALSE (0000ms, 2080ms total)
T661C 064:677 JLINK_IsHalted()  returns FALSE (0001ms, 2081ms total)
T2B58 064:779 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 28 00 00 00  returns 0x04 (0001ms, 2081ms total)
T2B58 064:782 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 26 00 00 00  returns 0x04 (0001ms, 2082ms total)
T2B58 064:783 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 28 00 00 00  returns 0x04 (0001ms, 2083ms total)
T2B58 064:784 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3D 00 43 E1 00 00 B5 FC C0 FB ...  returns 0x20 (0002ms, 2085ms total)
T2B58 064:786 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2086ms total)
T2B58 064:787 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 3F 00  returns 0x02 (0001ms, 2087ms total)
T2B58 064:789 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2088ms total)
T2B58 064:791 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 77 00 00 00  returns 0x04 (0001ms, 2089ms total)
T2B58 064:792 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3A 00 00 00  returns 0x04 (0001ms, 2090ms total)
T2B58 064:794 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 2091ms total)
T2B58 064:796 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2092ms total)
T2B58 064:797 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2093ms total)
T661C 064:798 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T661C 064:900 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T661C 065:002 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T661C 065:103 JLINK_IsHalted()  returns FALSE (0000ms, 2093ms total)
T661C 065:204 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T2B58 065:305 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 28 00 00 00  returns 0x04 (0001ms, 2094ms total)
T2B58 065:307 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 26 00 00 00  returns 0x04 (0001ms, 2095ms total)
T2B58 065:308 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 28 00 00 00  returns 0x04 (0001ms, 2096ms total)
T2B58 065:309 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3E 00 43 E1 00 00 B4 FC C0 FB ...  returns 0x20 (0002ms, 2098ms total)
T2B58 065:311 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2099ms total)
T2B58 065:313 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 40 00  returns 0x02 (0000ms, 2099ms total)
T2B58 065:314 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2101ms total)
T2B58 065:315 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 78 00 00 00  returns 0x04 (0001ms, 2102ms total)
T2B58 065:318 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3A 00 00 00  returns 0x04 (0001ms, 2103ms total)
T2B58 065:319 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 2104ms total)
T2B58 065:321 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2105ms total)
T2B58 065:322 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2106ms total)
T661C 065:323 JLINK_IsHalted()  returns FALSE (0001ms, 2107ms total)
T661C 065:425 JLINK_IsHalted()  returns FALSE (0000ms, 2106ms total)
T661C 065:527 JLINK_IsHalted()  returns FALSE (0001ms, 2107ms total)
T661C 065:628 JLINK_IsHalted()  returns FALSE (0001ms, 2107ms total)
T661C 065:729 JLINK_IsHalted()  returns FALSE (0001ms, 2107ms total)
T2B58 065:831 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 28 00 00 00  returns 0x04 (0002ms, 2108ms total)
T2B58 065:833 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 26 00 00 00  returns 0x04 (0001ms, 2109ms total)
T2B58 065:834 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 28 00 00 00  returns 0x04 (0001ms, 2110ms total)
T2B58 065:835 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3E 00 43 E1 00 00 B4 FC C0 FB ...  returns 0x20 (0002ms, 2112ms total)
T2B58 065:837 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2113ms total)
T2B58 065:838 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 40 00  returns 0x02 (0001ms, 2114ms total)
T2B58 065:840 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 2114ms total)
T2B58 065:841 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 79 00 00 00  returns 0x04 (0001ms, 2115ms total)
T2B58 065:842 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3B 00 00 00  returns 0x04 (0001ms, 2116ms total)
T2B58 065:843 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0003ms, 2119ms total)
T2B58 065:847 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2120ms total)
T2B58 065:848 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2121ms total)
T661C 065:849 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T661C 065:951 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T661C 066:052 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T661C 066:154 JLINK_IsHalted()  returns FALSE (0002ms, 2123ms total)
T661C 066:256 JLINK_IsHalted()  returns FALSE (0011ms, 2132ms total)
T2B58 066:369 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 28 00 00 00  returns 0x04 (0001ms, 2122ms total)
T2B58 066:371 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 26 00 00 00  returns 0x04 (0001ms, 2123ms total)
T2B58 066:372 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 28 00 00 00  returns 0x04 (0001ms, 2124ms total)
T2B58 066:373 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3F 00 43 E1 00 00 B3 FC C0 FB ...  returns 0x20 (0002ms, 2126ms total)
T2B58 066:375 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2127ms total)
T2B58 066:377 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 41 00  returns 0x02 (0001ms, 2128ms total)
T2B58 066:378 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2129ms total)
T2B58 066:379 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2130ms total)
T2B58 066:381 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3B 00 00 00  returns 0x04 (0001ms, 2131ms total)
T2B58 066:382 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0001ms, 2132ms total)
T2B58 066:384 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2133ms total)
T2B58 066:385 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2134ms total)
T661C 066:386 JLINK_IsHalted()  returns FALSE (0001ms, 2135ms total)
T661C 066:488 JLINK_IsHalted()  returns FALSE (0001ms, 2135ms total)
T661C 066:589 JLINK_IsHalted()  returns FALSE (0001ms, 2135ms total)
T661C 066:690 JLINK_IsHalted()  returns FALSE (0000ms, 2134ms total)
T661C 066:791 JLINK_IsHalted()  returns FALSE (0001ms, 2135ms total)
T2B58 066:893 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 29 00 00 00  returns 0x04 (0014ms, 2148ms total)
T2B58 066:909 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 27 00 00 00  returns 0x04 (0001ms, 2149ms total)
T2B58 066:910 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 29 00 00 00  returns 0x04 (0001ms, 2150ms total)
T2B58 066:911 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 3F 00 43 E1 00 00 B3 FC C0 FB ...  returns 0x20 (0002ms, 2152ms total)
T2B58 066:913 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2153ms total)
T2B58 066:914 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 41 00  returns 0x02 (0001ms, 2154ms total)
T2B58 066:915 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2155ms total)
T2B58 066:916 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7B 00 00 00  returns 0x04 (0001ms, 2156ms total)
T2B58 066:918 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3C 00 00 00  returns 0x04 (0001ms, 2157ms total)
T2B58 066:919 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 2159ms total)
T2B58 066:922 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0000ms, 2159ms total)
T2B58 066:923 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2160ms total)
T661C 066:924 JLINK_IsHalted()  returns FALSE (0001ms, 2161ms total)
T661C 067:026 JLINK_IsHalted()  returns FALSE (0001ms, 2161ms total)
T661C 067:127 JLINK_IsHalted()  returns FALSE (0001ms, 2161ms total)
T661C 067:229 JLINK_IsHalted()  returns FALSE (0001ms, 2161ms total)
T661C 067:331 JLINK_IsHalted()  returns FALSE (0001ms, 2161ms total)
T2B58 067:432 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 29 00 00 00  returns 0x04 (0001ms, 2161ms total)
T2B58 067:434 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 27 00 00 00  returns 0x04 (0001ms, 2162ms total)
T2B58 067:435 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 29 00 00 00  returns 0x04 (0001ms, 2163ms total)
T2B58 067:437 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 40 00 43 E1 00 00 B2 FC C0 FB ...  returns 0x20 (0001ms, 2164ms total)
T2B58 067:439 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2165ms total)
T2B58 067:440 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 42 00  returns 0x02 (0001ms, 2166ms total)
T2B58 067:441 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2167ms total)
T2B58 067:443 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7C 00 00 00  returns 0x04 (0001ms, 2168ms total)
T2B58 067:444 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3C 00 00 00  returns 0x04 (0001ms, 2169ms total)
T2B58 067:445 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 2171ms total)
T2B58 067:447 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2172ms total)
T2B58 067:448 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2174ms total)
T661C 067:450 JLINK_IsHalted()  returns FALSE (0001ms, 2175ms total)
T661C 067:552 JLINK_IsHalted()  returns FALSE (0000ms, 2174ms total)
T661C 067:653 JLINK_IsHalted()  returns FALSE (0001ms, 2175ms total)
T661C 067:755 JLINK_IsHalted()  returns FALSE (0000ms, 2174ms total)
T661C 067:857 JLINK_IsHalted()  returns FALSE (0001ms, 2175ms total)
T2B58 067:958 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2A 00 00 00  returns 0x04 (0001ms, 2175ms total)
T2B58 067:962 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 28 00 00 00  returns 0x04 (0001ms, 2176ms total)
T2B58 067:963 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2A 00 00 00  returns 0x04 (0001ms, 2177ms total)
T2B58 067:964 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 40 00 43 E1 00 00 B2 FC C0 FB ...  returns 0x20 (0002ms, 2179ms total)
T2B58 067:966 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2180ms total)
T2B58 067:967 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 42 00  returns 0x02 (0001ms, 2181ms total)
T2B58 067:968 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2182ms total)
T2B58 067:970 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7D 00 00 00  returns 0x04 (0001ms, 2183ms total)
T2B58 067:971 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3D 00 00 00  returns 0x04 (0001ms, 2184ms total)
T2B58 067:973 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0001ms, 2185ms total)
T2B58 067:975 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2186ms total)
T2B58 067:977 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2187ms total)
T661C 067:978 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T661C 068:080 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T661C 068:181 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T661C 068:282 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T661C 068:384 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T2B58 068:485 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2A 00 00 00  returns 0x04 (0001ms, 2188ms total)
T2B58 068:488 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 28 00 00 00  returns 0x04 (0001ms, 2189ms total)
T2B58 068:489 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2A 00 00 00  returns 0x04 (0001ms, 2190ms total)
T2B58 068:490 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 41 00 43 E1 00 00 B1 FC C0 FB ...  returns 0x20 (0002ms, 2192ms total)
T2B58 068:492 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2193ms total)
T2B58 068:493 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 43 00  returns 0x02 (0001ms, 2194ms total)
T2B58 068:495 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 2194ms total)
T2B58 068:496 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7E 00 00 00  returns 0x04 (0001ms, 2195ms total)
T2B58 068:497 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3D 00 00 00  returns 0x04 (0001ms, 2196ms total)
T2B58 068:498 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 2198ms total)
T2B58 068:500 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2199ms total)
T2B58 068:501 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2200ms total)
T661C 068:502 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T661C 068:605 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T661C 068:706 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T661C 068:808 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T661C 068:909 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T2B58 069:011 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2201ms total)
T2B58 069:013 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2202ms total)
T2B58 069:014 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2203ms total)
T2B58 069:015 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 41 00 43 E1 00 00 B1 FC C0 FB ...  returns 0x20 (0002ms, 2205ms total)
T2B58 069:017 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2206ms total)
T2B58 069:018 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 43 00  returns 0x02 (0001ms, 2207ms total)
T2B58 069:019 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2208ms total)
T2B58 069:021 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 7F 00 00 00  returns 0x04 (0001ms, 2209ms total)
T2B58 069:022 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3E 00 00 00  returns 0x04 (0001ms, 2210ms total)
T2B58 069:023 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 0F 25 47 00 00 B3 FD 00 00 00 ...  returns 0x20 (0002ms, 2212ms total)
T2B58 069:025 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 0F 25  returns 0x02 (0001ms, 2213ms total)
T2B58 069:026 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 21 79 00 00  returns 0x04 (0001ms, 2214ms total)
T661C 069:027 JLINK_IsHalted()  returns FALSE (0001ms, 2215ms total)
T661C 069:129 JLINK_IsHalted()  returns FALSE (0001ms, 2215ms total)
T661C 069:230 JLINK_IsHalted()  returns FALSE (0001ms, 2215ms total)
T661C 069:332 JLINK_IsHalted()  returns FALSE (0001ms, 2215ms total)
T661C 069:433 JLINK_IsHalted()  returns FALSE (0001ms, 2215ms total)
T2B58 069:534 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2215ms total)
T2B58 069:537 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2216ms total)
T2B58 069:538 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2217ms total)
T2B58 069:539 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 42 00 43 E1 00 00 B0 FC C0 FB ...  returns 0x20 (0002ms, 2219ms total)
T2B58 069:541 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2220ms total)
T2B58 069:543 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 44 00  returns 0x02 (0001ms, 2221ms total)
T2B58 069:544 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2222ms total)
T2B58 069:545 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 80 00 00 00  returns 0x04 (0001ms, 2223ms total)
T2B58 069:546 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3E 00 00 00  returns 0x04 (0001ms, 2224ms total)
T2B58 069:547 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 08 0E 33 98 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0002ms, 2226ms total)
T2B58 069:549 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2227ms total)
T2B58 069:551 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2228ms total)
T661C 069:552 JLINK_IsHalted()  returns FALSE (0001ms, 2229ms total)
T661C 069:654 JLINK_IsHalted()  returns FALSE (0001ms, 2229ms total)
T661C 069:755 JLINK_IsHalted()  returns FALSE (0001ms, 2229ms total)
T661C 069:856 JLINK_IsHalted()  returns FALSE (0001ms, 2229ms total)
T661C 069:958 JLINK_IsHalted()  returns FALSE (0001ms, 2229ms total)
T2B58 070:060 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2229ms total)
T2B58 070:061 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2230ms total)
T2B58 070:062 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2231ms total)
T2B58 070:063 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 42 00 43 E1 00 00 B0 FC C0 FB ...  returns 0x20 (0002ms, 2233ms total)
T2B58 070:065 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2234ms total)
T2B58 070:066 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 44 00  returns 0x02 (0001ms, 2235ms total)
T2B58 070:067 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2236ms total)
T2B58 070:069 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 81 00 00 00  returns 0x04 (0001ms, 2237ms total)
T2B58 070:070 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 3F 00 00 00  returns 0x04 (0001ms, 2238ms total)
T2B58 070:071 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 01 B1 FD 00 00 00 ...  returns 0x20 (0003ms, 2241ms total)
T2B58 070:074 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2242ms total)
T2B58 070:076 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2243ms total)
T661C 070:077 JLINK_IsHalted()  returns FALSE (0001ms, 2244ms total)
T661C 070:178 JLINK_IsHalted()  returns FALSE (0001ms, 2244ms total)
T661C 070:279 JLINK_IsHalted()  returns FALSE (0001ms, 2244ms total)
T661C 070:381 JLINK_IsHalted()  returns FALSE (0000ms, 2243ms total)
T661C 070:482 JLINK_IsHalted()  returns FALSE (0001ms, 2244ms total)
T2B58 070:583 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2244ms total)
T2B58 070:584 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2245ms total)
T2B58 070:585 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2246ms total)
T2B58 070:586 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 43 00 43 E1 00 00 AF FC C0 FB ...  returns 0x20 (0002ms, 2248ms total)
T2B58 070:588 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2249ms total)
T2B58 070:590 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2250ms total)
T2B58 070:591 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2251ms total)
T2B58 070:592 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2252ms total)
T2B58 070:593 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2253ms total)
T2B58 070:595 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2254ms total)
T2B58 070:596 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2255ms total)
T2B58 070:597 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2257ms total)
T661C 070:599 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T661C 070:702 JLINK_IsHalted()  returns FALSE (0000ms, 2257ms total)
T661C 070:803 JLINK_IsHalted()  returns FALSE (0000ms, 2257ms total)
T661C 070:904 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T661C 071:006 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T2B58 071:107 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2258ms total)
T2B58 071:108 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2259ms total)
T2B58 071:109 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2260ms total)
T2B58 071:110 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 43 00 43 E1 00 00 AF FC C0 FB ...  returns 0x20 (0002ms, 2262ms total)
T2B58 071:112 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2263ms total)
T2B58 071:113 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2264ms total)
T2B58 071:114 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2265ms total)
T2B58 071:116 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2266ms total)
T2B58 071:117 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2267ms total)
T2B58 071:118 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2269ms total)
T2B58 071:120 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2270ms total)
T2B58 071:121 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2271ms total)
T661C 071:122 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T661C 071:225 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T661C 071:327 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T661C 071:429 JLINK_IsHalted()  returns FALSE (0000ms, 2271ms total)
T661C 071:530 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T2B58 071:631 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2272ms total)
T2B58 071:632 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2273ms total)
T2B58 071:633 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2274ms total)
T2B58 071:634 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 44 00 43 E1 00 00 AE FC C0 FB ...  returns 0x20 (0002ms, 2276ms total)
T2B58 071:636 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 2278ms total)
T2B58 071:639 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0000ms, 2278ms total)
T2B58 071:639 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0002ms, 2280ms total)
T2B58 071:644 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2281ms total)
T2B58 071:645 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2282ms total)
T2B58 071:646 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2283ms total)
T2B58 071:647 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2284ms total)
T2B58 071:648 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2285ms total)
T661C 071:649 JLINK_IsHalted()  returns FALSE (0001ms, 2286ms total)
T661C 071:751 JLINK_IsHalted()  returns FALSE (0001ms, 2286ms total)
T661C 071:853 JLINK_IsHalted()  returns FALSE (0001ms, 2286ms total)
T661C 071:954 JLINK_IsHalted()  returns FALSE (0001ms, 2286ms total)
T661C 072:056 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T2B58 072:157 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2286ms total)
T2B58 072:159 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2287ms total)
T2B58 072:160 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2288ms total)
T2B58 072:161 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 45 00 43 E1 00 00 AD FC C0 FB ...  returns 0x20 (0002ms, 2290ms total)
T2B58 072:163 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2291ms total)
T2B58 072:165 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0000ms, 2291ms total)
T2B58 072:165 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2292ms total)
T2B58 072:167 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2293ms total)
T2B58 072:168 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2294ms total)
T2B58 072:169 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2296ms total)
T2B58 072:171 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2297ms total)
T2B58 072:172 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2298ms total)
T661C 072:173 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T661C 072:274 JLINK_IsHalted()  returns FALSE (0000ms, 2298ms total)
T661C 072:376 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T661C 072:477 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T661C 072:579 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T2B58 072:681 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2299ms total)
T2B58 072:682 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2300ms total)
T2B58 072:683 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2301ms total)
T2B58 072:684 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 45 00 43 E1 00 00 AD FC C0 FB ...  returns 0x20 (0002ms, 2303ms total)
T2B58 072:686 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2304ms total)
T2B58 072:687 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2305ms total)
T2B58 072:688 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2306ms total)
T2B58 072:690 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0000ms, 2306ms total)
T2B58 072:691 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2307ms total)
T2B58 072:692 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2308ms total)
T2B58 072:693 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2309ms total)
T2B58 072:694 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2310ms total)
T661C 072:695 JLINK_IsHalted()  returns FALSE (0001ms, 2311ms total)
T661C 072:797 JLINK_IsHalted()  returns FALSE (0001ms, 2311ms total)
T661C 072:898 JLINK_IsHalted()  returns FALSE (0000ms, 2310ms total)
T661C 073:000 JLINK_IsHalted()  returns FALSE (0001ms, 2311ms total)
T661C 073:102 JLINK_IsHalted()  returns FALSE (0001ms, 2311ms total)
T2B58 073:203 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2311ms total)
T2B58 073:205 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2312ms total)
T2B58 073:206 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2313ms total)
T2B58 073:207 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 46 00 43 E1 00 00 AC FC C0 FB ...  returns 0x20 (0002ms, 2315ms total)
T2B58 073:209 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2316ms total)
T2B58 073:210 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2317ms total)
T2B58 073:211 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2318ms total)
T2B58 073:213 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2319ms total)
T2B58 073:214 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2320ms total)
T2B58 073:215 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2321ms total)
T2B58 073:216 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2322ms total)
T2B58 073:217 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2324ms total)
T661C 073:219 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T661C 073:321 JLINK_IsHalted()  returns FALSE (0002ms, 2326ms total)
T661C 073:423 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T661C 073:525 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T661C 073:626 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T2B58 073:728 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2325ms total)
T2B58 073:730 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2326ms total)
T2B58 073:731 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2327ms total)
T2B58 073:732 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 46 00 43 E1 00 00 AC FC C0 FB ...  returns 0x20 (0002ms, 2329ms total)
T2B58 073:734 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2330ms total)
T2B58 073:735 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2331ms total)
T2B58 073:736 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2332ms total)
T2B58 073:737 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2333ms total)
T2B58 073:738 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0002ms, 2335ms total)
T2B58 073:740 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2337ms total)
T2B58 073:742 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2338ms total)
T2B58 073:743 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2339ms total)
T661C 073:744 JLINK_IsHalted()  returns FALSE (0001ms, 2340ms total)
T661C 073:846 JLINK_IsHalted()  returns FALSE (0001ms, 2340ms total)
T661C 073:947 JLINK_IsHalted()  returns FALSE (0001ms, 2340ms total)
T661C 074:049 JLINK_IsHalted()  returns FALSE (0001ms, 2340ms total)
T661C 074:150 JLINK_IsHalted()  returns FALSE (0000ms, 2339ms total)
T2B58 074:251 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2340ms total)
T2B58 074:253 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2341ms total)
T2B58 074:254 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2342ms total)
T2B58 074:255 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 47 00 43 E1 00 00 AB FC C0 FB ...  returns 0x20 (0001ms, 2343ms total)
T2B58 074:257 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2344ms total)
T2B58 074:258 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2345ms total)
T2B58 074:259 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2346ms total)
T2B58 074:260 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2347ms total)
T2B58 074:261 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2348ms total)
T2B58 074:262 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2350ms total)
T2B58 074:264 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2351ms total)
T2B58 074:265 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2352ms total)
T661C 074:266 JLINK_IsHalted()  returns FALSE (0001ms, 2353ms total)
T661C 074:368 JLINK_IsHalted()  returns FALSE (0001ms, 2353ms total)
T661C 074:469 JLINK_IsHalted()  returns FALSE (0001ms, 2353ms total)
T661C 074:571 JLINK_IsHalted()  returns FALSE (0001ms, 2353ms total)
T661C 074:673 JLINK_IsHalted()  returns FALSE (0001ms, 2353ms total)
T2B58 074:774 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2353ms total)
T2B58 074:775 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2354ms total)
T2B58 074:776 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2355ms total)
T2B58 074:777 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 33 98 47 00 43 E1 00 00 AB FC C0 FB ...  returns 0x20 (0003ms, 2358ms total)
T2B58 074:780 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2359ms total)
T2B58 074:781 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2360ms total)
T2B58 074:782 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2361ms total)
T2B58 074:784 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2362ms total)
T2B58 074:785 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2363ms total)
T2B58 074:786 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2364ms total)
T2B58 074:788 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0002ms, 2367ms total)
T2B58 074:790 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0000ms, 2367ms total)
T661C 074:790 JLINK_IsHalted()  returns FALSE (0003ms, 2370ms total)
T661C 074:893 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T661C 074:995 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T661C 075:096 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T661C 075:197 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T2B58 075:298 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2368ms total)
T2B58 075:299 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2369ms total)
T2B58 075:300 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2370ms total)
T2B58 075:301 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 48 00 43 E1 00 00 77 FB C0 FB ...  returns 0x20 (0002ms, 2372ms total)
T2B58 075:303 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2373ms total)
T2B58 075:304 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2374ms total)
T2B58 075:305 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2375ms total)
T2B58 075:307 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0002ms, 2377ms total)
T2B58 075:309 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2378ms total)
T2B58 075:310 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2380ms total)
T2B58 075:312 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2381ms total)
T2B58 075:313 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2382ms total)
T661C 075:314 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T661C 075:416 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T661C 075:518 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T661C 075:619 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T661C 075:721 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T2B58 075:822 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2383ms total)
T2B58 075:823 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2384ms total)
T2B58 075:824 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2385ms total)
T2B58 075:825 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 48 00 43 E1 00 00 77 FB C0 FB ...  returns 0x20 (0002ms, 2387ms total)
T2B58 075:827 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2388ms total)
T2B58 075:828 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0003ms, 2391ms total)
T2B58 075:831 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2392ms total)
T2B58 075:832 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2393ms total)
T2B58 075:833 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2394ms total)
T2B58 075:834 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2396ms total)
T2B58 075:836 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2397ms total)
T2B58 075:837 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2398ms total)
T661C 075:838 JLINK_IsHalted()  returns FALSE (0001ms, 2399ms total)
T661C 075:940 JLINK_IsHalted()  returns FALSE (0001ms, 2399ms total)
T661C 076:042 JLINK_IsHalted()  returns FALSE (0001ms, 2399ms total)
T661C 076:143 JLINK_IsHalted()  returns FALSE (0001ms, 2399ms total)
T661C 076:244 JLINK_IsHalted()  returns FALSE (0001ms, 2399ms total)
T2B58 076:346 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2399ms total)
T2B58 076:348 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2400ms total)
T2B58 076:349 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2401ms total)
T2B58 076:350 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 49 00 43 E1 00 00 76 FB C0 FB ...  returns 0x20 (0001ms, 2402ms total)
T2B58 076:352 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2403ms total)
T2B58 076:353 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2404ms total)
T2B58 076:354 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2405ms total)
T2B58 076:355 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2406ms total)
T2B58 076:356 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2407ms total)
T2B58 076:357 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2409ms total)
T2B58 076:359 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2410ms total)
T2B58 076:360 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2411ms total)
T661C 076:361 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T661C 076:463 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T661C 076:565 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T661C 076:666 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T661C 076:767 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T2B58 076:870 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2412ms total)
T2B58 076:872 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2413ms total)
T2B58 076:873 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2414ms total)
T2B58 076:874 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 49 00 43 E1 00 00 76 FB C0 FB ...  returns 0x20 (0001ms, 2415ms total)
T2B58 076:875 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2416ms total)
T2B58 076:877 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0000ms, 2416ms total)
T2B58 076:877 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2417ms total)
T2B58 076:880 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2418ms total)
T2B58 076:881 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0000ms, 2418ms total)
T2B58 076:881 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2420ms total)
T2B58 076:883 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2421ms total)
T2B58 076:884 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2422ms total)
T661C 076:886 JLINK_IsHalted()  returns FALSE (0001ms, 2423ms total)
T661C 076:987 JLINK_IsHalted()  returns FALSE (0001ms, 2423ms total)
T661C 077:089 JLINK_IsHalted()  returns FALSE (0001ms, 2423ms total)
T661C 077:190 JLINK_IsHalted()  returns FALSE (0001ms, 2423ms total)
T661C 077:292 JLINK_IsHalted()  returns FALSE (0000ms, 2422ms total)
T2B58 077:393 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2423ms total)
T2B58 077:395 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2424ms total)
T2B58 077:396 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2425ms total)
T2B58 077:397 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4A 00 43 E1 00 00 75 FB C0 FB ...  returns 0x20 (0002ms, 2427ms total)
T2B58 077:400 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2428ms total)
T2B58 077:401 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2429ms total)
T2B58 077:402 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2430ms total)
T2B58 077:403 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2431ms total)
T2B58 077:404 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2432ms total)
T2B58 077:405 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2434ms total)
T2B58 077:407 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2435ms total)
T2B58 077:408 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2436ms total)
T661C 077:409 JLINK_IsHalted()  returns FALSE (0001ms, 2437ms total)
T661C 077:511 JLINK_IsHalted()  returns FALSE (0001ms, 2437ms total)
T661C 077:612 JLINK_IsHalted()  returns FALSE (0001ms, 2437ms total)
T661C 077:714 JLINK_IsHalted()  returns FALSE (0001ms, 2437ms total)
T661C 077:815 JLINK_IsHalted()  returns FALSE (0000ms, 2436ms total)
T2B58 077:916 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2437ms total)
T2B58 077:917 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2438ms total)
T2B58 077:918 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2439ms total)
T2B58 077:919 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4B 00 43 E1 00 00 74 FB C0 FB ...  returns 0x20 (0002ms, 2441ms total)
T2B58 077:921 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2442ms total)
T2B58 077:923 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2443ms total)
T2B58 077:924 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 2443ms total)
T2B58 077:925 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2444ms total)
T2B58 077:926 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2445ms total)
T2B58 077:928 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2446ms total)
T2B58 077:929 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2447ms total)
T2B58 077:930 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2448ms total)
T661C 077:931 JLINK_IsHalted()  returns FALSE (0001ms, 2449ms total)
T661C 078:033 JLINK_IsHalted()  returns FALSE (0001ms, 2449ms total)
T661C 078:134 JLINK_IsHalted()  returns FALSE (0001ms, 2449ms total)
T661C 078:235 JLINK_IsHalted()  returns FALSE (0001ms, 2449ms total)
T661C 078:337 JLINK_IsHalted()  returns FALSE (0000ms, 2448ms total)
T2B58 078:439 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2449ms total)
T2B58 078:441 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2450ms total)
T2B58 078:442 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2451ms total)
T2B58 078:443 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4B 00 43 E1 00 00 74 FB C0 FB ...  returns 0x20 (0001ms, 2452ms total)
T2B58 078:444 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2453ms total)
T2B58 078:446 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2454ms total)
T2B58 078:447 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2455ms total)
T2B58 078:448 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2456ms total)
T2B58 078:449 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2457ms total)
T2B58 078:450 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2459ms total)
T2B58 078:452 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2460ms total)
T2B58 078:453 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2461ms total)
T661C 078:454 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
T661C 078:555 JLINK_IsHalted()  returns FALSE (0001ms, 2462ms total)
T661C 078:657 JLINK_IsHalted()  returns FALSE (0001ms, 2462ms total)
T661C 078:758 JLINK_IsHalted()  returns FALSE (0001ms, 2462ms total)
T661C 078:859 JLINK_IsHalted()  returns FALSE (0000ms, 2461ms total)
T2B58 078:961 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2462ms total)
T2B58 078:963 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2463ms total)
T2B58 078:964 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2464ms total)
T2B58 078:965 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4C 00 43 E1 00 00 73 FB C0 FB ...  returns 0x20 (0001ms, 2465ms total)
T2B58 078:967 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2466ms total)
T2B58 078:968 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2467ms total)
T2B58 078:969 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2468ms total)
T2B58 078:971 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0000ms, 2468ms total)
T2B58 078:971 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2469ms total)
T2B58 078:972 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2471ms total)
T2B58 078:974 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2472ms total)
T2B58 078:975 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2474ms total)
T661C 078:977 JLINK_IsHalted()  returns FALSE (0001ms, 2475ms total)
T661C 079:079 JLINK_IsHalted()  returns FALSE (0000ms, 2474ms total)
T661C 079:181 JLINK_IsHalted()  returns FALSE (0001ms, 2475ms total)
T661C 079:282 JLINK_IsHalted()  returns FALSE (0001ms, 2475ms total)
T661C 079:384 JLINK_IsHalted()  returns FALSE (0001ms, 2475ms total)
T2B58 079:485 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2475ms total)
T2B58 079:487 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2476ms total)
T2B58 079:488 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2477ms total)
T2B58 079:489 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4C 00 43 E1 00 00 73 FB C0 FB ...  returns 0x20 (0002ms, 2479ms total)
T2B58 079:491 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2480ms total)
T2B58 079:492 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2481ms total)
T2B58 079:493 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2482ms total)
T2B58 079:494 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0002ms, 2484ms total)
T2B58 079:496 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2485ms total)
T2B58 079:497 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2487ms total)
T2B58 079:499 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2488ms total)
T2B58 079:500 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2489ms total)
T661C 079:501 JLINK_IsHalted()  returns FALSE (0002ms, 2491ms total)
T661C 079:603 JLINK_IsHalted()  returns FALSE (0001ms, 2490ms total)
T661C 079:704 JLINK_IsHalted()  returns FALSE (0001ms, 2490ms total)
T661C 079:806 JLINK_IsHalted()  returns FALSE (0001ms, 2490ms total)
T661C 079:909 JLINK_IsHalted()  returns FALSE (0001ms, 2490ms total)
T2B58 080:010 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2490ms total)
T2B58 080:011 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2491ms total)
T2B58 080:012 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2492ms total)
T2B58 080:013 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4D 00 43 E1 00 00 72 FB C0 FB ...  returns 0x20 (0002ms, 2494ms total)
T2B58 080:016 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0002ms, 2496ms total)
T2B58 080:018 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2497ms total)
T2B58 080:019 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2498ms total)
T2B58 080:020 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2499ms total)
T2B58 080:021 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2500ms total)
T2B58 080:022 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2502ms total)
T2B58 080:024 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2503ms total)
T2B58 080:025 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2504ms total)
T661C 080:026 JLINK_IsHalted()  returns FALSE (0001ms, 2505ms total)
T661C 080:129 JLINK_IsHalted()  returns FALSE (0001ms, 2505ms total)
T661C 080:230 JLINK_IsHalted()  returns FALSE (0001ms, 2505ms total)
T661C 080:331 JLINK_IsHalted()  returns FALSE (0001ms, 2505ms total)
T661C 080:433 JLINK_IsHalted()  returns FALSE (0002ms, 2506ms total)
T2B58 080:536 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2505ms total)
T2B58 080:537 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2506ms total)
T2B58 080:538 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2507ms total)
T2B58 080:540 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4D 00 43 E1 00 00 72 FB C0 FB ...  returns 0x20 (0001ms, 2509ms total)
T2B58 080:541 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2510ms total)
T2B58 080:542 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2511ms total)
T2B58 080:543 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2512ms total)
T2B58 080:545 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2513ms total)
T2B58 080:546 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2514ms total)
T2B58 080:547 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2515ms total)
T2B58 080:548 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2516ms total)
T2B58 080:549 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2517ms total)
T661C 080:550 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T661C 080:652 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T661C 080:753 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T661C 080:855 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T661C 080:956 JLINK_IsHalted()  returns FALSE (0001ms, 2518ms total)
T2B58 081:059 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2518ms total)
T2B58 081:060 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2519ms total)
T2B58 081:061 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2520ms total)
T2B58 081:062 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4E 00 43 E1 00 00 71 FB C0 FB ...  returns 0x20 (0002ms, 2522ms total)
T2B58 081:064 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2523ms total)
T2B58 081:066 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2524ms total)
T2B58 081:067 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2525ms total)
T2B58 081:068 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2526ms total)
T2B58 081:069 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2527ms total)
T2B58 081:070 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2529ms total)
T2B58 081:072 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2530ms total)
T2B58 081:074 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2532ms total)
T661C 081:075 JLINK_IsHalted()  returns FALSE (0001ms, 2533ms total)
T661C 081:176 JLINK_IsHalted()  returns FALSE (0001ms, 2533ms total)
T661C 081:277 JLINK_IsHalted()  returns FALSE (0001ms, 2533ms total)
T661C 081:379 JLINK_IsHalted()  returns FALSE (0000ms, 2532ms total)
T661C 081:481 JLINK_IsHalted()  returns FALSE (0001ms, 2533ms total)
T2B58 081:582 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2533ms total)
T2B58 081:584 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2534ms total)
T2B58 081:585 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2535ms total)
T2B58 081:586 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4E 00 43 E1 00 00 71 FB C0 FB ...  returns 0x20 (0001ms, 2536ms total)
T2B58 081:587 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2537ms total)
T2B58 081:589 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0000ms, 2537ms total)
T2B58 081:590 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0000ms, 2537ms total)
T2B58 081:591 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2538ms total)
T2B58 081:592 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2539ms total)
T2B58 081:593 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0003ms, 2542ms total)
T2B58 081:596 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0000ms, 2542ms total)
T2B58 081:596 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2543ms total)
T661C 081:597 JLINK_IsHalted()  returns FALSE (0001ms, 2544ms total)
T661C 081:699 JLINK_IsHalted()  returns FALSE (0001ms, 2544ms total)
T661C 081:801 JLINK_IsHalted()  returns FALSE (0001ms, 2544ms total)
T661C 081:903 JLINK_IsHalted()  returns FALSE (0001ms, 2544ms total)
T661C 082:004 JLINK_IsHalted()  returns FALSE (0001ms, 2544ms total)
T2B58 082:105 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2544ms total)
T2B58 082:106 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0002ms, 2546ms total)
T2B58 082:108 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2547ms total)
T2B58 082:109 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 4F 00 43 E1 00 00 70 FB C0 FB ...  returns 0x20 (0001ms, 2548ms total)
T2B58 082:111 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2549ms total)
T2B58 082:112 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2550ms total)
T2B58 082:113 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2551ms total)
T2B58 082:114 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2552ms total)
T2B58 082:115 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2553ms total)
T2B58 082:116 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2555ms total)
T2B58 082:118 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2556ms total)
T2B58 082:119 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2557ms total)
T661C 082:120 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T661C 082:223 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T661C 082:324 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T661C 082:426 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T661C 082:527 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T2B58 082:630 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2558ms total)
T2B58 082:631 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2559ms total)
T2B58 082:632 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2560ms total)
T2B58 082:633 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 50 00 43 E1 00 00 6F FB C0 FB ...  returns 0x20 (0002ms, 2562ms total)
T2B58 082:635 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2563ms total)
T2B58 082:637 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0000ms, 2563ms total)
T2B58 082:637 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2564ms total)
T2B58 082:639 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2565ms total)
T2B58 082:640 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2566ms total)
T2B58 082:641 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2567ms total)
T2B58 082:642 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2568ms total)
T2B58 082:643 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2569ms total)
T661C 082:644 JLINK_IsHalted()  returns FALSE (0001ms, 2570ms total)
T661C 082:746 JLINK_IsHalted()  returns FALSE (0001ms, 2570ms total)
T661C 082:847 JLINK_IsHalted()  returns FALSE (0001ms, 2570ms total)
T661C 082:948 JLINK_IsHalted()  returns FALSE (0001ms, 2570ms total)
T661C 083:050 JLINK_IsHalted()  returns FALSE (0001ms, 2570ms total)
T2B58 083:151 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2570ms total)
T2B58 083:152 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2571ms total)
T2B58 083:153 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2572ms total)
T2B58 083:154 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 50 00 43 E1 00 00 6F FB C0 FB ...  returns 0x20 (0002ms, 2574ms total)
T2B58 083:156 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2575ms total)
T2B58 083:157 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2576ms total)
T2B58 083:158 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2577ms total)
T2B58 083:159 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2578ms total)
T2B58 083:160 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2579ms total)
T2B58 083:162 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2581ms total)
T2B58 083:163 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2582ms total)
T2B58 083:164 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2583ms total)
T661C 083:165 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T661C 083:267 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T661C 083:369 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T661C 083:470 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T661C 083:571 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T2B58 083:673 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2584ms total)
T2B58 083:674 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0002ms, 2586ms total)
T2B58 083:676 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0000ms, 2586ms total)
T2B58 083:677 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 51 00 43 E1 00 00 6E FB C0 FB ...  returns 0x20 (0001ms, 2587ms total)
T2B58 083:679 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0000ms, 2587ms total)
T2B58 083:679 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2588ms total)
T2B58 083:680 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2589ms total)
T2B58 083:682 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2590ms total)
T2B58 083:683 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2591ms total)
T2B58 083:684 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0002ms, 2593ms total)
T2B58 083:686 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2594ms total)
T2B58 083:687 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2595ms total)
T661C 083:688 JLINK_IsHalted()  returns FALSE (0001ms, 2596ms total)
T661C 083:791 JLINK_IsHalted()  returns FALSE (0001ms, 2596ms total)
T661C 083:892 JLINK_IsHalted()  returns FALSE (0001ms, 2596ms total)
T661C 083:994 JLINK_IsHalted()  returns FALSE (0001ms, 2596ms total)
T661C 084:095 JLINK_IsHalted()  returns FALSE (0001ms, 2596ms total)
T2B58 084:196 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2596ms total)
T2B58 084:197 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2597ms total)
T2B58 084:198 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2598ms total)
T2B58 084:199 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 51 00 43 E1 00 00 6E FB C0 FB ...  returns 0x20 (0002ms, 2600ms total)
T2B58 084:201 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2601ms total)
T2B58 084:202 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2602ms total)
T2B58 084:203 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2603ms total)
T2B58 084:206 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2605ms total)
T2B58 084:207 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2606ms total)
T2B58 084:208 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2607ms total)
T2B58 084:209 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2608ms total)
T2B58 084:210 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0001ms, 2609ms total)
T661C 084:211 JLINK_IsHalted()  returns FALSE (0001ms, 2610ms total)
T661C 084:314 JLINK_IsHalted()  returns FALSE (0001ms, 2610ms total)
T661C 084:415 JLINK_IsHalted()  returns FALSE (0001ms, 2610ms total)
T661C 084:517 JLINK_IsHalted()  returns FALSE (0001ms, 2610ms total)
T661C 084:618 JLINK_IsHalted()  returns FALSE (0001ms, 2610ms total)
T2B58 084:719 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2610ms total)
T2B58 084:720 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: 29 00 00 00  returns 0x04 (0001ms, 2611ms total)
T2B58 084:721 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: 2B 00 00 00  returns 0x04 (0001ms, 2612ms total)
T2B58 084:722 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: 22 0C 89 67 FF FF 52 00 43 E1 00 00 6D FB C0 FB ...  returns 0x20 (0002ms, 2614ms total)
T2B58 084:724 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: 00  returns 0x01 (0001ms, 2615ms total)
T2B58 084:725 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: 45 00  returns 0x02 (0001ms, 2616ms total)
T2B58 084:726 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: 02 00  returns 0x02 (0001ms, 2617ms total)
T2B58 084:728 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: 83 00 00 00  returns 0x04 (0001ms, 2618ms total)
T2B58 084:729 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: 40 00 00 00  returns 0x04 (0001ms, 2619ms total)
T2B58 084:730 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: 04 89 12 47 89 67 10 25 47 00 00 B2 FD 00 00 00 ...  returns 0x20 (0001ms, 2620ms total)
T2B58 084:731 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: 10 25  returns 0x02 (0001ms, 2621ms total)
T2B58 084:732 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: 25 79 00 00  returns 0x04 (0002ms, 2623ms total)
T661C 084:734 JLINK_IsHalted()  returns FALSE (0000ms, 2623ms total)
T661C 084:836 JLINK_IsHalted()  returns ERROR (0003ms, 2626ms total)
T661C 084:839 JLINK_Halt()CPU could not be halted  returns 0x01 (0003ms, 2626ms total)
T661C 084:842 JLINK_IsHalted()  returns ERROR (0003ms, 2629ms total)
T661C 084:845 JLINK_IsHalted()  returns ERROR (0003ms, 2629ms total)
T661C 084:848 JLINK_IsHalted()  returns ERROR (0003ms, 2629ms total)
T661C 084:851 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 2629ms total)
T661C 084:854 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 2632ms total)
T661C 084:857 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30)  returns 0xFFFFFFFF (0002ms, 2634ms total)
T661C 084:859 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0003ms, 2637ms total)
T661C 084:862 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0003ms, 2640ms total)
T661C 084:865 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0003ms, 2643ms total)
T661C 084:868 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0003ms, 2646ms total)
T661C 084:871 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0003ms, 2649ms total)
T661C 084:874 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0004ms, 2653ms total)
T661C 084:880 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0003ms, 2656ms total)
T661C 084:883 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0003ms, 2659ms total)
T661C 084:886 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0003ms, 2662ms total)
T661C 084:889 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0003ms, 2665ms total)
T661C 084:892 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0003ms, 2668ms total)
T661C 084:895 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0003ms, 2671ms total)
T661C 084:898 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0003ms, 2674ms total)
T661C 084:901 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0003ms, 2677ms total)
T661C 084:904 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0003ms, 2680ms total)
T661C 084:907 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 2683ms total)
T661C 084:910 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 2686ms total)
T661C 084:913 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0003ms, 2689ms total)
T661C 084:916 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0003ms, 2692ms total)
T661C 084:919 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0003ms, 2695ms total)
T2B58 084:922 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2697ms total)
T2B58 084:924 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2699ms total)
T2B58 084:926 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2701ms total)
T2B58 084:928 JLINK_ReadMemEx(0x0201C4AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C4AC) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2703ms total)
T2B58 084:930 JLINK_ReadMemEx(0x0201C4AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C4AC) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2705ms total)
T2B58 084:932 JLINK_ReadMemEx(0x0201C4AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4AC) - Data: AA  returns 0xFFFFFFFF (0002ms, 2707ms total)
T2B58 084:936 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2709ms total)
T2B58 084:938 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2711ms total)
T2B58 084:940 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2713ms total)
T2B58 084:942 JLINK_ReadMemEx(0x0201A0B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2715ms total)
T2B58 084:944 JLINK_ReadMemEx(0x0201A0B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A0B0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2717ms total)
T2B58 084:946 JLINK_ReadMemEx(0x0201A0B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0B0) - Data: AA  returns 0xFFFFFFFF (0002ms, 2719ms total)
T2B58 084:949 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2721ms total)
T2B58 084:951 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2723ms total)
T2B58 084:953 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2725ms total)
T2B58 084:955 JLINK_ReadMemEx(0x0201A0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A0B8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0003ms, 2728ms total)
T2B58 084:958 JLINK_ReadMemEx(0x0201A0B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A0B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2730ms total)
T2B58 084:960 JLINK_ReadMemEx(0x0201A0B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0B8) - Data: AA  returns 0xFFFFFFFF (0002ms, 2732ms total)
T2B58 084:962 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2734ms total)
T2B58 084:964 JLINK_ReadMemEx(0x0201BCBE, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BCBE) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2736ms total)
T2B58 084:966 JLINK_ReadMemEx(0x0201BCBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCBE) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 2739ms total)
T2B58 084:969 JLINK_ReadMemEx(0x0201BCBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCBE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2741ms total)
T2B58 084:971 JLINK_ReadMemEx(0x0201BCBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCBE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2743ms total)
T2B58 084:973 JLINK_ReadMemEx(0x0201BCBE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BCBE) - Data: AA  returns 0xFFFFFFFF (0002ms, 2745ms total)
T2B58 084:986 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 2747ms total)
T2B58 084:988 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0003ms, 2750ms total)
T2B58 084:991 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 2752ms total)
T2B58 084:993 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 2754ms total)
T2B58 084:995 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 2756ms total)
T2B58 084:997 JLINK_ReadMemEx(0x0201C4A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C4A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 2758ms total)
T2B58 085:000 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2760ms total)
T2B58 085:002 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2762ms total)
T2B58 085:004 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2764ms total)
T2B58 085:006 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2766ms total)
T2B58 085:008 JLINK_ReadMemEx(0x02019680, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019680) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2768ms total)
T2B58 085:010 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: AA  returns 0xFFFFFFFF (0002ms, 2770ms total)
T2B58 085:013 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2772ms total)
T2B58 085:015 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2774ms total)
T2B58 085:017 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2776ms total)
T2B58 085:019 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2778ms total)
T2B58 085:021 JLINK_ReadMemEx(0x0201967E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201967E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2780ms total)
T2B58 085:023 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: AA  returns 0xFFFFFFFF (0002ms, 2782ms total)
T2B58 085:026 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2784ms total)
T2B58 085:028 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2786ms total)
T2B58 085:030 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2788ms total)
T2B58 085:032 JLINK_ReadMemEx(0x0201BCB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BCB8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0003ms, 2791ms total)
T2B58 085:035 JLINK_ReadMemEx(0x0201BCB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCB8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2793ms total)
T2B58 085:037 JLINK_ReadMemEx(0x0201BCB8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BCB8) - Data: AA  returns 0xFFFFFFFF (0002ms, 2795ms total)
T2B58 085:039 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2797ms total)
T2B58 085:041 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2799ms total)
T2B58 085:043 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2801ms total)
T2B58 085:045 JLINK_ReadMemEx(0x0201CFE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201CFE0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0003ms, 2804ms total)
T2B58 085:048 JLINK_ReadMemEx(0x0201CFE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201CFE0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2806ms total)
T2B58 085:050 JLINK_ReadMemEx(0x0201CFE0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201CFE0) - Data: AA  returns 0xFFFFFFFF (0002ms, 2808ms total)
T2B58 085:052 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2810ms total)
T2B58 085:054 JLINK_ReadMemEx(0x0201968A, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201968A) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2812ms total)
T2B58 085:056 JLINK_ReadMemEx(0x0201968A, 0x0006 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(6 bytes @ 0x0201968A) - Data: AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2814ms total)
T2B58 085:058 JLINK_ReadMemEx(0x0201968A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201968A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2816ms total)
T2B58 085:060 JLINK_ReadMemEx(0x0201968A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201968A) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 2819ms total)
T2B58 085:063 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: AA  returns 0xFFFFFFFF (0002ms, 2821ms total)
T2B58 085:065 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2823ms total)
T2B58 085:067 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2825ms total)
T2B58 085:069 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2827ms total)
T2B58 085:071 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 2830ms total)
T2B58 085:074 JLINK_ReadMemEx(0x0201C3CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C3CA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2832ms total)
T2B58 085:076 JLINK_ReadMemEx(0x0201C3CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C3CA) - Data: AA  returns 0xFFFFFFFF (0002ms, 2834ms total)
T2B58 085:078 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2836ms total)
T2B58 085:080 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2838ms total)
T2B58 085:082 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2840ms total)
T2B58 085:084 JLINK_ReadMemEx(0x0201C61C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C61C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0003ms, 2843ms total)
T2B58 085:087 JLINK_ReadMemEx(0x0201C61C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201C61C) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2845ms total)
T2B58 085:089 JLINK_ReadMemEx(0x0201C61C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C61C) - Data: AA  returns 0xFFFFFFFF (0002ms, 2847ms total)
T2B58 085:093 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2849ms total)
T2B58 085:095 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 2851ms total)
T2B58 085:097 JLINK_ReadMemEx(0x00000000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 2853ms total)
T2B58 085:099 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000000) - Data: AA AA AA AA  returns 0xFFFFFFFF (0003ms, 2856ms total)
T2B58 085:102 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2858ms total)
T2B58 085:104 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 2860ms total)
T2B58 085:106 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2862ms total)
T2B58 085:108 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2864ms total)
T2B58 085:110 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2866ms total)
T2B58 085:112 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2868ms total)
T2B58 085:114 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 2871ms total)
T2B58 085:117 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 2873ms total)
T2B58 085:119 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2875ms total)
T2B58 085:121 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2877ms total)
T2B58 085:123 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2879ms total)
T2B58 085:125 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2881ms total)
T2B58 085:127 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 2883ms total)
T2B58 085:129 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000002) - Data: AA  returns 0xFFFFFFFF (0003ms, 2886ms total)
T2B58 108:099 JLINK_Close() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0028ms, 2914ms total)
T2B58 108:099  (0028ms, 2914ms total)
T2B58 108:099 Closed (0028ms, 2914ms total)