yincheng.zhong
2024-11-12 c8cbb8205d69b4120122a7d0923edcca611399ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
 
T85A8 000:044 SEGGER J-Link V6.30d Log File (0000ms, 0023ms total)
T85A8 000:044 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0023ms total)
T85A8 000:044 Logging started @ 2024-11-11 15:16 (0000ms, 0023ms total)
T85A8 000:044 JLINK_SetWarnOutHandler(...) (0000ms, 0023ms total)
T85A8 000:044 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 (0017ms, 0040ms total)
T85A8 000:044 WEBSRV Webserver running on local port 19081 (0017ms, 0040ms total)
T85A8 000:044   returns O.K. (0017ms, 0040ms total)
T85A8 000:061 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0040ms total)
T85A8 000:061 JLINK_TIF_GetAvailable(...) (0000ms, 0040ms total)
T85A8 000:061 JLINK_SetErrorOutHandler(...) (0000ms, 0040ms total)
T85A8 000:061 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...). D:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0105ms, 0145ms total)
T85A8 000:167 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0002ms, 0147ms total)
T85A8 000:169 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetFirmwareString(...) (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetCompileDateTime() (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetFirmwareString(...) (0000ms, 0147ms total)
T85A8 000:169 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0147ms total)
T85A8 000:169 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0148ms total)
T85A8 000:170 JLINK_SetSpeed(5000) (0000ms, 0148ms total)
T85A8 000:170 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770031)
Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, Little endian.
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
 -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(8192 bytes @ 0x20000000) >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0329ms, 0477ms total)
T85A8 000:499 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0477ms total)
T85A8 000:499 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0477ms total)
T85A8 000:499 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0477ms total)
T85A8 000:499 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0477ms total)
T85A8 000:499 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0477ms total)
T85A8 000:499 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, 0478ms total)
T85A8 000:500 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0478ms total)
T85A8 000:500 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0478ms total)
T85A8 000:500 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, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0479ms total)
T85A8 000:501 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 0x01 (0000ms, 0479ms total)
T85A8 000:501 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0001ms, 0480ms total)
T85A8 000:502 JLINK_Halt()  returns 0x00 (0000ms, 0480ms total)
T85A8 000:502 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 0x01 (0000ms, 0480ms total)
T85A8 000:502 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0481ms total)
T85A8 000:503 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0482ms total)
T85A8 000:504 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0482ms total)
T85A8 000:504 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0482ms total)
T85A8 000:504 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0482ms total)
T85A8 000:504 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0482ms total)
T85A8 000:504 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0482ms total)
T85A8 000:504 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0483ms total)
T85A8 000:505 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0483ms total)
T85A8 000:505 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0483ms total)
T85A8 000:582 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0483ms total)
T85A8 000:582 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0071ms, 0554ms total)
T85A8 000:653 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0554ms total)
T85A8 000:653 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0554ms total)
T85A8 000:653 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0002ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0556ms total)
T85A8 000:655 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0556ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 ...  returns 0x3C (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 BD 1E 00 08 ...  returns 0x3C (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0557ms total)
T85A8 000:656 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0557ms total)
T85A8 002:824 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0001ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R13 (SP))  returns 0x20001588 (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(MSP)  returns 0x20001588 (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0558ms total)
T85A8 002:825 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0559ms total)
T85A8 002:833 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0559ms total)
T85A8 002:833 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A4) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0559ms total)
T85A8 002:837 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0002ms, 0561ms total)
T85A8 002:839 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0561ms total)
T85A8 002:839 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0561ms total)
T85A8 002:843 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0001ms, 0562ms total)
T85A8 002:844 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0000ms, 0562ms total)
T85A8 002:844 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000B0) - Data: AA  returns 0x01 (0000ms, 0562ms total)
T85A8 002:849 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0002ms, 0564ms total)
T85A8 002:851 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0564ms total)
T85A8 002:851 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0564ms total)
T85A8 002:856 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0565ms total)
T85A8 002:857 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0565ms total)
T85A8 002:857 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0565ms total)
T85A8 002:862 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0565ms total)
T85A8 002:862 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0565ms total)
T85A8 002:862 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0565ms total)
T85A8 002:874 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0001ms, 0566ms total)
T85A8 002:875 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0000ms, 0566ms total)
T85A8 002:875 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 55  returns 0x01 (0000ms, 0566ms total)
T85A8 002:882 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0001ms, 0567ms total)
T85A8 002:883 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0000ms, 0567ms total)
T85A8 002:883 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0000ms, 0567ms total)
T85A8 002:895 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0567ms total)
T85A8 002:895 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0567ms total)
T85A8 002:895 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: AA 55  returns 0x02 (0000ms, 0567ms total)
T85A8 002:901 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0567ms total)
T85A8 002:901 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0567ms total)
T85A8 002:901 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: AA 55 AA 55  returns 0x04 (0001ms, 0568ms total)
T85A8 002:909 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0568ms total)
T85A8 002:909 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0568ms total)
T85A8 002:909 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: AA 55  returns 0x02 (0000ms, 0568ms total)
T85A8 002:923 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0001ms, 0569ms total)
T85A8 002:924 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0000ms, 0569ms total)
T85A8 002:924 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: AA  returns 0x01 (0000ms, 0569ms total)
T85A8 002:933 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0569ms total)
T85A8 002:933 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0569ms total)
T85A8 002:933 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 55  returns 0x01 (0000ms, 0569ms total)
T85A8 002:941 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0569ms total)
T85A8 002:941 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0569ms total)
T85A8 002:941 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: AA  returns 0x01 (0000ms, 0569ms total)
T85A8 002:949 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0001ms, 0570ms total)
T85A8 002:950 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0000ms, 0570ms total)
T85A8 002:951 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000027C) - Data: AA  returns 0x01 (0000ms, 0570ms total)
T85A8 002:960 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0570ms total)
T85A8 002:960 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0570ms total)
T85A8 002:960 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 55  returns 0x01 (0000ms, 0570ms total)
T85A8 002:969 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20001880) -- Updating C cache (128 bytes @ 0x20001880) -- Read from C cache (32 bytes @ 0x200018A8) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0572ms total)
T85A8 002:980 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0000ms, 0572ms total)
T85A8 002:980 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0000ms, 0572ms total)
T85A8 002:980 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: AA 55  returns 0x02 (0000ms, 0572ms total)
T85A8 003:010 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0572ms total)
T85A8 003:011 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0572ms total)
T85A8 003:011 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: AA 55 AA 55  returns 0x04 (0000ms, 0572ms total)
T85A8 003:021 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0000ms, 0572ms total)
T85A8 003:021 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0001ms, 0573ms total)
T85A8 003:022 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: AA  returns 0x01 (0000ms, 0573ms total)
T28A4 003:098 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0573ms total)
T28A4 003:098 JLINK_SetBPEx(Addr = 0x0800C404, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0573ms total)
T28A4 003:098 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 0578ms total)
T28A4 003:204 JLINK_IsHalted()  returns TRUE (0003ms, 0581ms total)
T28A4 003:207 JLINK_Halt()  returns 0x00 (0000ms, 0578ms total)
T28A4 003:207 JLINK_IsHalted()  returns TRUE (0000ms, 0578ms total)
T28A4 003:207 JLINK_IsHalted()  returns TRUE (0000ms, 0578ms total)
T28A4 003:207 JLINK_IsHalted()  returns TRUE (0000ms, 0578ms total)
T28A4 003:207 JLINK_ReadReg(R15 (PC))  returns 0x0800C404 (0000ms, 0578ms total)
T28A4 003:207 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0578ms total)
T28A4 003:207 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0578ms total)
T28A4 003:207 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0579ms total)
T28A4 003:208 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0580ms total)
T28A4 003:209 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R0)  returns 0x0800C405 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R1)  returns 0x20001FB0 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R3)  returns 0x0800B8C5 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R4)  returns 0x0800C850 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R6)  returns 0x0800C850 (0000ms, 0580ms total)
T28A4 003:209 JLINK_ReadReg(R7)  returns 0x0000AAAA (0001ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R13 (SP))  returns 0x20001FB0 (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R14)  returns 0x08005A65 (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(R15 (PC))  returns 0x0800C404 (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(MSP)  returns 0x20001FB0 (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0581ms total)
T28A4 003:210 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0581ms total)
T85A8 003:212 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x200002A4) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0582ms total)
T85A8 003:222 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0002ms, 0584ms total)
T85A8 003:232 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0585ms total)
T85A8 003:242 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (4 bytes @ 0x20000038) - Data: 00 00 00 00  returns 0x04 (0001ms, 0586ms total)
T85A8 003:251 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0587ms total)
T85A8 003:260 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0587ms total)
T85A8 003:276 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000007D) - Data: 00  returns 0x01 (0001ms, 0588ms total)
T85A8 003:285 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0589ms total)
T85A8 003:294 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008E) - Data: 00 00  returns 0x02 (0000ms, 0589ms total)
T85A8 003:302 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0589ms total)
T85A8 003:309 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000008C) - Data: 00 00  returns 0x02 (0000ms, 0589ms total)
T85A8 003:324 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0589ms total)
T85A8 003:332 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0589ms total)
T85A8 003:341 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0590ms total)
T85A8 003:348 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0002ms, 0592ms total)
T85A8 003:357 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0592ms total)
T85A8 003:365 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20001880) -- Updating C cache (128 bytes @ 0x20001880) -- Read from C cache (32 bytes @ 0x200018A8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0594ms total)
T85A8 003:374 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0594ms total)
T85A8 003:382 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0594ms total)
T85A8 003:389 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0594ms total)
T28A4 003:974 JLINK_ReadMemEx(0x0800C404, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800C400) -- Updating C cache (64 bytes @ 0x0800C400) -- Read from C cache (2 bytes @ 0x0800C404) - Data: FA F7  returns 0x02 (0001ms, 0595ms total)
T28A4 003:975 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0598ms total)
T28A4 004:079 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T28A4 004:179 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T28A4 004:280 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T28A4 004:382 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T28A4 004:483 JLINK_IsHalted()  returns FALSE (0000ms, 0598ms total)
T85A8 004:584 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0B 00 00 00  returns 0x04 (0000ms, 0598ms total)
T85A8 004:600 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0599ms total)
T85A8 004:601 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0600ms total)
T85A8 004:609 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: C8 42 56 40  returns 0x04 (0001ms, 0601ms total)
T85A8 004:624 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0602ms total)
T85A8 004:639 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0603ms total)
T85A8 004:661 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 01  returns 0x01 (0001ms, 0604ms total)
T85A8 004:677 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0605ms total)
T85A8 004:685 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0606ms total)
T85A8 004:701 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 0606ms total)
T85A8 004:716 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 0606ms total)
T85A8 004:738 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0607ms total)
T85A8 004:746 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0607ms total)
T85A8 004:754 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0607ms total)
T85A8 004:762 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0608ms total)
T85A8 004:771 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0608ms total)
T85A8 004:779 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0609ms total)
T85A8 004:780 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0609ms total)
T85A8 004:788 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0610ms total)
T85A8 004:796 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0611ms total)
T28A4 004:804 JLINK_IsHalted()  returns FALSE (0001ms, 0612ms total)
T28A4 004:906 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T28A4 005:007 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T85A8 005:108 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0C 00 00 00  returns 0x04 (0000ms, 0611ms total)
T85A8 005:124 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0611ms total)
T85A8 005:124 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0612ms total)
T85A8 005:125 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0613ms total)
T85A8 005:140 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 0614ms total)
T85A8 005:155 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 0615ms total)
T85A8 005:179 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 0616ms total)
T85A8 005:194 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0617ms total)
T85A8 005:195 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0617ms total)
T85A8 005:203 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0617ms total)
T85A8 005:217 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0618ms total)
T85A8 005:233 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0618ms total)
T85A8 005:233 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0619ms total)
T85A8 005:234 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0620ms total)
T85A8 005:235 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0620ms total)
T85A8 005:235 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0621ms total)
T85A8 005:236 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0622ms total)
T85A8 005:237 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0622ms total)
T85A8 005:237 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0623ms total)
T85A8 005:238 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0624ms total)
T28A4 005:239 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T28A4 005:340 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T28A4 005:441 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T28A4 005:542 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T85A8 005:644 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0625ms total)
T85A8 005:653 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0626ms total)
T85A8 005:654 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 0626ms total)
T85A8 005:654 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0627ms total)
T85A8 005:663 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0628ms total)
T85A8 005:680 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0628ms total)
T85A8 005:703 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 0629ms total)
T85A8 005:711 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0630ms total)
T85A8 005:712 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0630ms total)
T85A8 005:712 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0631ms total)
T85A8 005:728 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 0631ms total)
T85A8 005:736 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0632ms total)
T85A8 005:737 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0632ms total)
T85A8 005:737 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0633ms total)
T85A8 005:738 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0634ms total)
T85A8 005:739 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0634ms total)
T85A8 005:739 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0635ms total)
T85A8 005:740 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0636ms total)
T85A8 005:741 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0636ms total)
T85A8 005:741 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0637ms total)
T28A4 005:742 JLINK_IsHalted()  returns FALSE (0001ms, 0638ms total)
T28A4 005:843 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T28A4 005:944 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T28A4 006:045 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T28A4 006:146 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T85A8 006:248 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0D 00 00 00  returns 0x04 (0000ms, 0637ms total)
T85A8 006:257 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0637ms total)
T85A8 006:257 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0638ms total)
T85A8 006:258 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0638ms total)
T85A8 006:259 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0638ms total)
T85A8 006:267 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0638ms total)
T85A8 006:282 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 0639ms total)
T85A8 006:290 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0640ms total)
T85A8 006:291 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0640ms total)
T85A8 006:291 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0641ms total)
T85A8 006:299 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0642ms total)
T85A8 006:307 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0643ms total)
T85A8 006:308 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0643ms total)
T85A8 006:308 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0644ms total)
T85A8 006:309 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0645ms total)
T85A8 006:310 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0645ms total)
T85A8 006:311 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0646ms total)
T85A8 006:311 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0647ms total)
T85A8 006:312 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0648ms total)
T85A8 006:313 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0648ms total)
T28A4 006:313 JLINK_IsHalted()  returns FALSE (0001ms, 0649ms total)
T28A4 006:415 JLINK_IsHalted()  returns FALSE (0000ms, 0648ms total)
T28A4 006:516 JLINK_IsHalted()  returns FALSE (0000ms, 0648ms total)
T28A4 006:617 JLINK_IsHalted()  returns FALSE (0000ms, 0648ms total)
T28A4 006:718 JLINK_IsHalted()  returns FALSE (0000ms, 0648ms total)
T85A8 006:819 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0D 00 00 00  returns 0x04 (0000ms, 0648ms total)
T85A8 006:827 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0649ms total)
T85A8 006:828 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0650ms total)
T85A8 006:829 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0650ms total)
T85A8 006:829 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0651ms total)
T85A8 006:830 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0652ms total)
T85A8 006:838 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 0653ms total)
T85A8 006:846 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0654ms total)
T85A8 006:847 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0654ms total)
T85A8 006:847 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0655ms total)
T85A8 006:848 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0656ms total)
T85A8 006:857 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0657ms total)
T85A8 006:858 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0657ms total)
T85A8 006:858 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0658ms total)
T85A8 006:859 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0659ms total)
T85A8 006:860 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0659ms total)
T85A8 006:860 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0660ms total)
T85A8 006:861 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0661ms total)
T85A8 006:862 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0661ms total)
T85A8 006:863 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0662ms total)
T28A4 006:863 JLINK_IsHalted()  returns FALSE (0001ms, 0663ms total)
T28A4 006:965 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T28A4 007:066 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T28A4 007:167 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T28A4 007:268 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T85A8 007:369 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0663ms total)
T85A8 007:378 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0664ms total)
T85A8 007:379 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0665ms total)
T85A8 007:380 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0666ms total)
T85A8 007:381 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 0666ms total)
T85A8 007:389 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 0666ms total)
T85A8 007:405 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0000ms, 0666ms total)
T85A8 007:413 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0666ms total)
T85A8 007:413 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0667ms total)
T85A8 007:414 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0668ms total)
T85A8 007:422 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0669ms total)
T85A8 007:431 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0669ms total)
T85A8 007:431 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0670ms total)
T85A8 007:432 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0671ms total)
T85A8 007:433 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0671ms total)
T85A8 007:433 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0672ms total)
T85A8 007:434 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0673ms total)
T85A8 007:435 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0673ms total)
T85A8 007:435 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0674ms total)
T85A8 007:436 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0675ms total)
T28A4 007:437 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T28A4 007:539 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T28A4 007:640 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T28A4 007:741 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T28A4 007:843 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T85A8 007:944 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0E 00 00 00  returns 0x04 (0000ms, 0675ms total)
T85A8 007:953 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0675ms total)
T85A8 007:953 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0676ms total)
T85A8 007:954 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0676ms total)
T85A8 007:954 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0677ms total)
T85A8 007:969 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0678ms total)
T85A8 007:994 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0001ms, 0679ms total)
T85A8 008:003 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0679ms total)
T85A8 008:003 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0680ms total)
T85A8 008:004 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0681ms total)
T85A8 008:019 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0682ms total)
T85A8 008:027 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0683ms total)
T85A8 008:028 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0683ms total)
T85A8 008:028 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0684ms total)
T85A8 008:029 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0685ms total)
T85A8 008:030 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0685ms total)
T85A8 008:030 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0686ms total)
T85A8 008:031 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0687ms total)
T85A8 008:032 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0687ms total)
T85A8 008:032 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0688ms total)
T28A4 008:033 JLINK_IsHalted()  returns FALSE (0001ms, 0689ms total)
T28A4 008:135 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T28A4 008:236 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T28A4 008:337 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T28A4 008:439 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T85A8 008:540 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0F 00 00 00  returns 0x04 (0000ms, 0688ms total)
T85A8 008:548 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0689ms total)
T85A8 008:549 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0690ms total)
T85A8 008:550 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0690ms total)
T85A8 008:550 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0691ms total)
T85A8 008:565 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0692ms total)
T85A8 008:589 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0000ms, 0692ms total)
T85A8 008:597 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0692ms total)
T85A8 008:598 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0692ms total)
T85A8 008:598 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0693ms total)
T85A8 008:614 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 0693ms total)
T85A8 008:621 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0694ms total)
T85A8 008:622 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0694ms total)
T85A8 008:622 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0695ms total)
T85A8 008:623 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0695ms total)
T85A8 008:624 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0696ms total)
T85A8 008:624 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0697ms total)
T85A8 008:625 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0698ms total)
T85A8 008:626 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0698ms total)
T85A8 008:626 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T28A4 008:627 JLINK_IsHalted()  returns FALSE (0001ms, 0700ms total)
T28A4 008:729 JLINK_IsHalted()  returns FALSE (0000ms, 0699ms total)
T28A4 008:831 JLINK_IsHalted()  returns FALSE (0000ms, 0699ms total)
T28A4 008:932 JLINK_IsHalted()  returns FALSE (0000ms, 0699ms total)
T28A4 009:033 JLINK_IsHalted()  returns FALSE (0000ms, 0699ms total)
T85A8 009:134 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 10 00 00 00  returns 0x04 (0000ms, 0699ms total)
T85A8 009:150 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0700ms total)
T85A8 009:151 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 0700ms total)
T85A8 009:151 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0001ms, 0701ms total)
T85A8 009:159 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 0702ms total)
T85A8 009:174 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0702ms total)
T85A8 009:197 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0001ms, 0703ms total)
T85A8 009:212 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0704ms total)
T85A8 009:213 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0705ms total)
T85A8 009:214 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0705ms total)
T85A8 009:228 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0706ms total)
T85A8 009:237 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0707ms total)
T85A8 009:238 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0707ms total)
T85A8 009:238 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0708ms total)
T85A8 009:239 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0709ms total)
T85A8 009:240 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0709ms total)
T85A8 009:240 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0710ms total)
T85A8 009:241 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0711ms total)
T85A8 009:242 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0712ms total)
T85A8 009:243 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0712ms total)
T28A4 009:243 JLINK_IsHalted()  returns FALSE (0001ms, 0713ms total)
T28A4 009:344 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T28A4 009:446 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T28A4 009:547 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T85A8 009:648 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 10 00 00 00  returns 0x04 (0000ms, 0712ms total)
T85A8 009:656 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0713ms total)
T85A8 009:657 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0714ms total)
T85A8 009:658 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 0714ms total)
T85A8 009:666 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0714ms total)
T85A8 009:674 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0714ms total)
T85A8 009:691 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0000ms, 0714ms total)
T85A8 009:701 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0715ms total)
T85A8 009:702 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0716ms total)
T85A8 009:703 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 0716ms total)
T85A8 009:711 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0717ms total)
T85A8 009:720 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0717ms total)
T85A8 009:720 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0718ms total)
T85A8 009:721 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0719ms total)
T85A8 009:722 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0719ms total)
T85A8 009:722 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0720ms total)
T85A8 009:723 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0721ms total)
T85A8 009:724 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0721ms total)
T85A8 009:724 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0722ms total)
T85A8 009:725 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0723ms total)
T28A4 009:726 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T28A4 009:827 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T28A4 009:929 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T28A4 010:030 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T28A4 010:131 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T85A8 010:232 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 11 00 00 00  returns 0x04 (0000ms, 0723ms total)
T85A8 010:241 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0724ms total)
T85A8 010:242 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 0724ms total)
T85A8 010:243 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0725ms total)
T85A8 010:250 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 0726ms total)
T85A8 010:258 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 0727ms total)
T85A8 010:275 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0000ms, 0727ms total)
T85A8 010:283 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0727ms total)
T85A8 010:283 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0728ms total)
T85A8 010:284 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 0729ms total)
T85A8 010:292 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 0729ms total)
T85A8 010:300 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T85A8 010:301 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0730ms total)
T85A8 010:301 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0731ms total)
T85A8 010:302 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0731ms total)
T85A8 010:303 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0732ms total)
T85A8 010:303 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0733ms total)
T85A8 010:304 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0734ms total)
T85A8 010:305 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0734ms total)
T85A8 010:305 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0735ms total)
T28A4 010:306 JLINK_IsHalted()  returns FALSE (0001ms, 0736ms total)
T28A4 010:408 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T28A4 010:509 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T28A4 010:610 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T28A4 010:711 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T85A8 010:813 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 11 00 00 00  returns 0x04 (0000ms, 0735ms total)
T85A8 010:822 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0735ms total)
T85A8 010:822 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0736ms total)
T85A8 010:823 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0737ms total)
T85A8 010:831 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 0738ms total)
T85A8 010:839 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 0738ms total)
T85A8 010:854 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0001ms, 0739ms total)
T85A8 010:862 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0740ms total)
T85A8 010:863 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0741ms total)
T85A8 010:864 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 0741ms total)
T85A8 010:871 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0742ms total)
T85A8 010:879 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0743ms total)
T85A8 010:880 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T85A8 010:881 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0744ms total)
T85A8 010:881 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0745ms total)
T85A8 010:882 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0746ms total)
T85A8 010:883 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0746ms total)
T85A8 010:883 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0747ms total)
T85A8 010:884 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0748ms total)
T85A8 010:885 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0748ms total)
T28A4 010:885 JLINK_IsHalted()  returns FALSE (0001ms, 0749ms total)
T28A4 010:987 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T28A4 011:089 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T28A4 011:190 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T28A4 011:292 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T85A8 011:393 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 12 00 00 00  returns 0x04 (0001ms, 0749ms total)
T85A8 011:402 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0750ms total)
T85A8 011:403 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 0750ms total)
T85A8 011:403 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0001ms, 0751ms total)
T85A8 011:411 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 0752ms total)
T85A8 011:419 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 0752ms total)
T85A8 011:434 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 08  returns 0x01 (0001ms, 0753ms total)
T85A8 011:443 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0753ms total)
T85A8 011:443 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0754ms total)
T85A8 011:444 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 0755ms total)
T85A8 011:452 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0756ms total)
T85A8 011:462 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0756ms total)
T85A8 011:462 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0757ms total)
T85A8 011:463 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0757ms total)
T85A8 011:464 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0758ms total)
T85A8 011:464 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0759ms total)
T85A8 011:465 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0760ms total)
T85A8 011:466 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0760ms total)
T85A8 011:466 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0761ms total)
T85A8 011:467 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0762ms total)
T28A4 011:468 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T28A4 011:570 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T28A4 011:671 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T28A4 011:772 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T28A4 011:873 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T85A8 011:974 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 12 00 00 00  returns 0x04 (0000ms, 0762ms total)
T85A8 011:982 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0763ms total)
T85A8 011:983 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0764ms total)
T85A8 011:984 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 0764ms total)
T85A8 011:991 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 0765ms total)
T85A8 011:999 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 0766ms total)
T85A8 012:015 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 08  returns 0x01 (0001ms, 0767ms total)
T85A8 012:023 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0768ms total)
T85A8 012:024 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 0768ms total)
T85A8 012:024 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 0769ms total)
T85A8 012:032 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0770ms total)
T85A8 012:040 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0771ms total)
T85A8 012:041 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0772ms total)
T85A8 012:042 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0772ms total)
T85A8 012:042 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0773ms total)
T85A8 012:043 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0773ms total)
T85A8 012:043 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0774ms total)
T85A8 012:044 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0775ms total)
T85A8 012:045 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0776ms total)
T85A8 012:046 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0776ms total)
T28A4 012:046 JLINK_IsHalted()  returns FALSE (0001ms, 0777ms total)
T28A4 012:148 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T28A4 012:249 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T28A4 012:351 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T28A4 012:452 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T85A8 012:553 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 13 00 00 00  returns 0x04 (0000ms, 0776ms total)
T85A8 012:562 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0777ms total)
T85A8 012:563 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 0777ms total)
T85A8 012:563 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0778ms total)
T85A8 012:571 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0779ms total)
T85A8 012:579 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0780ms total)
T85A8 012:594 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 09  returns 0x01 (0001ms, 0781ms total)
T85A8 012:602 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0781ms total)
T85A8 012:602 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0782ms total)
T85A8 012:603 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0783ms total)
T85A8 012:611 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0784ms total)
T85A8 012:619 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0785ms total)
T85A8 012:620 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 0785ms total)
T85A8 012:621 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0785ms total)
T85A8 012:621 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0786ms total)
T85A8 012:622 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 0786ms total)
T85A8 012:622 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0787ms total)
T85A8 012:623 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0788ms total)
T85A8 012:624 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0789ms total)
T85A8 012:625 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0789ms total)
T28A4 012:625 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T28A4 012:727 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T28A4 012:829 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T28A4 012:930 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T28A4 013:031 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T85A8 013:133 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 14 00 00 00  returns 0x04 (0000ms, 0789ms total)
T85A8 013:149 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0789ms total)
T85A8 013:149 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0790ms total)
T85A8 013:150 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0791ms total)
T85A8 013:158 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0791ms total)
T85A8 013:172 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0792ms total)
T85A8 013:195 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0001ms, 0793ms total)
T85A8 013:210 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0793ms total)
T85A8 013:210 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0794ms total)
T85A8 013:211 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0795ms total)
T85A8 013:227 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 0795ms total)
T85A8 013:235 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0795ms total)
T85A8 013:235 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0796ms total)
T85A8 013:236 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0796ms total)
T85A8 013:236 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0797ms total)
T85A8 013:237 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0798ms total)
T85A8 013:238 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0799ms total)
T85A8 013:239 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0799ms total)
T85A8 013:239 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0800ms total)
T85A8 013:240 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0800ms total)
T28A4 013:241 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T28A4 013:342 JLINK_IsHalted()  returns ERROR (0002ms, 0803ms total)
T28A4 013:344 JLINK_Halt()CPU could not be halted  returns 0x01 (0003ms, 0804ms total)
T28A4 013:347 JLINK_IsHalted()  returns ERROR (0003ms, 0807ms total)
T28A4 013:350 JLINK_IsHalted()  returns ERROR (0002ms, 0806ms total)
T28A4 013:352 JLINK_IsHalted()  returns ERROR (0003ms, 0807ms total)
T28A4 013:355 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 0807ms total)
T28A4 013:358 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0002ms, 0809ms total)
T28A4 013:360 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30)  returns 0xFFFFFFFF (0002ms, 0811ms total)
T28A4 013:362 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0003ms, 0814ms total)
T28A4 013:365 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0002ms, 0816ms total)
T28A4 013:367 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0003ms, 0819ms total)
T28A4 013:370 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0003ms, 0822ms total)
T28A4 013:373 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0002ms, 0824ms total)
T28A4 013:375 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0003ms, 0827ms total)
T28A4 013:380 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0003ms, 0830ms total)
T28A4 013:383 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0003ms, 0833ms total)
T28A4 013:386 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0002ms, 0835ms total)
T28A4 013:388 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0003ms, 0838ms total)
T28A4 013:391 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0003ms, 0841ms total)
T28A4 013:394 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0002ms, 0843ms total)
T28A4 013:396 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0003ms, 0846ms total)
T28A4 013:399 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0003ms, 0849ms total)
T28A4 013:402 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0002ms, 0851ms total)
T28A4 013:404 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 0854ms total)
T28A4 013:407 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 0857ms total)
T28A4 013:411 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0003ms, 0860ms total)
T28A4 013:414 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0003ms, 0863ms total)
T28A4 013:417 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0002ms, 0865ms total)
T85A8 013:421 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0867ms total)
T85A8 013:423 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0869ms total)
T85A8 013:425 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0871ms total)
T85A8 013:427 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 0872ms total)
T85A8 013:428 JLINK_ReadMemEx(0x200002A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0874ms total)
T85A8 013:430 JLINK_ReadMemEx(0x200002A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002A4) - Data: AA  returns 0xFFFFFFFF (0002ms, 0876ms total)
T85A8 013:448 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0878ms total)
T85A8 013:450 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0880ms total)
T85A8 013:452 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0882ms total)
T85A8 013:454 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0884ms total)
T85A8 013:456 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 0885ms total)
T85A8 013:457 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 0887ms total)
T85A8 013:467 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: AA  returns 0xFFFFFFFF (0001ms, 0888ms total)
T85A8 013:468 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: AA  returns 0xFFFFFFFF (0002ms, 0890ms total)
T85A8 013:470 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0891ms total)
T85A8 013:471 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 0892ms total)
T85A8 013:472 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0892ms total)
T85A8 013:480 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0892ms total)
T85A8 013:495 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0001ms, 0893ms total)
T85A8 013:503 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0894ms total)
T85A8 013:504 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0895ms total)
T85A8 013:505 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0895ms total)
T85A8 013:512 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0896ms total)
T85A8 013:520 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 0897ms total)
T85A8 013:521 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0898ms total)
T85A8 013:522 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 0898ms total)
T85A8 013:522 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 0899ms total)
T85A8 013:523 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0900ms total)
T85A8 013:524 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0901ms total)
T85A8 013:525 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0901ms total)
T85A8 013:525 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0902ms total)
T85A8 013:526 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 0902ms total)
T85A8 013:530 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: 88 15 00 20 D5 00 00 08 4D 1B 00 08 01 18 00 08 ...  returns 0x3C (0001ms, 0903ms total)
T85A8 013:531 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 0903ms total)
T85A8 013:531 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0001ms, 0904ms total)
T85A8 013:532 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0001ms, 0905ms total)
T85A8 013:533 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: D5 00 00 08 4D 1B 00 08 01 18 00 08 00 00 00 00 ...  returns 0x3C (0001ms, 0906ms total)
T85A8 013:534 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0000ms, 0906ms total)
T85A8 013:534 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: D5 00 00 08 4D 1B 00 08 01 18 00 08 00 00 00 00 ...  returns 0x3C (0002ms, 0908ms total)
T85A8 013:536 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0000ms, 0908ms total)
T85A8 013:536 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 0909ms total)
T85A8 013:537 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 0910ms total)
T85A8 013:538 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: 4D 1B 00 08 01 18 00 08 00 00 00 00 00 00 00 00 ...  returns 0x3C (0001ms, 0911ms total)
T85A8 013:539 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 4D 1B  returns 0x02 (0000ms, 0911ms total)
T85A8 013:539 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: 4D 1B 00 08 01 18 00 08 00 00 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 0913ms total)
T85A8 013:541 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 4D 1B  returns 0x02 (0000ms, 0913ms total)
T85A8 013:541 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: 00 08  returns 0x02 (0001ms, 0914ms total)
T28A4 018:629 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0915ms total)
T28A4 018:630 JLINK_Go()
  ***** Error: CPU is not halted (0000ms, 0915ms total)
T28A4 018:732 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T28A4 018:833 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T28A4 018:934 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T28A4 019:035 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T28A4 019:136 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T85A8 019:238 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 1A 00 00 00  returns 0x04 (0000ms, 0915ms total)
T85A8 019:254 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 0916ms total)
T85A8 019:269 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 0917ms total)
T85A8 019:270 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 0917ms total)
T85A8 019:270 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0918ms total)
T85A8 019:278 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0919ms total)
T85A8 019:293 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 10  returns 0x01 (0001ms, 0920ms total)
T85A8 019:301 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 0921ms total)
T85A8 019:302 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 0922ms total)
T85A8 019:303 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 0922ms total)
T85A8 019:310 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 0923ms total)
T85A8 019:319 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 0923ms total)
T85A8 019:319 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 0924ms total)
T85A8 019:320 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 0925ms total)
T85A8 019:321 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 0925ms total)
T85A8 019:321 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 0926ms total)
T85A8 019:322 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0927ms total)
T85A8 019:323 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 0927ms total)
T85A8 019:323 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0928ms total)
T85A8 019:324 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 0929ms total)
T28A4 019:325 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T85A8 019:326 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0929ms total)
T85A8 019:326 JLINK_ResetNoHalt() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>AP map detection skipped. Manually configured AP map found.AP[0]: AHB-AP (IDR: Not set) >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000)
 -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0)
 -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
                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) (0069ms, 0069ms total)
                JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0004ms, 0073ms total)
               (0232ms, 1161ms total)
T28A4 019:558 JLINK_IsHalted()  returns FALSE (0001ms, 1162ms total)
T28A4 019:660 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T85A8 019:762 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0B 00 00 00  returns 0x04 (0000ms, 1161ms total)
T85A8 019:779 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1162ms total)
T85A8 019:788 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1163ms total)
T85A8 019:789 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1163ms total)
T85A8 019:789 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1164ms total)
T85A8 019:806 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1164ms total)
T85A8 019:828 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 01  returns 0x01 (0001ms, 1165ms total)
T85A8 019:843 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1166ms total)
T85A8 019:844 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 1167ms total)
T85A8 019:845 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1167ms total)
T85A8 019:861 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 1168ms total)
T85A8 019:869 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T85A8 019:870 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1169ms total)
T85A8 019:870 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1170ms total)
T85A8 019:871 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1171ms total)
T85A8 019:872 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1171ms total)
T85A8 019:872 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1172ms total)
T85A8 019:873 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1173ms total)
T85A8 019:874 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1174ms total)
T85A8 019:875 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1174ms total)
T28A4 019:875 JLINK_IsHalted()  returns FALSE (0001ms, 1175ms total)
T28A4 019:977 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T28A4 020:078 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T28A4 020:179 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T85A8 020:280 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0B 00 00 00  returns 0x04 (0000ms, 1174ms total)
T85A8 020:289 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1174ms total)
T85A8 020:289 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1175ms total)
T85A8 020:290 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 1176ms total)
T85A8 020:291 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1176ms total)
T85A8 020:299 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1177ms total)
T85A8 020:314 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 01  returns 0x01 (0001ms, 1178ms total)
T85A8 020:324 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1179ms total)
T85A8 020:325 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 1180ms total)
T85A8 020:326 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1180ms total)
T85A8 020:334 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0000ms, 1180ms total)
T85A8 020:342 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1181ms total)
T85A8 020:343 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1181ms total)
T85A8 020:343 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1182ms total)
T85A8 020:344 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1183ms total)
T85A8 020:345 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1183ms total)
T85A8 020:345 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1184ms total)
T85A8 020:346 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1185ms total)
T85A8 020:347 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1186ms total)
T85A8 020:348 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1186ms total)
T28A4 020:348 JLINK_IsHalted()  returns FALSE (0001ms, 1187ms total)
T28A4 020:450 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T28A4 020:551 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T28A4 020:652 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T28A4 020:753 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T85A8 020:854 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0C 00 00 00  returns 0x04 (0000ms, 1186ms total)
T85A8 020:862 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1187ms total)
T85A8 020:863 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1188ms total)
T85A8 020:864 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1188ms total)
T85A8 020:871 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1189ms total)
T85A8 020:879 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1190ms total)
T85A8 020:895 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 1191ms total)
T85A8 020:903 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1192ms total)
T85A8 020:904 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0000ms, 1192ms total)
T85A8 020:904 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1193ms total)
T85A8 020:912 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 1194ms total)
T85A8 020:920 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1195ms total)
T85A8 020:921 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1196ms total)
T85A8 020:922 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1196ms total)
T85A8 020:922 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1197ms total)
T85A8 020:923 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1197ms total)
T85A8 020:924 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1197ms total)
T85A8 020:932 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1197ms total)
T85A8 020:933 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: BE 7F 00 00  returns 0x04 (0000ms, 1197ms total)
T85A8 020:940 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1198ms total)
T28A4 020:941 JLINK_IsHalted()  returns FALSE (0001ms, 1199ms total)
T28A4 021:043 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T28A4 021:144 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T28A4 021:246 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T28A4 021:347 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T85A8 021:448 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 0C 00 00 00  returns 0x04 (0000ms, 1198ms total)
T85A8 021:457 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1198ms total)
T85A8 021:457 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T85A8 021:458 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0001ms, 1200ms total)
T85A8 021:466 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1200ms total)
T85A8 021:474 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1201ms total)
T85A8 021:489 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 02  returns 0x01 (0001ms, 1202ms total)
T85A8 021:498 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1202ms total)
T85A8 021:498 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: FF FF  returns 0x02 (0001ms, 1203ms total)
T85A8 021:499 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1204ms total)
T85A8 021:507 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: DE 01  returns 0x02 (0001ms, 1205ms total)
T85A8 021:515 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1206ms total)
T85A8 021:516 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1206ms total)
T85A8 021:516 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1207ms total)
T85A8 021:517 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1208ms total)
T85A8 021:518 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1208ms total)
T85A8 021:518 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1209ms total)
T85A8 021:527 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1209ms total)
T85A8 021:527 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 3A 7F 00 00  returns 0x04 (0001ms, 1210ms total)
T85A8 021:543 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1211ms total)
T28A4 021:544 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T28A4 021:645 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T28A4 021:746 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T28A4 021:847 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T28A4 021:948 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T85A8 022:049 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1211ms total)
T85A8 022:057 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1212ms total)
T85A8 022:058 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1213ms total)
T85A8 022:059 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1213ms total)
T85A8 022:067 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1213ms total)
T85A8 022:074 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1214ms total)
T85A8 022:090 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 1215ms total)
T85A8 022:098 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1216ms total)
T85A8 022:099 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1217ms total)
T85A8 022:107 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1218ms total)
T85A8 022:115 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1219ms total)
T85A8 022:130 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1220ms total)
T85A8 022:131 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1221ms total)
T85A8 022:132 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1221ms total)
T85A8 022:132 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T85A8 022:133 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1223ms total)
T85A8 022:134 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 D2 18 51 00 00 CC FD 00 00 00 ...  returns 0x20 (0000ms, 1223ms total)
T85A8 022:142 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1225ms total)
T85A8 022:143 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: BB 50 00 00  returns 0x04 (0000ms, 1225ms total)
T85A8 022:158 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1226ms total)
T28A4 022:159 JLINK_IsHalted()  returns FALSE (0001ms, 1227ms total)
T28A4 022:261 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T28A4 022:362 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T28A4 022:464 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T85A8 022:565 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 1226ms total)
T85A8 022:582 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1226ms total)
T85A8 022:582 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1227ms total)
T85A8 022:583 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1227ms total)
T85A8 022:591 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1228ms total)
T85A8 022:606 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1228ms total)
T85A8 022:629 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0000ms, 1228ms total)
T85A8 022:637 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1229ms total)
T85A8 022:638 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1229ms total)
T85A8 022:646 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1229ms total)
T85A8 022:661 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1229ms total)
T85A8 022:677 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1230ms total)
T85A8 022:678 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1230ms total)
T85A8 022:678 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1231ms total)
T85A8 022:679 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1232ms total)
T85A8 022:680 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1232ms total)
T85A8 022:680 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 D2 18 51 00 00 CC FD 00 00 00 ...  returns 0x20 (0001ms, 1233ms total)
T85A8 022:689 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1233ms total)
T85A8 022:690 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 37 50 00 00  returns 0x04 (0000ms, 1233ms total)
T85A8 022:706 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1233ms total)
T28A4 022:706 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T28A4 022:808 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T28A4 022:909 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T28A4 023:010 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T85A8 023:111 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0001ms, 1234ms total)
T85A8 023:120 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1234ms total)
T85A8 023:120 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1235ms total)
T85A8 023:121 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 1236ms total)
T85A8 023:122 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1236ms total)
T85A8 023:130 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1236ms total)
T85A8 023:144 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 03  returns 0x01 (0001ms, 1237ms total)
T85A8 023:145 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1238ms total)
T85A8 023:146 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1238ms total)
T85A8 023:146 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1239ms total)
T85A8 023:155 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1239ms total)
T85A8 023:162 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1240ms total)
T85A8 023:163 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1241ms total)
T85A8 023:164 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1241ms total)
T85A8 023:164 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1242ms total)
T85A8 023:165 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1243ms total)
T85A8 023:166 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 D2 18 51 00 00 CC FD 00 00 00 ...  returns 0x20 (0001ms, 1244ms total)
T85A8 023:167 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1244ms total)
T85A8 023:167 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 37 50 00 00  returns 0x04 (0001ms, 1245ms total)
T85A8 023:175 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1246ms total)
T28A4 023:176 JLINK_IsHalted()  returns FALSE (0001ms, 1247ms total)
T28A4 023:278 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T28A4 023:380 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T28A4 023:481 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T28A4 023:582 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T85A8 023:683 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1246ms total)
T85A8 023:692 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1246ms total)
T85A8 023:692 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T85A8 023:693 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 1248ms total)
T85A8 023:694 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 1248ms total)
T85A8 023:702 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1249ms total)
T85A8 023:717 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0001ms, 1250ms total)
T85A8 023:726 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1251ms total)
T85A8 023:727 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1251ms total)
T85A8 023:727 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1252ms total)
T85A8 023:735 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1253ms total)
T85A8 023:743 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T85A8 023:744 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T85A8 023:745 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1255ms total)
T85A8 023:745 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1256ms total)
T85A8 023:746 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1257ms total)
T85A8 023:747 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 30 00 51 00 01 85 FE 00 00 00 ...  returns 0x20 (0001ms, 1258ms total)
T85A8 023:755 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1259ms total)
T85A8 023:756 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: BE 50 00 00  returns 0x04 (0001ms, 1260ms total)
T85A8 023:764 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1261ms total)
T28A4 023:765 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T28A4 023:866 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T28A4 023:967 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T28A4 024:069 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T28A4 024:170 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T85A8 024:271 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1261ms total)
T85A8 024:279 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1262ms total)
T85A8 024:280 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1263ms total)
T85A8 024:281 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1263ms total)
T85A8 024:281 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1264ms total)
T85A8 024:289 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1265ms total)
T85A8 024:304 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0001ms, 1266ms total)
T85A8 024:312 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1267ms total)
T85A8 024:313 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1268ms total)
T85A8 024:314 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 1268ms total)
T85A8 024:322 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1269ms total)
T85A8 024:330 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0001ms, 1270ms total)
T85A8 024:331 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1270ms total)
T85A8 024:331 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1271ms total)
T85A8 024:332 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1272ms total)
T85A8 024:333 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1272ms total)
T85A8 024:333 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 30 00 51 00 01 85 FE 00 00 00 ...  returns 0x20 (0001ms, 1273ms total)
T85A8 024:341 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1274ms total)
T85A8 024:342 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7C 50 00 00  returns 0x04 (0001ms, 1275ms total)
T85A8 024:357 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T28A4 024:358 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T28A4 024:459 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T28A4 024:560 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T28A4 024:661 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T28A4 024:762 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T85A8 024:864 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1276ms total)
T85A8 024:864 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1277ms total)
T85A8 024:865 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1278ms total)
T85A8 024:866 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1278ms total)
T85A8 024:866 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1279ms total)
T85A8 024:874 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1280ms total)
T85A8 024:890 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 04  returns 0x01 (0000ms, 1280ms total)
T85A8 024:890 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1281ms total)
T85A8 024:891 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1281ms total)
T85A8 024:891 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1282ms total)
T85A8 024:899 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1283ms total)
T85A8 024:908 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 00  returns 0x01 (0000ms, 1283ms total)
T85A8 024:908 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1284ms total)
T85A8 024:909 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1284ms total)
T85A8 024:909 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1285ms total)
T85A8 024:910 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1286ms total)
T85A8 024:911 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 30 00 51 00 01 85 FE 00 00 00 ...  returns 0x20 (0001ms, 1287ms total)
T85A8 024:912 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1287ms total)
T85A8 024:912 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 7C 50 00 00  returns 0x04 (0001ms, 1288ms total)
T85A8 024:920 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1289ms total)
T28A4 024:921 JLINK_IsHalted()  returns FALSE (0001ms, 1290ms total)
T28A4 025:022 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T28A4 025:124 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T28A4 025:225 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T28A4 025:326 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T85A8 025:427 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1289ms total)
T85A8 025:427 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1290ms total)
T85A8 025:428 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1291ms total)
T85A8 025:429 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1291ms total)
T85A8 025:429 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1292ms total)
T85A8 025:447 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1293ms total)
T85A8 025:470 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0001ms, 1294ms total)
T85A8 025:479 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1295ms total)
T85A8 025:480 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1296ms total)
T85A8 025:481 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 1296ms total)
T85A8 025:496 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1296ms total)
T85A8 025:504 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1297ms total)
T85A8 025:512 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1298ms total)
T85A8 025:513 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1298ms total)
T85A8 025:513 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T85A8 025:514 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1300ms total)
T85A8 025:515 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 16 00 51 00 01 9F FE 00 00 00 ...  returns 0x20 (0000ms, 1300ms total)
T85A8 025:523 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1300ms total)
T85A8 025:523 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6D 50 00 00  returns 0x04 (0001ms, 1301ms total)
T85A8 025:531 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1302ms total)
T28A4 025:532 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T28A4 025:634 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T28A4 025:735 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T28A4 025:836 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T28A4 025:937 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T85A8 026:038 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1302ms total)
T85A8 026:038 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1303ms total)
T85A8 026:039 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1304ms total)
T85A8 026:040 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1304ms total)
T85A8 026:040 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1305ms total)
T85A8 026:049 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 1305ms total)
T85A8 026:064 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0001ms, 1306ms total)
T85A8 026:072 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1306ms total)
T85A8 026:072 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1307ms total)
T85A8 026:073 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1308ms total)
T85A8 026:081 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1309ms total)
T85A8 026:090 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1310ms total)
T85A8 026:098 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1310ms total)
T85A8 026:099 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1311ms total)
T85A8 026:099 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1312ms total)
T85A8 026:100 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1312ms total)
T85A8 026:100 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 16 00 51 00 01 9F FE 00 00 00 ...  returns 0x20 (0001ms, 1313ms total)
T85A8 026:109 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1314ms total)
T85A8 026:110 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6D 50 00 00  returns 0x04 (0000ms, 1314ms total)
T85A8 026:118 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1314ms total)
T28A4 026:118 JLINK_IsHalted()  returns FALSE (0001ms, 1315ms total)
T28A4 026:220 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T28A4 026:321 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T28A4 026:423 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T28A4 026:524 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T85A8 026:625 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1314ms total)
T85A8 026:625 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1315ms total)
T85A8 026:626 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1316ms total)
T85A8 026:627 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1316ms total)
T85A8 026:627 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1317ms total)
T85A8 026:636 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 1317ms total)
T85A8 026:651 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0000ms, 1317ms total)
T85A8 026:651 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1318ms total)
T85A8 026:652 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1319ms total)
T85A8 026:653 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 1319ms total)
T85A8 026:661 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1319ms total)
T85A8 026:668 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1320ms total)
T85A8 026:669 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1321ms total)
T85A8 026:670 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1321ms total)
T85A8 026:670 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1322ms total)
T85A8 026:671 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1323ms total)
T85A8 026:672 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 16 00 51 00 01 9F FE 00 00 00 ...  returns 0x20 (0001ms, 1324ms total)
T85A8 026:680 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1325ms total)
T85A8 026:681 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2B 50 00 00  returns 0x04 (0001ms, 1326ms total)
T85A8 026:689 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1327ms total)
T28A4 026:690 JLINK_IsHalted()  returns FALSE (0001ms, 1328ms total)
T28A4 026:792 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T28A4 026:893 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T28A4 026:994 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T28A4 027:096 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T85A8 027:197 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1327ms total)
T85A8 027:197 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1328ms total)
T85A8 027:198 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1329ms total)
T85A8 027:199 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1329ms total)
T85A8 027:199 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1330ms total)
T85A8 027:216 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1330ms total)
T85A8 027:238 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 05  returns 0x01 (0001ms, 1331ms total)
T85A8 027:239 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1331ms total)
T85A8 027:239 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1332ms total)
T85A8 027:240 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1333ms total)
T85A8 027:255 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1334ms total)
T85A8 027:263 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1335ms total)
T85A8 027:264 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1336ms total)
T85A8 027:265 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1336ms total)
T85A8 027:265 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1337ms total)
T85A8 027:266 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1338ms total)
T85A8 027:267 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 16 00 51 00 01 9F FE 00 00 00 ...  returns 0x20 (0001ms, 1339ms total)
T85A8 027:275 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1340ms total)
T85A8 027:276 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E9 4F 00 00  returns 0x04 (0001ms, 1341ms total)
T85A8 027:291 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1342ms total)
T28A4 027:292 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T28A4 027:394 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T28A4 027:495 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T28A4 027:596 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T28A4 027:697 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T85A8 027:798 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1342ms total)
T85A8 027:798 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1343ms total)
T85A8 027:799 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1344ms total)
T85A8 027:800 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1344ms total)
T85A8 027:809 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1344ms total)
T85A8 027:824 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1345ms total)
T85A8 027:846 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0001ms, 1346ms total)
T85A8 027:855 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1346ms total)
T85A8 027:855 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1347ms total)
T85A8 027:856 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1348ms total)
T85A8 027:871 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1349ms total)
T85A8 027:879 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1350ms total)
T85A8 027:880 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1351ms total)
T85A8 027:881 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1351ms total)
T85A8 027:881 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1352ms total)
T85A8 027:882 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1352ms total)
T85A8 027:882 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 1B 00 51 00 01 9A FE 00 00 00 ...  returns 0x20 (0001ms, 1353ms total)
T85A8 027:883 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1354ms total)
T85A8 027:884 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6F 50 00 00  returns 0x04 (0001ms, 1355ms total)
T85A8 027:899 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1356ms total)
T28A4 027:900 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T28A4 028:001 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T28A4 028:103 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T28A4 028:203 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T85A8 028:304 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1356ms total)
T85A8 028:304 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1357ms total)
T85A8 028:305 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1358ms total)
T85A8 028:306 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1358ms total)
T85A8 028:315 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1358ms total)
T85A8 028:330 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1359ms total)
T85A8 028:352 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0001ms, 1360ms total)
T85A8 028:360 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1360ms total)
T85A8 028:361 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1360ms total)
T85A8 028:361 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1361ms total)
T85A8 028:376 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1362ms total)
T85A8 028:384 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1363ms total)
T85A8 028:385 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1364ms total)
T85A8 028:386 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1364ms total)
T85A8 028:386 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1365ms total)
T85A8 028:387 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1366ms total)
T85A8 028:388 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 1B 00 51 00 01 9A FE 00 00 00 ...  returns 0x20 (0001ms, 1367ms total)
T85A8 028:396 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1367ms total)
T85A8 028:397 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2D 50 00 00  returns 0x04 (0000ms, 1367ms total)
T85A8 028:412 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1368ms total)
T28A4 028:413 JLINK_IsHalted()  returns FALSE (0001ms, 1369ms total)
T28A4 028:515 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T28A4 028:616 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T28A4 028:718 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T85A8 028:819 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1368ms total)
T85A8 028:819 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1369ms total)
T85A8 028:820 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1370ms total)
T85A8 028:821 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1370ms total)
T85A8 028:821 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1371ms total)
T85A8 028:829 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1372ms total)
T85A8 028:844 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 06  returns 0x01 (0001ms, 1373ms total)
T85A8 028:845 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1373ms total)
T85A8 028:845 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1374ms total)
T85A8 028:846 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1374ms total)
T85A8 028:854 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1375ms total)
T85A8 028:862 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1376ms total)
T85A8 028:863 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1377ms total)
T85A8 028:864 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1377ms total)
T85A8 028:864 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1378ms total)
T85A8 028:865 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1379ms total)
T85A8 028:866 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 1B 00 51 00 01 9A FE 00 00 00 ...  returns 0x20 (0000ms, 1379ms total)
T85A8 028:874 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1380ms total)
T85A8 028:875 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 2D 50 00 00  returns 0x04 (0000ms, 1380ms total)
T85A8 028:882 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1381ms total)
T28A4 028:883 JLINK_IsHalted()  returns FALSE (0001ms, 1382ms total)
T28A4 028:985 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T28A4 029:086 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T28A4 029:188 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T28A4 029:289 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T85A8 029:390 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1381ms total)
T85A8 029:390 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1382ms total)
T85A8 029:391 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1383ms total)
T85A8 029:392 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1383ms total)
T85A8 029:400 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1384ms total)
T85A8 029:408 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1384ms total)
T85A8 029:423 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0000ms, 1384ms total)
T85A8 029:431 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1384ms total)
T85A8 029:431 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1385ms total)
T85A8 029:432 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1385ms total)
T85A8 029:440 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1386ms total)
T85A8 029:448 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 1387ms total)
T85A8 029:456 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1388ms total)
T85A8 029:457 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1388ms total)
T85A8 029:457 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1389ms total)
T85A8 029:458 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1390ms total)
T85A8 029:459 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 0E 00 51 00 01 A7 FE 00 00 00 ...  returns 0x20 (0001ms, 1391ms total)
T85A8 029:467 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1392ms total)
T85A8 029:468 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 44 50 00 00  returns 0x04 (0000ms, 1392ms total)
T85A8 029:476 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1392ms total)
T28A4 029:476 JLINK_IsHalted()  returns FALSE (0001ms, 1393ms total)
T28A4 029:578 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T28A4 029:679 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T28A4 029:780 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T28A4 029:882 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T85A8 029:984 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1392ms total)
T85A8 029:984 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1393ms total)
T85A8 029:985 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1394ms total)
T85A8 029:986 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1394ms total)
T85A8 029:994 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1394ms total)
T85A8 030:002 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1394ms total)
T85A8 030:017 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0000ms, 1394ms total)
T85A8 030:025 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1394ms total)
T85A8 030:025 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1395ms total)
T85A8 030:026 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1395ms total)
T85A8 030:034 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1395ms total)
T85A8 030:042 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 1395ms total)
T85A8 030:049 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1396ms total)
T85A8 030:050 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1397ms total)
T85A8 030:051 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1397ms total)
T85A8 030:051 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1398ms total)
T85A8 030:052 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 0E 00 51 00 01 A7 FE 00 00 00 ...  returns 0x20 (0001ms, 1399ms total)
T85A8 030:060 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1400ms total)
T85A8 030:061 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 44 50 00 00  returns 0x04 (0000ms, 1400ms total)
T85A8 030:069 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T28A4 030:070 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T28A4 030:171 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T28A4 030:272 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T28A4 030:374 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T28A4 030:475 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T85A8 030:576 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1401ms total)
T85A8 030:576 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1402ms total)
T85A8 030:577 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1403ms total)
T85A8 030:578 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1403ms total)
T85A8 030:578 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1404ms total)
T85A8 030:587 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1404ms total)
T85A8 030:602 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0001ms, 1405ms total)
T85A8 030:603 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1405ms total)
T85A8 030:603 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1406ms total)
T85A8 030:604 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1406ms total)
T85A8 030:612 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1407ms total)
T85A8 030:621 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 1407ms total)
T85A8 030:621 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1408ms total)
T85A8 030:622 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1408ms total)
T85A8 030:622 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1409ms total)
T85A8 030:623 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1410ms total)
T85A8 030:624 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 0C F1 49 47 32 00 0E 00 51 00 01 A7 FE 00 00 00 ...  returns 0x20 (0001ms, 1411ms total)
T85A8 030:632 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1412ms total)
T85A8 030:633 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 02 50 00 00  returns 0x04 (0000ms, 1412ms total)
T85A8 030:641 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1412ms total)
T28A4 030:641 JLINK_IsHalted()  returns FALSE (0001ms, 1413ms total)
T28A4 030:743 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T28A4 030:845 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T28A4 030:946 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T28A4 031:047 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T85A8 031:148 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1412ms total)
T85A8 031:148 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1413ms total)
T85A8 031:149 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 1413ms total)
T85A8 031:149 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 1414ms total)
T85A8 031:150 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1415ms total)
T85A8 031:158 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1416ms total)
T85A8 031:174 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 07  returns 0x01 (0001ms, 1417ms total)
T85A8 031:175 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1417ms total)
T85A8 031:175 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1418ms total)
T85A8 031:176 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1419ms total)
T85A8 031:184 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1420ms total)
T85A8 031:192 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 1421ms total)
T85A8 031:193 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1422ms total)
T85A8 031:194 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1422ms total)
T85A8 031:194 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1423ms total)
T85A8 031:195 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1424ms total)
T85A8 031:196 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 0C F1 49 47 32 00 0E 00 51 00 01 A7 FE 00 00 00 ...  returns 0x20 (0001ms, 1425ms total)
T85A8 031:197 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1425ms total)
T85A8 031:197 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 02 50 00 00  returns 0x04 (0001ms, 1426ms total)
T85A8 031:205 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1427ms total)
T28A4 031:206 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T28A4 031:308 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T28A4 031:408 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T28A4 031:509 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T28A4 031:610 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T85A8 031:711 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1428ms total)
T85A8 031:712 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1428ms total)
T85A8 031:712 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1429ms total)
T85A8 031:713 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1429ms total)
T85A8 031:713 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1430ms total)
T85A8 031:722 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1431ms total)
T85A8 031:738 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 08  returns 0x01 (0001ms, 1432ms total)
T85A8 031:746 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1433ms total)
T85A8 031:747 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1433ms total)
T85A8 031:747 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1434ms total)
T85A8 031:755 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1435ms total)
T85A8 031:763 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1436ms total)
T85A8 031:772 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1437ms total)
T85A8 031:773 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1437ms total)
T85A8 031:773 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1438ms total)
T85A8 031:774 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1438ms total)
T85A8 031:774 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 0B 27 51 00 00 84 FE 00 00 00 ...  returns 0x20 (0001ms, 1439ms total)
T85A8 031:783 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1439ms total)
T85A8 031:784 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 50 00 00  returns 0x04 (0000ms, 1439ms total)
T85A8 031:791 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1440ms total)
T28A4 031:792 JLINK_IsHalted()  returns FALSE (0001ms, 1441ms total)
T28A4 031:893 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T28A4 031:995 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T28A4 032:096 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T28A4 032:197 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T85A8 032:298 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1440ms total)
T85A8 032:298 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1441ms total)
T85A8 032:299 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T85A8 032:300 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1442ms total)
T85A8 032:300 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1443ms total)
T85A8 032:309 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1444ms total)
T85A8 032:325 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 09  returns 0x01 (0000ms, 1444ms total)
T85A8 032:340 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1445ms total)
T85A8 032:341 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1446ms total)
T85A8 032:342 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1446ms total)
T85A8 032:357 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1447ms total)
T85A8 032:365 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1448ms total)
T85A8 032:373 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T85A8 032:374 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1450ms total)
T85A8 032:375 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1450ms total)
T85A8 032:375 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1451ms total)
T85A8 032:376 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1452ms total)
T85A8 032:385 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1453ms total)
T85A8 032:386 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 50 00 00  returns 0x04 (0000ms, 1453ms total)
T85A8 032:394 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1453ms total)
T28A4 032:394 JLINK_IsHalted()  returns FALSE (0001ms, 1454ms total)
T28A4 032:496 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T28A4 032:597 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T28A4 032:698 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T85A8 032:800 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1453ms total)
T85A8 032:800 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1454ms total)
T85A8 032:801 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1455ms total)
T85A8 032:802 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1455ms total)
T85A8 032:802 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1456ms total)
T85A8 032:810 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1457ms total)
T85A8 032:825 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 09  returns 0x01 (0001ms, 1458ms total)
T85A8 032:833 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1459ms total)
T85A8 032:834 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1460ms total)
T85A8 032:835 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1460ms total)
T85A8 032:842 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1461ms total)
T85A8 032:851 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 1461ms total)
T85A8 032:852 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1461ms total)
T85A8 032:852 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1462ms total)
T85A8 032:853 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1462ms total)
T85A8 032:853 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1463ms total)
T85A8 032:854 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1464ms total)
T85A8 032:862 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1465ms total)
T85A8 032:863 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1B 50 00 00  returns 0x04 (0001ms, 1466ms total)
T85A8 032:864 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1466ms total)
T28A4 032:864 JLINK_IsHalted()  returns FALSE (0001ms, 1467ms total)
T28A4 032:966 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T28A4 033:067 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T28A4 033:168 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T28A4 033:269 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T85A8 033:370 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1466ms total)
T85A8 033:370 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1467ms total)
T85A8 033:371 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1468ms total)
T85A8 033:372 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1468ms total)
T85A8 033:372 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1469ms total)
T85A8 033:388 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1470ms total)
T85A8 033:411 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0001ms, 1471ms total)
T85A8 033:420 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1471ms total)
T85A8 033:420 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1472ms total)
T85A8 033:421 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1473ms total)
T85A8 033:429 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1474ms total)
T85A8 033:437 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1475ms total)
T85A8 033:438 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1475ms total)
T85A8 033:438 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T85A8 033:439 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1477ms total)
T85A8 033:440 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T85A8 033:440 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1478ms total)
T85A8 033:449 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1479ms total)
T85A8 033:450 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0000ms, 1479ms total)
T85A8 033:458 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1479ms total)
T28A4 033:458 JLINK_IsHalted()  returns FALSE (0001ms, 1480ms total)
T28A4 033:560 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T28A4 033:662 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T28A4 033:763 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T28A4 033:864 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T85A8 033:966 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1479ms total)
T85A8 033:966 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1480ms total)
T85A8 033:967 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1481ms total)
T85A8 033:968 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1481ms total)
T85A8 033:968 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1482ms total)
T85A8 033:977 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1483ms total)
T85A8 033:992 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0001ms, 1484ms total)
T85A8 034:000 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1485ms total)
T85A8 034:001 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1486ms total)
T85A8 034:002 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 1486ms total)
T85A8 034:010 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1487ms total)
T85A8 034:019 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1488ms total)
T85A8 034:020 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1488ms total)
T85A8 034:020 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1489ms total)
T85A8 034:021 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1490ms total)
T85A8 034:022 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1490ms total)
T85A8 034:022 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1491ms total)
T85A8 034:031 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1491ms total)
T85A8 034:031 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0001ms, 1492ms total)
T85A8 034:039 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1493ms total)
T28A4 034:040 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T28A4 034:141 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T28A4 034:243 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T28A4 034:344 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T28A4 034:446 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T85A8 034:546 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1493ms total)
T85A8 034:546 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1494ms total)
T85A8 034:547 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T85A8 034:548 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1495ms total)
T85A8 034:548 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1496ms total)
T85A8 034:557 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1497ms total)
T85A8 034:573 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0000ms, 1497ms total)
T85A8 034:573 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1498ms total)
T85A8 034:574 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1498ms total)
T85A8 034:574 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1499ms total)
T85A8 034:582 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1500ms total)
T85A8 034:590 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1501ms total)
T85A8 034:591 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T85A8 034:592 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1502ms total)
T85A8 034:592 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1503ms total)
T85A8 034:593 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1503ms total)
T85A8 034:593 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1504ms total)
T85A8 034:602 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1504ms total)
T85A8 034:603 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0000ms, 1504ms total)
T85A8 034:603 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1505ms total)
T28A4 034:604 JLINK_IsHalted()  returns FALSE (0000ms, 1505ms total)
T28A4 034:705 JLINK_IsHalted()  returns FALSE (0000ms, 1505ms total)
T28A4 034:807 JLINK_IsHalted()  returns FALSE (0000ms, 1505ms total)
T28A4 034:908 JLINK_IsHalted()  returns FALSE (0000ms, 1505ms total)
T28A4 035:009 JLINK_IsHalted()  returns FALSE (0001ms, 1506ms total)
T85A8 035:110 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1505ms total)
T85A8 035:110 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1506ms total)
T85A8 035:111 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1507ms total)
T85A8 035:112 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1507ms total)
T85A8 035:112 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1508ms total)
T85A8 035:121 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 1508ms total)
T85A8 035:136 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0A  returns 0x01 (0001ms, 1509ms total)
T85A8 035:137 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1509ms total)
T85A8 035:137 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1510ms total)
T85A8 035:138 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 1510ms total)
T85A8 035:146 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1511ms total)
T85A8 035:153 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1512ms total)
T85A8 035:154 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1512ms total)
T85A8 035:154 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1513ms total)
T85A8 035:155 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1514ms total)
T85A8 035:156 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1514ms total)
T85A8 035:156 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1515ms total)
T85A8 035:165 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1515ms total)
T85A8 035:165 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0001ms, 1516ms total)
T85A8 035:166 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1517ms total)
T28A4 035:167 JLINK_IsHalted()  returns FALSE (0000ms, 1517ms total)
T28A4 035:269 JLINK_IsHalted()  returns FALSE (0000ms, 1517ms total)
T28A4 035:370 JLINK_IsHalted()  returns FALSE (0000ms, 1517ms total)
T28A4 035:471 JLINK_IsHalted()  returns FALSE (0000ms, 1517ms total)
T28A4 035:572 JLINK_IsHalted()  returns FALSE (0000ms, 1517ms total)
T85A8 035:673 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1517ms total)
T85A8 035:673 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1518ms total)
T85A8 035:674 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1519ms total)
T85A8 035:675 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1519ms total)
T85A8 035:675 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1520ms total)
T85A8 035:684 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 1520ms total)
T85A8 035:699 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0B  returns 0x01 (0000ms, 1520ms total)
T85A8 035:707 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1521ms total)
T85A8 035:707 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1522ms total)
T85A8 035:708 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1523ms total)
T85A8 035:716 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1524ms total)
T85A8 035:724 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1525ms total)
T85A8 035:725 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1526ms total)
T85A8 035:726 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1526ms total)
T85A8 035:726 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1527ms total)
T85A8 035:727 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1528ms total)
T85A8 035:728 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 1529ms total)
T85A8 035:736 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1530ms total)
T85A8 035:737 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0001ms, 1531ms total)
T85A8 035:738 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1531ms total)
T28A4 035:738 JLINK_IsHalted()  returns FALSE (0001ms, 1532ms total)
T28A4 035:840 JLINK_IsHalted()  returns FALSE (0000ms, 1531ms total)
T28A4 035:941 JLINK_IsHalted()  returns FALSE (0000ms, 1531ms total)
T28A4 036:043 JLINK_IsHalted()  returns FALSE (0000ms, 1531ms total)
T28A4 036:144 JLINK_IsHalted()  returns FALSE (0000ms, 1531ms total)
T85A8 036:245 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1531ms total)
T85A8 036:245 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1532ms total)
T85A8 036:246 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1533ms total)
T85A8 036:247 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1533ms total)
T85A8 036:247 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1534ms total)
T85A8 036:256 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 1534ms total)
T85A8 036:272 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0B  returns 0x01 (0000ms, 1534ms total)
T85A8 036:280 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1535ms total)
T85A8 036:281 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1535ms total)
T85A8 036:281 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1536ms total)
T85A8 036:290 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1536ms total)
T85A8 036:298 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1537ms total)
T85A8 036:299 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1538ms total)
T85A8 036:300 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1538ms total)
T85A8 036:300 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1539ms total)
T85A8 036:301 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1540ms total)
T85A8 036:302 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 85 17 59 6C 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 1541ms total)
T85A8 036:310 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1542ms total)
T85A8 036:311 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0000ms, 1542ms total)
T85A8 036:311 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1543ms total)
T28A4 036:312 JLINK_IsHalted()  returns FALSE (0001ms, 1544ms total)
T28A4 036:414 JLINK_IsHalted()  returns FALSE (0000ms, 1543ms total)
T28A4 036:515 JLINK_IsHalted()  returns FALSE (0000ms, 1543ms total)
T28A4 036:617 JLINK_IsHalted()  returns FALSE (0000ms, 1543ms total)
T28A4 036:718 JLINK_IsHalted()  returns FALSE (0000ms, 1543ms total)
T85A8 036:820 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1543ms total)
T85A8 036:820 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1544ms total)
T85A8 036:821 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1545ms total)
T85A8 036:822 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1545ms total)
T85A8 036:822 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1546ms total)
T85A8 036:830 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1547ms total)
T85A8 036:845 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0B  returns 0x01 (0001ms, 1548ms total)
T85A8 036:846 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1548ms total)
T85A8 036:846 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1549ms total)
T85A8 036:847 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1550ms total)
T85A8 036:855 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1551ms total)
T85A8 036:863 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1552ms total)
T85A8 036:864 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1553ms total)
T85A8 036:865 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1553ms total)
T85A8 036:865 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1554ms total)
T85A8 036:866 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1555ms total)
T85A8 036:867 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 85 17 59 6C 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0000ms, 1555ms total)
T85A8 036:868 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1556ms total)
T85A8 036:868 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 1E 50 00 00  returns 0x04 (0001ms, 1557ms total)
T85A8 036:869 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1557ms total)
T28A4 036:869 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T28A4 036:971 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T28A4 037:072 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T28A4 037:173 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T28A4 037:274 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T85A8 037:375 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1557ms total)
T85A8 037:375 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1558ms total)
T85A8 037:376 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1559ms total)
T85A8 037:377 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1559ms total)
T85A8 037:385 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1560ms total)
T85A8 037:401 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1560ms total)
T85A8 037:424 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0C  returns 0x01 (0001ms, 1561ms total)
T85A8 037:432 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1562ms total)
T85A8 037:433 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1563ms total)
T85A8 037:434 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1563ms total)
T85A8 037:449 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1564ms total)
T85A8 037:457 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1565ms total)
T85A8 037:458 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1566ms total)
T85A8 037:459 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1566ms total)
T85A8 037:459 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1567ms total)
T85A8 037:460 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1567ms total)
T85A8 037:460 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1568ms total)
T85A8 037:469 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1568ms total)
T85A8 037:469 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 21 50 00 00  returns 0x04 (0001ms, 1569ms total)
T85A8 037:477 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1570ms total)
T28A4 037:478 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T28A4 037:579 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T28A4 037:680 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T28A4 037:781 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T85A8 037:883 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1570ms total)
T85A8 037:883 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1571ms total)
T85A8 037:884 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1572ms total)
T85A8 037:885 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1572ms total)
T85A8 037:893 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1573ms total)
T85A8 037:901 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1573ms total)
T85A8 037:916 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0C  returns 0x01 (0000ms, 1573ms total)
T85A8 037:923 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1574ms total)
T85A8 037:924 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1575ms total)
T85A8 037:925 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1575ms total)
T85A8 037:933 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1575ms total)
T85A8 037:941 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 1575ms total)
T85A8 037:941 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1576ms total)
T85A8 037:942 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1576ms total)
T85A8 037:942 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1577ms total)
T85A8 037:943 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1578ms total)
T85A8 037:944 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1579ms total)
T85A8 037:952 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1580ms total)
T85A8 037:953 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 21 50 00 00  returns 0x04 (0001ms, 1581ms total)
T85A8 037:961 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1581ms total)
T28A4 037:961 JLINK_IsHalted()  returns FALSE (0001ms, 1582ms total)
T28A4 038:063 JLINK_IsHalted()  returns FALSE (0000ms, 1581ms total)
T28A4 038:164 JLINK_IsHalted()  returns FALSE (0000ms, 1581ms total)
T28A4 038:266 JLINK_IsHalted()  returns FALSE (0000ms, 1581ms total)
T28A4 038:367 JLINK_IsHalted()  returns FALSE (0000ms, 1581ms total)
T85A8 038:468 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1581ms total)
T85A8 038:468 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1582ms total)
T85A8 038:469 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T85A8 038:470 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1583ms total)
T85A8 038:479 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 1583ms total)
T85A8 038:487 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 1583ms total)
T85A8 038:502 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0001ms, 1584ms total)
T85A8 038:510 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1584ms total)
T85A8 038:511 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1584ms total)
T85A8 038:511 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 1585ms total)
T85A8 038:519 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1586ms total)
T85A8 038:527 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 1587ms total)
T85A8 038:528 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1587ms total)
T85A8 038:528 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1588ms total)
T85A8 038:529 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1589ms total)
T85A8 038:530 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1589ms total)
T85A8 038:530 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1590ms total)
T85A8 038:539 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1590ms total)
T85A8 038:539 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 25 50 00 00  returns 0x04 (0001ms, 1591ms total)
T85A8 038:547 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1592ms total)
T28A4 038:548 JLINK_IsHalted()  returns FALSE (0001ms, 1593ms total)
T28A4 038:650 JLINK_IsHalted()  returns FALSE (0000ms, 1592ms total)
T28A4 038:751 JLINK_IsHalted()  returns FALSE (0000ms, 1592ms total)
T28A4 038:852 JLINK_IsHalted()  returns FALSE (0000ms, 1592ms total)
T28A4 038:953 JLINK_IsHalted()  returns FALSE (0000ms, 1592ms total)
T85A8 039:054 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1592ms total)
T85A8 039:054 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1593ms total)
T85A8 039:055 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1594ms total)
T85A8 039:056 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1594ms total)
T85A8 039:064 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 1594ms total)
T85A8 039:072 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 1594ms total)
T85A8 039:087 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0001ms, 1595ms total)
T85A8 039:095 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1596ms total)
T85A8 039:096 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1596ms total)
T85A8 039:096 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 1597ms total)
T85A8 039:105 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1597ms total)
T85A8 039:113 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 1597ms total)
T85A8 039:113 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1598ms total)
T85A8 039:114 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1599ms total)
T85A8 039:115 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1599ms total)
T85A8 039:115 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1600ms total)
T85A8 039:116 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1601ms total)
T85A8 039:124 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1602ms total)
T85A8 039:125 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 25 50 00 00  returns 0x04 (0001ms, 1603ms total)
T85A8 039:133 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1604ms total)
T28A4 039:134 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T28A4 039:235 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T28A4 039:336 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T28A4 039:437 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T28A4 039:538 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T85A8 039:638 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1604ms total)
T85A8 039:638 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1605ms total)
T85A8 039:639 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1606ms total)
T85A8 039:640 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1606ms total)
T85A8 039:640 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1607ms total)
T85A8 039:649 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1607ms total)
T85A8 039:664 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0000ms, 1607ms total)
T85A8 039:664 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1608ms total)
T85A8 039:665 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1609ms total)
T85A8 039:666 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1609ms total)
T85A8 039:674 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1609ms total)
T85A8 039:682 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 1609ms total)
T85A8 039:682 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1610ms total)
T85A8 039:683 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1611ms total)
T85A8 039:684 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1611ms total)
T85A8 039:684 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1612ms total)
T85A8 039:685 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1613ms total)
T85A8 039:694 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1614ms total)
T85A8 039:695 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E3 4F 00 00  returns 0x04 (0000ms, 1614ms total)
T85A8 039:703 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1614ms total)
T28A4 039:703 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T28A4 039:806 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T28A4 039:907 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T28A4 040:009 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T28A4 040:110 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T85A8 040:211 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1614ms total)
T85A8 040:211 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1615ms total)
T85A8 040:212 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1616ms total)
T85A8 040:213 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1616ms total)
T85A8 040:213 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1617ms total)
T85A8 040:221 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1618ms total)
T85A8 040:237 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0D  returns 0x01 (0000ms, 1618ms total)
T85A8 040:237 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1619ms total)
T85A8 040:238 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1620ms total)
T85A8 040:239 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1620ms total)
T85A8 040:247 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1620ms total)
T85A8 040:255 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 1620ms total)
T85A8 040:255 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1621ms total)
T85A8 040:256 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1622ms total)
T85A8 040:257 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1622ms total)
T85A8 040:257 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T85A8 040:258 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: AD B4 D5 5D 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 1624ms total)
T85A8 040:267 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1625ms total)
T85A8 040:268 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: E3 4F 00 00  returns 0x04 (0001ms, 1626ms total)
T85A8 040:276 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1627ms total)
T28A4 040:277 JLINK_IsHalted()  returns FALSE (0001ms, 1628ms total)
T28A4 040:379 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T28A4 040:480 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T28A4 040:581 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T28A4 040:682 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T85A8 040:784 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1627ms total)
T85A8 040:784 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1628ms total)
T85A8 040:785 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 1628ms total)
T85A8 040:785 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 1629ms total)
T85A8 040:786 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1629ms total)
T85A8 040:795 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1629ms total)
T85A8 040:810 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0E  returns 0x01 (0001ms, 1630ms total)
T85A8 040:818 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1631ms total)
T85A8 040:819 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1631ms total)
T85A8 040:819 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1632ms total)
T85A8 040:827 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1633ms total)
T85A8 040:835 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1634ms total)
T85A8 040:843 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1635ms total)
T85A8 040:844 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1636ms total)
T85A8 040:845 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1636ms total)
T85A8 040:845 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1637ms total)
T85A8 040:846 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 0A 27 51 00 00 85 FE 00 00 00 ...  returns 0x20 (0001ms, 1638ms total)
T85A8 040:854 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1639ms total)
T85A8 040:855 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F8 4F 00 00  returns 0x04 (0000ms, 1639ms total)
T85A8 040:862 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1640ms total)
T28A4 040:863 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T28A4 040:965 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T28A4 041:066 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T28A4 041:168 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T28A4 041:269 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T85A8 041:370 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1640ms total)
T85A8 041:370 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1641ms total)
T85A8 041:371 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1642ms total)
T85A8 041:372 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1642ms total)
T85A8 041:380 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1643ms total)
T85A8 041:395 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1644ms total)
T85A8 041:418 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0F  returns 0x01 (0001ms, 1645ms total)
T85A8 041:433 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1646ms total)
T85A8 041:434 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1647ms total)
T85A8 041:435 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1647ms total)
T85A8 041:450 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1648ms total)
T85A8 041:459 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1648ms total)
T85A8 041:467 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1648ms total)
T85A8 041:467 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1649ms total)
T85A8 041:468 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1650ms total)
T85A8 041:469 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1650ms total)
T85A8 041:469 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1651ms total)
T85A8 041:478 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1651ms total)
T85A8 041:478 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F9 4F 00 00  returns 0x04 (0001ms, 1652ms total)
T85A8 041:494 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1652ms total)
T28A4 041:494 JLINK_IsHalted()  returns FALSE (0001ms, 1653ms total)
T28A4 041:596 JLINK_IsHalted()  returns FALSE (0000ms, 1652ms total)
T28A4 041:697 JLINK_IsHalted()  returns FALSE (0000ms, 1652ms total)
T28A4 041:798 JLINK_IsHalted()  returns FALSE (0000ms, 1652ms total)
T85A8 041:899 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1652ms total)
T85A8 041:899 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1653ms total)
T85A8 041:900 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1654ms total)
T85A8 041:901 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1654ms total)
T85A8 041:909 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1655ms total)
T85A8 041:917 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1655ms total)
T85A8 041:934 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 0F  returns 0x01 (0001ms, 1656ms total)
T85A8 041:942 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1657ms total)
T85A8 041:943 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1658ms total)
T85A8 041:944 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1658ms total)
T85A8 041:952 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1658ms total)
T85A8 041:960 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 1658ms total)
T85A8 041:960 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1659ms total)
T85A8 041:961 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T85A8 041:962 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1660ms total)
T85A8 041:962 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1661ms total)
T85A8 041:963 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1662ms total)
T85A8 041:971 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1663ms total)
T85A8 041:972 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: F9 4F 00 00  returns 0x04 (0001ms, 1664ms total)
T85A8 041:980 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1665ms total)
T28A4 041:981 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T28A4 042:082 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T28A4 042:183 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T28A4 042:284 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T28A4 042:386 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T85A8 042:487 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1665ms total)
T85A8 042:487 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1666ms total)
T85A8 042:488 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1667ms total)
T85A8 042:489 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1667ms total)
T85A8 042:497 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1667ms total)
T85A8 042:504 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1668ms total)
T85A8 042:520 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 10  returns 0x01 (0000ms, 1668ms total)
T85A8 042:528 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1669ms total)
T85A8 042:529 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1670ms total)
T85A8 042:530 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1670ms total)
T85A8 042:538 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1671ms total)
T85A8 042:546 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1672ms total)
T85A8 042:547 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1673ms total)
T85A8 042:548 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1673ms total)
T85A8 042:548 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1674ms total)
T85A8 042:549 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1675ms total)
T85A8 042:550 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0000ms, 1675ms total)
T85A8 042:558 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1675ms total)
T85A8 042:559 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FB 4F 00 00  returns 0x04 (0000ms, 1675ms total)
T85A8 042:566 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T28A4 042:567 JLINK_IsHalted()  returns FALSE (0001ms, 1677ms total)
T28A4 042:669 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T28A4 042:770 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T28A4 042:871 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T28A4 042:972 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T85A8 043:073 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1676ms total)
T85A8 043:073 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1677ms total)
T85A8 043:074 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1678ms total)
T85A8 043:075 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1678ms total)
T85A8 043:083 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1679ms total)
T85A8 043:091 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1679ms total)
T85A8 043:106 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 10  returns 0x01 (0000ms, 1679ms total)
T85A8 043:114 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1679ms total)
T85A8 043:114 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1680ms total)
T85A8 043:115 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1681ms total)
T85A8 043:123 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1682ms total)
T85A8 043:131 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 1683ms total)
T85A8 043:132 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1684ms total)
T85A8 043:133 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1684ms total)
T85A8 043:133 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1685ms total)
T85A8 043:134 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1686ms total)
T85A8 043:135 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1687ms total)
T85A8 043:143 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1688ms total)
T85A8 043:144 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: FB 4F 00 00  returns 0x04 (0000ms, 1688ms total)
T85A8 043:152 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T28A4 043:153 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T28A4 043:255 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T28A4 043:356 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T28A4 043:457 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T28A4 043:559 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T85A8 043:660 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1689ms total)
T85A8 043:660 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1690ms total)
T85A8 043:661 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1691ms total)
T85A8 043:662 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1691ms total)
T85A8 043:670 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1691ms total)
T85A8 043:678 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1691ms total)
T85A8 043:693 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 11  returns 0x01 (0000ms, 1691ms total)
T85A8 043:701 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1691ms total)
T85A8 043:701 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1692ms total)
T85A8 043:702 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1693ms total)
T85A8 043:710 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1693ms total)
T85A8 043:718 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 1693ms total)
T85A8 043:726 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1694ms total)
T85A8 043:727 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1695ms total)
T85A8 043:728 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1695ms total)
T85A8 043:728 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1696ms total)
T85A8 043:729 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 10 00 51 00 01 A5 FE 00 00 00 ...  returns 0x20 (0001ms, 1697ms total)
T85A8 043:737 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1698ms total)
T85A8 043:738 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 5A 50 00 00  returns 0x04 (0001ms, 1699ms total)
T85A8 043:746 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1700ms total)
T28A4 043:747 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T28A4 043:848 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T28A4 043:949 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T28A4 044:051 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T28A4 044:152 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T85A8 044:253 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1700ms total)
T85A8 044:253 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1701ms total)
T85A8 044:254 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1702ms total)
T85A8 044:255 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1702ms total)
T85A8 044:263 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1703ms total)
T85A8 044:279 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1703ms total)
T85A8 044:302 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 11  returns 0x01 (0001ms, 1704ms total)
T85A8 044:311 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1704ms total)
T85A8 044:311 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1705ms total)
T85A8 044:312 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1706ms total)
T85A8 044:328 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1707ms total)
T85A8 044:337 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 1707ms total)
T85A8 044:345 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1707ms total)
T85A8 044:345 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1708ms total)
T85A8 044:346 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1709ms total)
T85A8 044:347 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1709ms total)
T85A8 044:347 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: B5 47 49 6C 32 00 10 00 51 00 01 A5 FE 00 00 00 ...  returns 0x20 (0001ms, 1710ms total)
T85A8 044:356 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1710ms total)
T85A8 044:356 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 5A 50 00 00  returns 0x04 (0001ms, 1711ms total)
T85A8 044:365 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1712ms total)
T28A4 044:366 JLINK_IsHalted()  returns FALSE (0000ms, 1712ms total)
T28A4 044:467 JLINK_IsHalted()  returns FALSE (0000ms, 1712ms total)
T28A4 044:568 JLINK_IsHalted()  returns FALSE (0000ms, 1712ms total)
T28A4 044:670 JLINK_IsHalted()  returns FALSE (0000ms, 1712ms total)
T85A8 044:771 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1712ms total)
T85A8 044:771 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1713ms total)
T85A8 044:772 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1714ms total)
T85A8 044:773 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1714ms total)
T85A8 044:773 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1715ms total)
T85A8 044:789 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1715ms total)
T85A8 044:811 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 11  returns 0x01 (0001ms, 1716ms total)
T85A8 044:812 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1717ms total)
T85A8 044:813 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1717ms total)
T85A8 044:813 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1718ms total)
T85A8 044:829 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1719ms total)
T85A8 044:838 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 1719ms total)
T85A8 044:838 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1720ms total)
T85A8 044:839 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1721ms total)
T85A8 044:840 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1721ms total)
T85A8 044:840 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T85A8 044:841 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: B5 47 49 6C 32 00 10 00 51 00 01 A5 FE 00 00 00 ...  returns 0x20 (0001ms, 1723ms total)
T85A8 044:842 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1723ms total)
T85A8 044:842 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 5A 50 00 00  returns 0x04 (0001ms, 1724ms total)
T85A8 044:843 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1725ms total)
T28A4 044:844 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T28A4 044:945 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T28A4 045:046 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T28A4 045:148 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T28A4 045:249 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T85A8 045:350 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1725ms total)
T85A8 045:350 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1726ms total)
T85A8 045:351 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1727ms total)
T85A8 045:352 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1727ms total)
T85A8 045:360 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1728ms total)
T85A8 045:376 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1729ms total)
T85A8 045:401 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 12  returns 0x01 (0000ms, 1729ms total)
T85A8 045:409 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1729ms total)
T85A8 045:409 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1730ms total)
T85A8 045:410 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1731ms total)
T85A8 045:425 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1732ms total)
T85A8 045:433 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 1733ms total)
T85A8 045:434 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1734ms total)
T85A8 045:435 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1734ms total)
T85A8 045:435 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1735ms total)
T85A8 045:436 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1735ms total)
T85A8 045:436 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1736ms total)
T85A8 045:445 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1737ms total)
T85A8 045:446 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 5E 50 00 00  returns 0x04 (0000ms, 1737ms total)
T85A8 045:454 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1737ms total)
T28A4 045:454 JLINK_IsHalted()  returns FALSE (0001ms, 1738ms total)
T28A4 045:557 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T28A4 045:658 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T28A4 045:760 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T28A4 045:861 JLINK_IsHalted()  returns FALSE (0000ms, 1737ms total)
T85A8 045:963 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1737ms total)
T85A8 045:963 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1738ms total)
T85A8 045:964 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1739ms total)
T85A8 045:965 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1739ms total)
T85A8 045:973 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1740ms total)
T85A8 045:981 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 1740ms total)
T85A8 045:996 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 12  returns 0x01 (0001ms, 1741ms total)
T85A8 046:004 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1742ms total)
T85A8 046:005 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1742ms total)
T85A8 046:005 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 1743ms total)
T85A8 046:013 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1744ms total)
T85A8 046:021 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 1745ms total)
T85A8 046:022 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1746ms total)
T85A8 046:023 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1746ms total)
T85A8 046:023 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T85A8 046:024 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1747ms total)
T85A8 046:024 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1748ms total)
T85A8 046:033 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1748ms total)
T85A8 046:033 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 5E 50 00 00  returns 0x04 (0001ms, 1749ms total)
T85A8 046:042 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1749ms total)
T28A4 046:042 JLINK_IsHalted()  returns FALSE (0001ms, 1750ms total)
T28A4 046:144 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T28A4 046:245 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T28A4 046:346 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T28A4 046:447 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T85A8 046:548 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1749ms total)
T85A8 046:548 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1750ms total)
T85A8 046:549 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1751ms total)
T85A8 046:550 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1751ms total)
T85A8 046:558 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1752ms total)
T85A8 046:567 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1752ms total)
T85A8 046:582 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 13  returns 0x01 (0000ms, 1752ms total)
T85A8 046:590 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1752ms total)
T85A8 046:590 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1753ms total)
T85A8 046:591 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1754ms total)
T85A8 046:600 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1755ms total)
T85A8 046:608 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1756ms total)
T85A8 046:617 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1756ms total)
T85A8 046:617 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1757ms total)
T85A8 046:618 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1758ms total)
T85A8 046:619 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1758ms total)
T85A8 046:619 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 1759ms total)
T85A8 046:628 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1760ms total)
T85A8 046:629 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8D 50 00 00  returns 0x04 (0000ms, 1760ms total)
T85A8 046:637 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1761ms total)
T28A4 046:638 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T28A4 046:740 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T28A4 046:841 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T28A4 046:942 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T28A4 047:043 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T85A8 047:144 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1761ms total)
T85A8 047:144 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1762ms total)
T85A8 047:145 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1763ms total)
T85A8 047:146 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1763ms total)
T85A8 047:154 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1764ms total)
T85A8 047:162 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 1765ms total)
T85A8 047:179 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 13  returns 0x01 (0001ms, 1766ms total)
T85A8 047:188 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1767ms total)
T85A8 047:189 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1767ms total)
T85A8 047:190 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 1768ms total)
T85A8 047:198 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1769ms total)
T85A8 047:207 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1770ms total)
T85A8 047:216 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1771ms total)
T85A8 047:217 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1771ms total)
T85A8 047:217 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1772ms total)
T85A8 047:218 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1773ms total)
T85A8 047:219 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 62 60 03 47 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0000ms, 1773ms total)
T85A8 047:227 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1773ms total)
T85A8 047:227 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8D 50 00 00  returns 0x04 (0001ms, 1774ms total)
T85A8 047:236 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1775ms total)
T28A4 047:237 JLINK_IsHalted()  returns FALSE (0001ms, 1776ms total)
T28A4 047:339 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T28A4 047:440 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T28A4 047:541 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T28A4 047:643 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T85A8 047:744 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1775ms total)
T85A8 047:744 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1776ms total)
T85A8 047:745 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1777ms total)
T85A8 047:746 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1777ms total)
T85A8 047:746 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1778ms total)
T85A8 047:755 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 1778ms total)
T85A8 047:770 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 13  returns 0x01 (0001ms, 1779ms total)
T85A8 047:771 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1780ms total)
T85A8 047:772 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1780ms total)
T85A8 047:772 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1781ms total)
T85A8 047:780 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1782ms total)
T85A8 047:789 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1783ms total)
T85A8 047:790 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1783ms total)
T85A8 047:790 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1784ms total)
T85A8 047:791 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1785ms total)
T85A8 047:792 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1785ms total)
T85A8 047:792 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 62 60 03 47 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 1786ms total)
T85A8 047:793 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1786ms total)
T85A8 047:793 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8D 50 00 00  returns 0x04 (0001ms, 1787ms total)
T85A8 047:794 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1788ms total)
T28A4 047:795 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
T28A4 047:896 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
T28A4 047:997 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
T28A4 048:099 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
T28A4 048:200 JLINK_IsHalted()  returns FALSE (0001ms, 1789ms total)
T85A8 048:302 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1788ms total)
T85A8 048:302 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1789ms total)
T85A8 048:303 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1790ms total)
T85A8 048:304 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1790ms total)
T85A8 048:304 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1791ms total)
T85A8 048:312 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 1792ms total)
T85A8 048:328 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 14  returns 0x01 (0000ms, 1792ms total)
T85A8 048:336 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1793ms total)
T85A8 048:337 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1793ms total)
T85A8 048:337 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1794ms total)
T85A8 048:352 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1795ms total)
T85A8 048:360 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1796ms total)
T85A8 048:361 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1797ms total)
T85A8 048:362 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1797ms total)
T85A8 048:362 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1798ms total)
T85A8 048:363 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1799ms total)
T85A8 048:364 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 1799ms total)
T85A8 048:372 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1800ms total)
T85A8 048:373 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8E 50 00 00  returns 0x04 (0001ms, 1801ms total)
T85A8 048:381 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1801ms total)
T28A4 048:382 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T28A4 048:483 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T28A4 048:584 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T28A4 048:685 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T28A4 048:786 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T85A8 048:887 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1802ms total)
T85A8 048:887 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1803ms total)
T85A8 048:888 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1804ms total)
T85A8 048:889 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1804ms total)
T85A8 048:889 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1805ms total)
T85A8 048:898 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1806ms total)
T85A8 048:913 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 14  returns 0x01 (0001ms, 1807ms total)
T85A8 048:921 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1808ms total)
T85A8 048:922 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1809ms total)
T85A8 048:923 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 1809ms total)
T85A8 048:932 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1809ms total)
T85A8 048:941 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1810ms total)
T85A8 048:942 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1810ms total)
T85A8 048:942 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1811ms total)
T85A8 048:943 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1811ms total)
T85A8 048:944 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1812ms total)
T85A8 048:944 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1813ms total)
T85A8 048:953 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1813ms total)
T85A8 048:953 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8E 50 00 00  returns 0x04 (0001ms, 1814ms total)
T85A8 048:962 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1814ms total)
T28A4 048:962 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T28A4 049:064 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T28A4 049:165 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T28A4 049:267 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T28A4 049:368 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T85A8 049:469 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1814ms total)
T85A8 049:469 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1815ms total)
T85A8 049:470 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1816ms total)
T85A8 049:471 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1816ms total)
T85A8 049:479 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1816ms total)
T85A8 049:494 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1816ms total)
T85A8 049:516 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 15  returns 0x01 (0000ms, 1816ms total)
T85A8 049:524 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1816ms total)
T85A8 049:524 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1817ms total)
T85A8 049:525 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1818ms total)
T85A8 049:533 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1819ms total)
T85A8 049:542 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 1819ms total)
T85A8 049:542 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1820ms total)
T85A8 049:543 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1821ms total)
T85A8 049:544 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1821ms total)
T85A8 049:544 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1822ms total)
T85A8 049:545 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1823ms total)
T85A8 049:553 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1824ms total)
T85A8 049:554 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 92 50 00 00  returns 0x04 (0000ms, 1824ms total)
T85A8 049:562 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1825ms total)
T28A4 049:563 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T28A4 049:664 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T28A4 049:765 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T28A4 049:867 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T28A4 049:968 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T85A8 050:069 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1825ms total)
T85A8 050:069 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1826ms total)
T85A8 050:070 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1827ms total)
T85A8 050:071 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1827ms total)
T85A8 050:079 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1828ms total)
T85A8 050:087 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1829ms total)
T85A8 050:103 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 15  returns 0x01 (0000ms, 1829ms total)
T85A8 050:111 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1831ms total)
T85A8 050:112 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1831ms total)
T85A8 050:112 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1832ms total)
T85A8 050:120 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1833ms total)
T85A8 050:128 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1834ms total)
T85A8 050:129 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1834ms total)
T85A8 050:129 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1835ms total)
T85A8 050:130 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1836ms total)
T85A8 050:131 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1836ms total)
T85A8 050:131 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 1837ms total)
T85A8 050:140 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1838ms total)
T85A8 050:141 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 92 50 00 00  returns 0x04 (0000ms, 1838ms total)
T85A8 050:149 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1838ms total)
T28A4 050:149 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T28A4 050:250 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T28A4 050:351 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T28A4 050:453 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T28A4 050:554 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T85A8 050:655 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1838ms total)
T85A8 050:655 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1839ms total)
T85A8 050:656 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1840ms total)
T85A8 050:657 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1840ms total)
T85A8 050:666 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1841ms total)
T85A8 050:674 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1842ms total)
T85A8 050:689 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 16  returns 0x01 (0001ms, 1843ms total)
T85A8 050:697 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1844ms total)
T85A8 050:698 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1844ms total)
T85A8 050:698 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1845ms total)
T85A8 050:706 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1846ms total)
T85A8 050:714 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1847ms total)
T85A8 050:715 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1847ms total)
T85A8 050:715 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1848ms total)
T85A8 050:716 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1849ms total)
T85A8 050:717 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1849ms total)
T85A8 050:717 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1850ms total)
T85A8 050:726 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1850ms total)
T85A8 050:726 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 93 50 00 00  returns 0x04 (0001ms, 1851ms total)
T85A8 050:734 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1852ms total)
T28A4 050:735 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T28A4 050:836 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T28A4 050:938 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T28A4 051:039 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T28A4 051:140 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T85A8 051:241 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1852ms total)
T85A8 051:241 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1853ms total)
T85A8 051:242 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1854ms total)
T85A8 051:243 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1854ms total)
T85A8 051:251 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1855ms total)
T85A8 051:259 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1856ms total)
T85A8 051:276 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 16  returns 0x01 (0001ms, 1857ms total)
T85A8 051:284 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1858ms total)
T85A8 051:285 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1859ms total)
T85A8 051:286 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1860ms total)
T85A8 051:294 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1861ms total)
T85A8 051:303 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 1861ms total)
T85A8 051:303 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1862ms total)
T85A8 051:304 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T85A8 051:305 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1863ms total)
T85A8 051:305 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1864ms total)
T85A8 051:306 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: FE 08 E4 9B 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1865ms total)
T85A8 051:314 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1866ms total)
T85A8 051:315 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 93 50 00 00  returns 0x04 (0001ms, 1867ms total)
T85A8 051:323 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1868ms total)
T28A4 051:324 JLINK_IsHalted()  returns FALSE (0001ms, 1869ms total)
T28A4 051:426 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T28A4 051:528 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T28A4 051:629 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T28A4 051:730 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T85A8 051:832 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1868ms total)
T85A8 051:832 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1869ms total)
T85A8 051:833 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1870ms total)
T85A8 051:834 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1870ms total)
T85A8 051:834 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1871ms total)
T85A8 051:844 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 1872ms total)
T85A8 051:859 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 17  returns 0x01 (0001ms, 1873ms total)
T85A8 051:867 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1874ms total)
T85A8 051:868 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1875ms total)
T85A8 051:869 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 1875ms total)
T85A8 051:877 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1875ms total)
T85A8 051:886 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 1875ms total)
T85A8 051:886 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1876ms total)
T85A8 051:887 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1877ms total)
T85A8 051:888 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1877ms total)
T85A8 051:888 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1878ms total)
T85A8 051:889 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1879ms total)
T85A8 051:897 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1880ms total)
T85A8 051:898 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 95 50 00 00  returns 0x04 (0001ms, 1881ms total)
T85A8 051:906 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1881ms total)
T28A4 051:907 JLINK_IsHalted()  returns FALSE (0000ms, 1881ms total)
T28A4 052:009 JLINK_IsHalted()  returns FALSE (0000ms, 1881ms total)
T28A4 052:111 JLINK_IsHalted()  returns FALSE (0000ms, 1881ms total)
T28A4 052:212 JLINK_IsHalted()  returns FALSE (0000ms, 1881ms total)
T28A4 052:313 JLINK_IsHalted()  returns FALSE (0000ms, 1881ms total)
T85A8 052:415 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1881ms total)
T85A8 052:415 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1882ms total)
T85A8 052:416 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1883ms total)
T85A8 052:417 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1883ms total)
T85A8 052:417 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1884ms total)
T85A8 052:432 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1885ms total)
T85A8 052:456 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 18  returns 0x01 (0001ms, 1886ms total)
T85A8 052:471 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1887ms total)
T85A8 052:472 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1888ms total)
T85A8 052:473 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 1888ms total)
T85A8 052:488 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1888ms total)
T85A8 052:496 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1889ms total)
T85A8 052:497 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1889ms total)
T85A8 052:497 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1890ms total)
T85A8 052:498 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1891ms total)
T85A8 052:499 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1891ms total)
T85A8 052:499 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1892ms total)
T85A8 052:508 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1892ms total)
T85A8 052:508 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 97 50 00 00  returns 0x04 (0001ms, 1893ms total)
T85A8 052:524 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1893ms total)
T28A4 052:524 JLINK_IsHalted()  returns FALSE (0001ms, 1894ms total)
T28A4 052:626 JLINK_IsHalted()  returns FALSE (0000ms, 1893ms total)
T28A4 052:727 JLINK_IsHalted()  returns FALSE (0000ms, 1893ms total)
T28A4 052:828 JLINK_IsHalted()  returns FALSE (0000ms, 1893ms total)
T85A8 052:930 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1893ms total)
T85A8 052:930 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1894ms total)
T85A8 052:931 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1895ms total)
T85A8 052:932 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1895ms total)
T85A8 052:932 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1896ms total)
T85A8 052:940 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 1897ms total)
T85A8 052:956 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 18  returns 0x01 (0001ms, 1898ms total)
T85A8 052:964 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1899ms total)
T85A8 052:965 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1900ms total)
T85A8 052:966 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 1900ms total)
T85A8 052:974 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1900ms total)
T85A8 052:982 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 1900ms total)
T85A8 052:982 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1901ms total)
T85A8 052:983 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1902ms total)
T85A8 052:984 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1902ms total)
T85A8 052:984 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1903ms total)
T85A8 052:985 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1904ms total)
T85A8 052:994 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1904ms total)
T85A8 052:994 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 97 50 00 00  returns 0x04 (0001ms, 1905ms total)
T85A8 053:003 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1905ms total)
T28A4 053:003 JLINK_IsHalted()  returns FALSE (0001ms, 1906ms total)
T28A4 053:105 JLINK_IsHalted()  returns FALSE (0000ms, 1905ms total)
T28A4 053:206 JLINK_IsHalted()  returns FALSE (0000ms, 1905ms total)
T28A4 053:307 JLINK_IsHalted()  returns FALSE (0000ms, 1905ms total)
T28A4 053:408 JLINK_IsHalted()  returns FALSE (0000ms, 1905ms total)
T85A8 053:510 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1905ms total)
T85A8 053:510 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1906ms total)
T85A8 053:511 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1907ms total)
T85A8 053:512 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1907ms total)
T85A8 053:520 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1908ms total)
T85A8 053:528 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1909ms total)
T85A8 053:544 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 19  returns 0x01 (0000ms, 1909ms total)
T85A8 053:552 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1909ms total)
T85A8 053:553 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1909ms total)
T85A8 053:553 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1910ms total)
T85A8 053:561 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1911ms total)
T85A8 053:569 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1912ms total)
T85A8 053:570 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1912ms total)
T85A8 053:571 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1913ms total)
T85A8 053:572 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 1913ms total)
T85A8 053:572 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1914ms total)
T85A8 053:573 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1915ms total)
T85A8 053:581 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1916ms total)
T85A8 053:582 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 98 50 00 00  returns 0x04 (0000ms, 1916ms total)
T85A8 053:590 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1916ms total)
T28A4 053:590 JLINK_IsHalted()  returns FALSE (0001ms, 1917ms total)
T28A4 053:692 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T28A4 053:793 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T28A4 053:894 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T28A4 053:995 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T85A8 054:096 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1916ms total)
T85A8 054:096 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1917ms total)
T85A8 054:097 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1918ms total)
T85A8 054:098 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1918ms total)
T85A8 054:106 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0000ms, 1918ms total)
T85A8 054:114 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 1919ms total)
T85A8 054:129 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 19  returns 0x01 (0001ms, 1920ms total)
T85A8 054:137 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1921ms total)
T85A8 054:138 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1922ms total)
T85A8 054:139 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0000ms, 1922ms total)
T85A8 054:147 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1922ms total)
T85A8 054:154 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1923ms total)
T85A8 054:155 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1924ms total)
T85A8 054:156 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1924ms total)
T85A8 054:156 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1925ms total)
T85A8 054:157 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1926ms total)
T85A8 054:158 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 1926ms total)
T85A8 054:166 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1926ms total)
T85A8 054:166 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 98 50 00 00  returns 0x04 (0001ms, 1927ms total)
T85A8 054:174 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1928ms total)
T28A4 054:175 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T28A4 054:277 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T28A4 054:378 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T28A4 054:479 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T28A4 054:581 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T85A8 054:682 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1928ms total)
T85A8 054:682 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1929ms total)
T85A8 054:683 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1930ms total)
T85A8 054:684 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1930ms total)
T85A8 054:692 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1931ms total)
T85A8 054:700 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1931ms total)
T85A8 054:715 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1A  returns 0x01 (0001ms, 1932ms total)
T85A8 054:723 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1933ms total)
T85A8 054:724 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1934ms total)
T85A8 054:725 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0000ms, 1934ms total)
T85A8 054:733 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1934ms total)
T85A8 054:741 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 1934ms total)
T85A8 054:741 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1935ms total)
T85A8 054:742 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1935ms total)
T85A8 054:742 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1936ms total)
T85A8 054:743 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1937ms total)
T85A8 054:744 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1938ms total)
T85A8 054:752 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1939ms total)
T85A8 054:753 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 9A 50 00 00  returns 0x04 (0001ms, 1940ms total)
T85A8 054:761 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1941ms total)
T28A4 054:762 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T28A4 054:864 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T28A4 054:965 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T28A4 055:067 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T28A4 055:168 JLINK_IsHalted()  returns FALSE (0000ms, 1941ms total)
T85A8 055:269 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1942ms total)
T85A8 055:270 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 1942ms total)
T85A8 055:270 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1943ms total)
T85A8 055:271 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1943ms total)
T85A8 055:279 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1944ms total)
T85A8 055:287 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1945ms total)
T85A8 055:302 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1A  returns 0x01 (0001ms, 1946ms total)
T85A8 055:310 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1947ms total)
T85A8 055:311 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 1947ms total)
T85A8 055:311 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 1948ms total)
T85A8 055:319 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1949ms total)
T85A8 055:327 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1950ms total)
T85A8 055:328 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1951ms total)
T85A8 055:329 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1951ms total)
T85A8 055:329 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1952ms total)
T85A8 055:330 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1953ms total)
T85A8 055:331 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: AE A8 E1 9B 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 1954ms total)
T85A8 055:341 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1954ms total)
T85A8 055:341 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 9A 50 00 00  returns 0x04 (0001ms, 1955ms total)
T85A8 055:349 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1956ms total)
T28A4 055:350 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
T28A4 055:452 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T28A4 055:553 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T28A4 055:654 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T28A4 055:755 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T85A8 055:857 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1956ms total)
T85A8 055:857 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1957ms total)
T85A8 055:858 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1958ms total)
T85A8 055:859 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1958ms total)
T85A8 055:867 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 1959ms total)
T85A8 055:875 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 1960ms total)
T85A8 055:891 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1B  returns 0x01 (0000ms, 1960ms total)
T85A8 055:899 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1960ms total)
T85A8 055:899 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1961ms total)
T85A8 055:900 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 1961ms total)
T85A8 055:908 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1963ms total)
T85A8 055:916 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1964ms total)
T85A8 055:917 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1965ms total)
T85A8 055:918 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1965ms total)
T85A8 055:918 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1966ms total)
T85A8 055:919 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1966ms total)
T85A8 055:920 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 1967ms total)
T85A8 055:928 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1967ms total)
T85A8 055:928 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 9C 50 00 00  returns 0x04 (0001ms, 1968ms total)
T85A8 055:936 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1969ms total)
T28A4 055:937 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T28A4 056:039 JLINK_IsHalted()  returns FALSE (0000ms, 1969ms total)
T28A4 056:140 JLINK_IsHalted()  returns FALSE (0000ms, 1969ms total)
T28A4 056:241 JLINK_IsHalted()  returns FALSE (0000ms, 1969ms total)
T28A4 056:343 JLINK_IsHalted()  returns FALSE (0000ms, 1969ms total)
T85A8 056:444 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1969ms total)
T85A8 056:444 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1970ms total)
T85A8 056:445 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1971ms total)
T85A8 056:446 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1971ms total)
T85A8 056:454 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 1972ms total)
T85A8 056:469 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 1973ms total)
T85A8 056:491 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1C  returns 0x01 (0001ms, 1974ms total)
T85A8 056:506 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1975ms total)
T85A8 056:507 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1976ms total)
T85A8 056:508 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0000ms, 1976ms total)
T85A8 056:522 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 1977ms total)
T85A8 056:530 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1978ms total)
T85A8 056:531 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 1979ms total)
T85A8 056:532 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 1979ms total)
T85A8 056:532 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1980ms total)
T85A8 056:533 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 1981ms total)
T85A8 056:534 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 1982ms total)
T85A8 056:542 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 1983ms total)
T85A8 056:543 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 9B 50 00 00  returns 0x04 (0000ms, 1983ms total)
T85A8 056:559 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 1983ms total)
T28A4 056:559 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T28A4 056:661 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T28A4 056:762 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T28A4 056:863 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T85A8 056:965 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1983ms total)
T85A8 056:965 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1984ms total)
T85A8 056:966 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1985ms total)
T85A8 056:967 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 1985ms total)
T85A8 056:967 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 1986ms total)
T85A8 056:976 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 1987ms total)
T85A8 056:991 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1C  returns 0x01 (0001ms, 1988ms total)
T85A8 057:000 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1988ms total)
T85A8 057:000 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1989ms total)
T85A8 057:001 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0000ms, 1989ms total)
T85A8 057:009 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 1989ms total)
T85A8 057:017 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 1990ms total)
T85A8 057:018 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 1990ms total)
T85A8 057:018 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 1991ms total)
T85A8 057:019 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 1992ms total)
T85A8 057:020 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 1992ms total)
T85A8 057:020 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 1993ms total)
T85A8 057:029 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1993ms total)
T85A8 057:029 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 9B 50 00 00  returns 0x04 (0001ms, 1994ms total)
T85A8 057:037 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 1995ms total)
T28A4 057:038 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T28A4 057:140 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T28A4 057:241 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T28A4 057:342 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T28A4 057:443 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T85A8 057:544 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1995ms total)
T85A8 057:544 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 1996ms total)
T85A8 057:545 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 1997ms total)
T85A8 057:546 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 1997ms total)
T85A8 057:554 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 60 41  returns 0x04 (0001ms, 1998ms total)
T85A8 057:563 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 60 41  returns 0x04 (0000ms, 1998ms total)
T85A8 057:579 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1D  returns 0x01 (0000ms, 1998ms total)
T85A8 057:587 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 1998ms total)
T85A8 057:587 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 1999ms total)
T85A8 057:588 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 60 41  returns 0x04 (0001ms, 2000ms total)
T85A8 057:596 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2001ms total)
T85A8 057:604 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2002ms total)
T85A8 057:613 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2002ms total)
T85A8 057:613 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2003ms total)
T85A8 057:614 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2003ms total)
T85A8 057:614 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2004ms total)
T85A8 057:615 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 09 27 51 00 00 86 FE 00 00 00 ...  returns 0x20 (0001ms, 2005ms total)
T85A8 057:623 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2006ms total)
T85A8 057:624 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6F 50 00 00  returns 0x04 (0001ms, 2007ms total)
T85A8 057:632 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2008ms total)
T28A4 057:633 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T28A4 057:734 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T28A4 057:835 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T28A4 057:936 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T28A4 058:037 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T85A8 058:138 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2008ms total)
T85A8 058:138 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2009ms total)
T85A8 058:139 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2010ms total)
T85A8 058:140 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2010ms total)
T85A8 058:148 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2011ms total)
T85A8 058:164 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2011ms total)
T85A8 058:187 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1D  returns 0x01 (0001ms, 2012ms total)
T85A8 058:195 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2013ms total)
T85A8 058:196 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2013ms total)
T85A8 058:196 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2014ms total)
T85A8 058:212 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2014ms total)
T85A8 058:220 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 2014ms total)
T85A8 058:227 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2015ms total)
T85A8 058:228 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2016ms total)
T85A8 058:229 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2016ms total)
T85A8 058:229 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2017ms total)
T85A8 058:230 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 44 0C 21 83 32 00 09 27 51 00 00 86 FE 00 00 00 ...  returns 0x20 (0001ms, 2018ms total)
T85A8 058:238 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2019ms total)
T85A8 058:239 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6F 50 00 00  returns 0x04 (0001ms, 2020ms total)
T85A8 058:247 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2020ms total)
T28A4 058:247 JLINK_IsHalted()  returns FALSE (0001ms, 2021ms total)
T28A4 058:349 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T28A4 058:450 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T28A4 058:551 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T85A8 058:653 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2020ms total)
T85A8 058:653 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2021ms total)
T85A8 058:654 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2022ms total)
T85A8 058:655 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2022ms total)
T85A8 058:663 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2022ms total)
T85A8 058:678 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2023ms total)
T85A8 058:700 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1E  returns 0x01 (0001ms, 2024ms total)
T85A8 058:708 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2025ms total)
T85A8 058:709 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2026ms total)
T85A8 058:710 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2026ms total)
T85A8 058:725 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2027ms total)
T85A8 058:733 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 2027ms total)
T85A8 058:733 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2028ms total)
T85A8 058:734 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2029ms total)
T85A8 058:735 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2029ms total)
T85A8 058:735 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2030ms total)
T85A8 058:736 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 2031ms total)
T85A8 058:745 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2031ms total)
T85A8 058:745 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 72 50 00 00  returns 0x04 (0001ms, 2032ms total)
T85A8 058:754 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2033ms total)
T28A4 058:755 JLINK_IsHalted()  returns FALSE (0001ms, 2034ms total)
T28A4 058:857 JLINK_IsHalted()  returns FALSE (0000ms, 2033ms total)
T28A4 058:957 JLINK_IsHalted()  returns FALSE (0000ms, 2033ms total)
T28A4 059:059 JLINK_IsHalted()  returns FALSE (0000ms, 2033ms total)
T85A8 059:160 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2033ms total)
T85A8 059:160 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2034ms total)
T85A8 059:161 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2035ms total)
T85A8 059:162 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2035ms total)
T85A8 059:170 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2035ms total)
T85A8 059:178 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2035ms total)
T85A8 059:194 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1E  returns 0x01 (0000ms, 2035ms total)
T85A8 059:202 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2036ms total)
T85A8 059:203 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2036ms total)
T85A8 059:203 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2037ms total)
T85A8 059:211 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2038ms total)
T85A8 059:220 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 2038ms total)
T85A8 059:220 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2039ms total)
T85A8 059:221 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2040ms total)
T85A8 059:222 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2040ms total)
T85A8 059:222 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2041ms total)
T85A8 059:223 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 22 22 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 2042ms total)
T85A8 059:231 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2043ms total)
T85A8 059:232 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 72 50 00 00  returns 0x04 (0001ms, 2044ms total)
T85A8 059:240 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2044ms total)
T28A4 059:241 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T28A4 059:342 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T28A4 059:444 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T28A4 059:545 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T28A4 059:646 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T85A8 059:747 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2044ms total)
T85A8 059:747 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2045ms total)
T85A8 059:748 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2046ms total)
T85A8 059:749 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2046ms total)
T85A8 059:749 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2047ms total)
T85A8 059:758 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2048ms total)
T85A8 059:774 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 1F  returns 0x01 (0000ms, 2048ms total)
T85A8 059:782 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2048ms total)
T85A8 059:782 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2049ms total)
T85A8 059:783 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2050ms total)
T85A8 059:792 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2050ms total)
T85A8 059:799 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2051ms total)
T85A8 059:808 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2052ms total)
T85A8 059:809 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2052ms total)
T85A8 059:809 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2053ms total)
T85A8 059:810 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2053ms total)
T85A8 059:810 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 F5 26 51 00 00 9B FD 00 00 00 ...  returns 0x20 (0001ms, 2054ms total)
T85A8 059:819 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2055ms total)
T85A8 059:820 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 45 50 00 00  returns 0x04 (0000ms, 2055ms total)
T85A8 059:828 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2055ms total)
T28A4 059:828 JLINK_IsHalted()  returns FALSE (0001ms, 2056ms total)
T28A4 059:929 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T28A4 060:030 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T28A4 060:131 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T28A4 060:233 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T85A8 060:334 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2055ms total)
T85A8 060:343 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2055ms total)
T85A8 060:343 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2056ms total)
T85A8 060:344 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2057ms total)
T85A8 060:345 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 2057ms total)
T85A8 060:360 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2058ms total)
T85A8 060:384 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 20  returns 0x01 (0001ms, 2059ms total)
T85A8 060:401 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2059ms total)
T85A8 060:401 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2060ms total)
T85A8 060:402 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2061ms total)
T85A8 060:418 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2062ms total)
T85A8 060:426 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2063ms total)
T85A8 060:435 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2063ms total)
T85A8 060:435 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2064ms total)
T85A8 060:436 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2065ms total)
T85A8 060:437 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2065ms total)
T85A8 060:437 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2066ms total)
T85A8 060:446 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2067ms total)
T85A8 060:447 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 45 50 00 00  returns 0x04 (0000ms, 2067ms total)
T85A8 060:455 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2067ms total)
T28A4 060:456 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T28A4 060:557 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T28A4 060:659 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T28A4 060:760 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T85A8 060:861 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2068ms total)
T85A8 060:878 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2069ms total)
T85A8 060:879 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2070ms total)
T85A8 060:880 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2070ms total)
T85A8 060:880 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2071ms total)
T85A8 060:888 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2072ms total)
T85A8 060:904 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 20  returns 0x01 (0001ms, 2073ms total)
T85A8 060:912 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2074ms total)
T85A8 060:913 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2074ms total)
T85A8 060:913 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2075ms total)
T85A8 060:921 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2076ms total)
T85A8 060:929 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2077ms total)
T85A8 060:930 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2078ms total)
T85A8 060:931 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2078ms total)
T85A8 060:931 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2079ms total)
T85A8 060:932 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2080ms total)
T85A8 060:933 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2081ms total)
T85A8 060:941 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2081ms total)
T85A8 060:942 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 45 50 00 00  returns 0x04 (0000ms, 2081ms total)
T85A8 060:942 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2082ms total)
T28A4 060:943 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T28A4 061:044 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T28A4 061:145 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T28A4 061:246 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T28A4 061:347 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T85A8 061:449 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2082ms total)
T85A8 061:458 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2083ms total)
T85A8 061:459 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2084ms total)
T85A8 061:460 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2084ms total)
T85A8 061:460 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2085ms total)
T85A8 061:469 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 2085ms total)
T85A8 061:484 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 21  returns 0x01 (0001ms, 2086ms total)
T85A8 061:492 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2086ms total)
T85A8 061:492 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2087ms total)
T85A8 061:493 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2088ms total)
T85A8 061:501 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2089ms total)
T85A8 061:509 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2090ms total)
T85A8 061:517 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2090ms total)
T85A8 061:517 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2091ms total)
T85A8 061:518 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2092ms total)
T85A8 061:519 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2092ms total)
T85A8 061:519 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 2093ms total)
T85A8 061:528 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2093ms total)
T85A8 061:528 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 75 50 00 00  returns 0x04 (0001ms, 2094ms total)
T85A8 061:536 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2095ms total)
T28A4 061:537 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T28A4 061:639 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T28A4 061:740 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T28A4 061:841 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T28A4 061:942 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T85A8 062:043 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2095ms total)
T85A8 062:043 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2096ms total)
T85A8 062:044 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2097ms total)
T85A8 062:045 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2097ms total)
T85A8 062:045 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2098ms total)
T85A8 062:054 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 2098ms total)
T85A8 062:069 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 21  returns 0x01 (0002ms, 2100ms total)
T85A8 062:078 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2100ms total)
T85A8 062:078 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2101ms total)
T85A8 062:079 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2102ms total)
T85A8 062:087 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2103ms total)
T85A8 062:095 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 2103ms total)
T85A8 062:103 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2103ms total)
T85A8 062:103 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2104ms total)
T85A8 062:104 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2104ms total)
T85A8 062:104 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2105ms total)
T85A8 062:105 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 2106ms total)
T85A8 062:113 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2107ms total)
T85A8 062:114 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 75 50 00 00  returns 0x04 (0001ms, 2108ms total)
T85A8 062:122 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2109ms total)
T28A4 062:123 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T28A4 062:224 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T28A4 062:325 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T28A4 062:427 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T28A4 062:528 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T85A8 062:629 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2109ms total)
T85A8 062:629 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2110ms total)
T85A8 062:630 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2111ms total)
T85A8 062:631 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2111ms total)
T85A8 062:631 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2112ms total)
T85A8 062:640 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2112ms total)
T85A8 062:657 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 21  returns 0x01 (0000ms, 2112ms total)
T85A8 062:657 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2113ms total)
T85A8 062:658 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2114ms total)
T85A8 062:659 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2114ms total)
T85A8 062:667 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2115ms total)
T85A8 062:675 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2116ms total)
T85A8 062:676 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2116ms total)
T85A8 062:676 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2117ms total)
T85A8 062:677 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2118ms total)
T85A8 062:678 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2118ms total)
T85A8 062:678 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 0C 80 21 83 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 2119ms total)
T85A8 062:688 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2120ms total)
T85A8 062:689 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 75 50 00 00  returns 0x04 (0000ms, 2120ms total)
T85A8 062:689 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2121ms total)
T28A4 062:690 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T28A4 062:792 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T28A4 062:893 JLINK_IsHalted()  returns FALSE (0000ms, 2121ms total)
T28A4 062:995 JLINK_IsHalted()  returns FALSE (0000ms, 2121ms total)
T28A4 063:096 JLINK_IsHalted()  returns FALSE (0000ms, 2121ms total)
T85A8 063:197 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2121ms total)
T85A8 063:197 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2122ms total)
T85A8 063:198 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2122ms total)
T85A8 063:198 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2123ms total)
T85A8 063:199 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2124ms total)
T85A8 063:207 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2125ms total)
T85A8 063:223 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 21  returns 0x01 (0001ms, 2126ms total)
T85A8 063:224 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2126ms total)
T85A8 063:224 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2127ms total)
T85A8 063:225 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2127ms total)
T85A8 063:232 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2128ms total)
T85A8 063:240 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2129ms total)
T85A8 063:241 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2130ms total)
T85A8 063:242 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2130ms total)
T85A8 063:242 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2131ms total)
T85A8 063:243 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2131ms total)
T85A8 063:243 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 0C 80 21 83 32 00 01 00 51 00 01 B4 FE 00 00 00 ...  returns 0x20 (0001ms, 2132ms total)
T85A8 063:244 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2133ms total)
T85A8 063:245 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 75 50 00 00  returns 0x04 (0001ms, 2134ms total)
T85A8 063:246 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2134ms total)
T28A4 063:246 JLINK_IsHalted()  returns FALSE (0001ms, 2135ms total)
T28A4 063:348 JLINK_IsHalted()  returns FALSE (0000ms, 2134ms total)
T28A4 063:449 JLINK_IsHalted()  returns FALSE (0000ms, 2134ms total)
T28A4 063:550 JLINK_IsHalted()  returns FALSE (0000ms, 2134ms total)
T28A4 063:651 JLINK_IsHalted()  returns FALSE (0000ms, 2134ms total)
T85A8 063:752 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2134ms total)
T85A8 063:752 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2135ms total)
T85A8 063:753 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2136ms total)
T85A8 063:754 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2136ms total)
T85A8 063:754 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2137ms total)
T85A8 063:763 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2138ms total)
T85A8 063:781 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0001ms, 2139ms total)
T85A8 063:792 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2140ms total)
T85A8 063:793 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2140ms total)
T85A8 063:793 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2141ms total)
T85A8 063:802 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2142ms total)
T85A8 063:811 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2143ms total)
T85A8 063:820 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2144ms total)
T85A8 063:821 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2144ms total)
T85A8 063:821 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2145ms total)
T85A8 063:822 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2146ms total)
T85A8 063:823 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2147ms total)
T85A8 063:832 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2147ms total)
T85A8 063:832 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: A7 50 00 00  returns 0x04 (0001ms, 2148ms total)
T85A8 063:841 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2148ms total)
T28A4 063:842 JLINK_IsHalted()  returns FALSE (0000ms, 2148ms total)
T28A4 063:943 JLINK_IsHalted()  returns FALSE (0000ms, 2148ms total)
T28A4 064:044 JLINK_IsHalted()  returns FALSE (0000ms, 2148ms total)
T28A4 064:145 JLINK_IsHalted()  returns FALSE (0000ms, 2148ms total)
T28A4 064:246 JLINK_IsHalted()  returns FALSE (0000ms, 2148ms total)
T85A8 064:347 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2148ms total)
T85A8 064:347 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2149ms total)
T85A8 064:348 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2150ms total)
T85A8 064:349 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2150ms total)
T85A8 064:349 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2151ms total)
T85A8 064:365 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2152ms total)
T85A8 064:389 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0001ms, 2153ms total)
T85A8 064:398 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2154ms total)
T85A8 064:399 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2155ms total)
T85A8 064:400 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2155ms total)
T85A8 064:416 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2156ms total)
T85A8 064:425 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2157ms total)
T85A8 064:433 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2158ms total)
T85A8 064:434 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2159ms total)
T85A8 064:435 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2159ms total)
T85A8 064:435 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2160ms total)
T85A8 064:436 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2161ms total)
T85A8 064:445 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2162ms total)
T85A8 064:446 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 65 50 00 00  returns 0x04 (0000ms, 2162ms total)
T85A8 064:463 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2163ms total)
T28A4 064:464 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T28A4 064:566 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T28A4 064:667 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T28A4 064:768 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T85A8 064:869 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2163ms total)
T85A8 064:869 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2164ms total)
T85A8 064:870 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2165ms total)
T85A8 064:871 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2165ms total)
T85A8 064:871 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2166ms total)
T85A8 064:881 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2166ms total)
T85A8 064:897 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 22  returns 0x01 (0000ms, 2166ms total)
T85A8 064:897 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2167ms total)
T85A8 064:898 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2168ms total)
T85A8 064:899 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2168ms total)
T85A8 064:907 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2168ms total)
T85A8 064:915 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2169ms total)
T85A8 064:916 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2169ms total)
T85A8 064:916 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2170ms total)
T85A8 064:917 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2171ms total)
T85A8 064:918 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2171ms total)
T85A8 064:918 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2172ms total)
T85A8 064:927 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2172ms total)
T85A8 064:928 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 65 50 00 00  returns 0x04 (0000ms, 2173ms total)
T85A8 064:936 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2173ms total)
T28A4 064:937 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T28A4 065:038 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T28A4 065:140 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T28A4 065:241 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T28A4 065:342 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T85A8 065:443 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2173ms total)
T85A8 065:443 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2174ms total)
T85A8 065:444 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2175ms total)
T85A8 065:445 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2175ms total)
T85A8 065:453 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2176ms total)
T85A8 065:461 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2177ms total)
T85A8 065:477 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0001ms, 2178ms total)
T85A8 065:485 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2179ms total)
T85A8 065:486 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2180ms total)
T85A8 065:487 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 2180ms total)
T85A8 065:496 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2180ms total)
T85A8 065:504 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2181ms total)
T85A8 065:505 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2182ms total)
T85A8 065:506 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2182ms total)
T85A8 065:506 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2183ms total)
T85A8 065:507 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2183ms total)
T85A8 065:507 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 2184ms total)
T85A8 065:516 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2184ms total)
T85A8 065:517 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: A8 50 00 00  returns 0x04 (0000ms, 2184ms total)
T85A8 065:525 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2184ms total)
T28A4 065:525 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T28A4 065:626 JLINK_IsHalted()  returns FALSE (0000ms, 2184ms total)
T28A4 065:727 JLINK_IsHalted()  returns FALSE (0000ms, 2184ms total)
T28A4 065:829 JLINK_IsHalted()  returns FALSE (0000ms, 2184ms total)
T28A4 065:930 JLINK_IsHalted()  returns FALSE (0000ms, 2184ms total)
T85A8 066:031 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2184ms total)
T85A8 066:031 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2185ms total)
T85A8 066:032 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2186ms total)
T85A8 066:033 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2186ms total)
T85A8 066:042 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0000ms, 2186ms total)
T85A8 066:051 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2187ms total)
T85A8 066:068 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0000ms, 2187ms total)
T85A8 066:076 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2188ms total)
T85A8 066:077 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2188ms total)
T85A8 066:077 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2189ms total)
T85A8 066:086 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2190ms total)
T85A8 066:094 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2191ms total)
T85A8 066:095 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2192ms total)
T85A8 066:096 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2192ms total)
T85A8 066:096 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2193ms total)
T85A8 066:097 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2194ms total)
T85A8 066:098 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 17 22 C9 41 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 2195ms total)
T85A8 066:107 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2196ms total)
T85A8 066:108 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: A8 50 00 00  returns 0x04 (0000ms, 2196ms total)
T85A8 066:117 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2196ms total)
T28A4 066:118 JLINK_IsHalted()  returns FALSE (0000ms, 2196ms total)
T28A4 066:219 JLINK_IsHalted()  returns FALSE (0000ms, 2196ms total)
T28A4 066:320 JLINK_IsHalted()  returns FALSE (0000ms, 2196ms total)
T28A4 066:422 JLINK_IsHalted()  returns FALSE (0000ms, 2196ms total)
T28A4 066:523 JLINK_IsHalted()  returns FALSE (0000ms, 2196ms total)
T85A8 066:624 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2196ms total)
T85A8 066:624 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2197ms total)
T85A8 066:625 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2198ms total)
T85A8 066:626 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2198ms total)
T85A8 066:626 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2199ms total)
T85A8 066:635 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 2199ms total)
T85A8 066:650 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0001ms, 2200ms total)
T85A8 066:651 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2201ms total)
T85A8 066:652 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2201ms total)
T85A8 066:652 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2202ms total)
T85A8 066:661 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2202ms total)
T85A8 066:669 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2203ms total)
T85A8 066:670 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2204ms total)
T85A8 066:671 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2204ms total)
T85A8 066:671 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2205ms total)
T85A8 066:672 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2206ms total)
T85A8 066:673 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 17 22 C9 41 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 2207ms total)
T85A8 066:674 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2207ms total)
T85A8 066:674 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: A8 50 00 00  returns 0x04 (0001ms, 2208ms total)
T85A8 066:675 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2208ms total)
T28A4 066:676 JLINK_IsHalted()  returns FALSE (0001ms, 2209ms total)
T28A4 066:778 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T28A4 066:879 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T28A4 066:980 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T28A4 067:082 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T85A8 067:182 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2209ms total)
T85A8 067:182 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2210ms total)
T85A8 067:183 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2211ms total)
T85A8 067:184 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2211ms total)
T85A8 067:184 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2212ms total)
T85A8 067:193 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2213ms total)
T85A8 067:209 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 23  returns 0x01 (0001ms, 2214ms total)
T85A8 067:210 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2215ms total)
T85A8 067:211 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2215ms total)
T85A8 067:211 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2216ms total)
T85A8 067:220 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2217ms total)
T85A8 067:229 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 2217ms total)
T85A8 067:229 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2218ms total)
T85A8 067:230 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2219ms total)
T85A8 067:231 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2219ms total)
T85A8 067:231 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2220ms total)
T85A8 067:232 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 17 22 C9 41 32 00 07 00 51 00 01 AE FE 00 00 00 ...  returns 0x20 (0001ms, 2221ms total)
T85A8 067:233 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2222ms total)
T85A8 067:234 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: A8 50 00 00  returns 0x04 (0000ms, 2222ms total)
T85A8 067:234 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2223ms total)
T28A4 067:235 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T28A4 067:336 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T28A4 067:437 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T28A4 067:539 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T28A4 067:640 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T85A8 067:741 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2223ms total)
T85A8 067:741 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2224ms total)
T85A8 067:742 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2225ms total)
T85A8 067:743 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2225ms total)
T85A8 067:743 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2226ms total)
T85A8 067:752 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2227ms total)
T85A8 067:769 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 24  returns 0x01 (0000ms, 2227ms total)
T85A8 067:777 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2228ms total)
T85A8 067:778 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2228ms total)
T85A8 067:778 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2229ms total)
T85A8 067:787 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2230ms total)
T85A8 067:795 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2231ms total)
T85A8 067:796 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2231ms total)
T85A8 067:796 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2232ms total)
T85A8 067:797 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2233ms total)
T85A8 067:798 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2233ms total)
T85A8 067:798 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 2234ms total)
T85A8 067:807 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2235ms total)
T85A8 067:808 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: AD 50 00 00  returns 0x04 (0001ms, 2236ms total)
T85A8 067:816 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2237ms total)
T28A4 067:817 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T28A4 067:918 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T28A4 068:020 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T28A4 068:121 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T28A4 068:222 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T85A8 068:324 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2237ms total)
T85A8 068:333 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2238ms total)
T85A8 068:334 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2238ms total)
T85A8 068:335 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2238ms total)
T85A8 068:343 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2239ms total)
T85A8 068:359 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2239ms total)
T85A8 068:383 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 25  returns 0x01 (0001ms, 2240ms total)
T85A8 068:399 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2241ms total)
T85A8 068:400 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2241ms total)
T85A8 068:400 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2242ms total)
T85A8 068:416 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2243ms total)
T85A8 068:425 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2244ms total)
T85A8 068:426 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2244ms total)
T85A8 068:426 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2245ms total)
T85A8 068:427 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2246ms total)
T85A8 068:428 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2246ms total)
T85A8 068:428 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2247ms total)
T85A8 068:437 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2247ms total)
T85A8 068:437 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: AD 50 00 00  returns 0x04 (0001ms, 2248ms total)
T85A8 068:447 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2248ms total)
T28A4 068:447 JLINK_IsHalted()  returns FALSE (0001ms, 2249ms total)
T28A4 068:548 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T28A4 068:649 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T28A4 068:751 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T85A8 068:852 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2248ms total)
T85A8 068:870 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2249ms total)
T85A8 068:871 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2249ms total)
T85A8 068:871 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2250ms total)
T85A8 068:879 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2251ms total)
T85A8 068:888 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2251ms total)
T85A8 068:903 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 25  returns 0x01 (0001ms, 2252ms total)
T85A8 068:911 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2253ms total)
T85A8 068:912 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2253ms total)
T85A8 068:912 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2254ms total)
T85A8 068:920 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2255ms total)
T85A8 068:928 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2256ms total)
T85A8 068:929 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2257ms total)
T85A8 068:930 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2257ms total)
T85A8 068:930 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2258ms total)
T85A8 068:931 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2258ms total)
T85A8 068:931 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2259ms total)
T85A8 068:940 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2260ms total)
T85A8 068:941 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: AD 50 00 00  returns 0x04 (0000ms, 2260ms total)
T85A8 068:941 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2261ms total)
T28A4 068:942 JLINK_IsHalted()  returns FALSE (0001ms, 2262ms total)
T28A4 069:044 JLINK_IsHalted()  returns FALSE (0000ms, 2261ms total)
T28A4 069:145 JLINK_IsHalted()  returns FALSE (0000ms, 2261ms total)
T28A4 069:246 JLINK_IsHalted()  returns FALSE (0000ms, 2261ms total)
T28A4 069:347 JLINK_IsHalted()  returns FALSE (0000ms, 2261ms total)
T85A8 069:449 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2261ms total)
T85A8 069:457 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2262ms total)
T85A8 069:458 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2262ms total)
T85A8 069:458 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0001ms, 2263ms total)
T85A8 069:467 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 2263ms total)
T85A8 069:475 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 2263ms total)
T85A8 069:490 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 26  returns 0x01 (0001ms, 2264ms total)
T85A8 069:498 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2265ms total)
T85A8 069:499 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2265ms total)
T85A8 069:499 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2266ms total)
T85A8 069:508 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2266ms total)
T85A8 069:516 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2267ms total)
T85A8 069:517 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2267ms total)
T85A8 069:517 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2268ms total)
T85A8 069:518 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2269ms total)
T85A8 069:519 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2269ms total)
T85A8 069:519 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2270ms total)
T85A8 069:528 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2271ms total)
T85A8 069:529 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B0 50 00 00  returns 0x04 (0000ms, 2271ms total)
T85A8 069:537 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2271ms total)
T28A4 069:537 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T28A4 069:639 JLINK_IsHalted()  returns FALSE (0000ms, 2271ms total)
T28A4 069:740 JLINK_IsHalted()  returns FALSE (0000ms, 2271ms total)
T28A4 069:842 JLINK_IsHalted()  returns FALSE (0000ms, 2271ms total)
T28A4 069:943 JLINK_IsHalted()  returns FALSE (0000ms, 2271ms total)
T85A8 070:044 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2271ms total)
T85A8 070:044 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2272ms total)
T85A8 070:045 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2273ms total)
T85A8 070:046 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2273ms total)
T85A8 070:054 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2274ms total)
T85A8 070:062 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2275ms total)
T85A8 070:078 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 26  returns 0x01 (0000ms, 2275ms total)
T85A8 070:086 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2276ms total)
T85A8 070:087 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2276ms total)
T85A8 070:087 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2277ms total)
T85A8 070:095 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2278ms total)
T85A8 070:103 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2279ms total)
T85A8 070:104 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2280ms total)
T85A8 070:105 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2280ms total)
T85A8 070:105 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2281ms total)
T85A8 070:106 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2282ms total)
T85A8 070:107 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 2282ms total)
T85A8 070:115 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2283ms total)
T85A8 070:116 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B0 50 00 00  returns 0x04 (0001ms, 2284ms total)
T85A8 070:124 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2285ms total)
T28A4 070:125 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T28A4 070:227 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T28A4 070:328 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T28A4 070:429 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T28A4 070:530 JLINK_IsHalted()  returns FALSE (0000ms, 2285ms total)
T85A8 070:630 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2286ms total)
T85A8 070:631 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2286ms total)
T85A8 070:631 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2287ms total)
T85A8 070:632 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2288ms total)
T85A8 070:641 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 2288ms total)
T85A8 070:649 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2289ms total)
T85A8 070:665 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 27  returns 0x01 (0001ms, 2290ms total)
T85A8 070:674 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2290ms total)
T85A8 070:674 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2291ms total)
T85A8 070:675 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2292ms total)
T85A8 070:683 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2293ms total)
T85A8 070:691 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2294ms total)
T85A8 070:692 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2295ms total)
T85A8 070:693 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2295ms total)
T85A8 070:693 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2296ms total)
T85A8 070:694 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2297ms total)
T85A8 070:695 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 04 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2298ms total)
T85A8 070:703 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2299ms total)
T85A8 070:704 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B2 50 00 00  returns 0x04 (0001ms, 2300ms total)
T85A8 070:712 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2301ms total)
T28A4 070:713 JLINK_IsHalted()  returns FALSE (0001ms, 2302ms total)
T28A4 070:816 JLINK_IsHalted()  returns FALSE (0000ms, 2301ms total)
T28A4 070:917 JLINK_IsHalted()  returns FALSE (0000ms, 2301ms total)
T28A4 071:018 JLINK_IsHalted()  returns FALSE (0000ms, 2301ms total)
T28A4 071:119 JLINK_IsHalted()  returns FALSE (0000ms, 2301ms total)
T85A8 071:220 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2301ms total)
T85A8 071:220 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2302ms total)
T85A8 071:221 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2303ms total)
T85A8 071:222 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2303ms total)
T85A8 071:231 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 2303ms total)
T85A8 071:239 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 2303ms total)
T85A8 071:254 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 27  returns 0x01 (0001ms, 2304ms total)
T85A8 071:262 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2305ms total)
T85A8 071:263 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2306ms total)
T85A8 071:264 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 2306ms total)
T85A8 071:272 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2306ms total)
T85A8 071:280 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2308ms total)
T85A8 071:281 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2308ms total)
T85A8 071:281 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2309ms total)
T85A8 071:282 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2310ms total)
T85A8 071:283 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2310ms total)
T85A8 071:283 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2311ms total)
T85A8 071:292 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2311ms total)
T85A8 071:292 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B2 50 00 00  returns 0x04 (0001ms, 2312ms total)
T85A8 071:301 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2312ms total)
T28A4 071:301 JLINK_IsHalted()  returns FALSE (0001ms, 2313ms total)
T28A4 071:403 JLINK_IsHalted()  returns FALSE (0000ms, 2312ms total)
T28A4 071:505 JLINK_IsHalted()  returns FALSE (0000ms, 2312ms total)
T28A4 071:606 JLINK_IsHalted()  returns FALSE (0000ms, 2312ms total)
T28A4 071:707 JLINK_IsHalted()  returns FALSE (0000ms, 2312ms total)
T85A8 071:808 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2312ms total)
T85A8 071:808 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2313ms total)
T85A8 071:809 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2314ms total)
T85A8 071:810 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2314ms total)
T85A8 071:818 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2315ms total)
T85A8 071:826 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2316ms total)
T85A8 071:842 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 28  returns 0x01 (0000ms, 2316ms total)
T85A8 071:850 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2317ms total)
T85A8 071:851 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2317ms total)
T85A8 071:851 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2318ms total)
T85A8 071:860 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2318ms total)
T85A8 071:868 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 2318ms total)
T85A8 071:868 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2319ms total)
T85A8 071:869 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2320ms total)
T85A8 071:870 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2320ms total)
T85A8 071:870 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2321ms total)
T85A8 071:871 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2322ms total)
T85A8 071:872 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2322ms total)
T85A8 071:872 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B1 50 00 00  returns 0x04 (0001ms, 2323ms total)
T85A8 071:881 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2323ms total)
T28A4 071:881 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T28A4 071:984 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T28A4 072:085 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T28A4 072:186 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T28A4 072:287 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T85A8 072:388 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2323ms total)
T85A8 072:388 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2324ms total)
T85A8 072:389 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2325ms total)
T85A8 072:390 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2325ms total)
T85A8 072:406 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2326ms total)
T85A8 072:422 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2327ms total)
T85A8 072:445 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0001ms, 2328ms total)
T85A8 072:460 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2329ms total)
T85A8 072:461 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2330ms total)
T85A8 072:462 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2330ms total)
T85A8 072:477 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2331ms total)
T85A8 072:485 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2332ms total)
T85A8 072:486 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2333ms total)
T85A8 072:487 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2333ms total)
T85A8 072:487 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2334ms total)
T85A8 072:488 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2335ms total)
T85A8 072:489 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 2335ms total)
T85A8 072:496 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2336ms total)
T85A8 072:497 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B3 50 00 00  returns 0x04 (0001ms, 2337ms total)
T85A8 072:513 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2338ms total)
T28A4 072:514 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T28A4 072:615 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T28A4 072:717 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T28A4 072:818 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T85A8 072:919 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2338ms total)
T85A8 072:919 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2339ms total)
T85A8 072:920 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2340ms total)
T85A8 072:921 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2340ms total)
T85A8 072:929 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2341ms total)
T85A8 072:945 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2342ms total)
T85A8 072:968 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 29  returns 0x01 (0000ms, 2342ms total)
T85A8 072:975 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2343ms total)
T85A8 072:976 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2343ms total)
T85A8 072:976 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2344ms total)
T85A8 072:992 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2345ms total)
T85A8 073:000 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2346ms total)
T85A8 073:001 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2346ms total)
T85A8 073:001 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2347ms total)
T85A8 073:002 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2348ms total)
T85A8 073:003 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2348ms total)
T85A8 073:003 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2349ms total)
T85A8 073:012 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2350ms total)
T85A8 073:013 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B3 50 00 00  returns 0x04 (0000ms, 2350ms total)
T85A8 073:021 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2350ms total)
T28A4 073:021 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T28A4 073:123 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T28A4 073:224 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T28A4 073:325 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T85A8 073:427 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2350ms total)
T85A8 073:427 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2351ms total)
T85A8 073:428 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2352ms total)
T85A8 073:429 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2352ms total)
T85A8 073:429 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2353ms total)
T85A8 073:445 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2354ms total)
T85A8 073:468 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2A  returns 0x01 (0001ms, 2355ms total)
T85A8 073:477 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2356ms total)
T85A8 073:478 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2357ms total)
T85A8 073:479 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2357ms total)
T85A8 073:495 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2358ms total)
T85A8 073:503 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2359ms total)
T85A8 073:504 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2360ms total)
T85A8 073:505 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2360ms total)
T85A8 073:505 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2361ms total)
T85A8 073:506 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2362ms total)
T85A8 073:507 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0000ms, 2362ms total)
T85A8 073:515 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2363ms total)
T85A8 073:516 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B6 50 00 00  returns 0x04 (0000ms, 2363ms total)
T85A8 073:524 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2363ms total)
T28A4 073:525 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T28A4 073:626 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T28A4 073:727 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T28A4 073:828 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T28A4 073:930 JLINK_IsHalted()  returns FALSE (0000ms, 2363ms total)
T85A8 074:031 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2363ms total)
T85A8 074:031 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2364ms total)
T85A8 074:032 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2365ms total)
T85A8 074:033 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2365ms total)
T85A8 074:033 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2366ms total)
T85A8 074:042 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2367ms total)
T85A8 074:058 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2A  returns 0x01 (0000ms, 2367ms total)
T85A8 074:066 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2368ms total)
T85A8 074:067 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2368ms total)
T85A8 074:067 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2369ms total)
T85A8 074:076 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2370ms total)
T85A8 074:084 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2371ms total)
T85A8 074:085 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2371ms total)
T85A8 074:086 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2371ms total)
T85A8 074:086 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2372ms total)
T85A8 074:087 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2372ms total)
T85A8 074:087 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2373ms total)
T85A8 074:096 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2373ms total)
T85A8 074:097 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B6 50 00 00  returns 0x04 (0000ms, 2373ms total)
T85A8 074:105 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2373ms total)
T28A4 074:105 JLINK_IsHalted()  returns FALSE (0001ms, 2374ms total)
T28A4 074:207 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T28A4 074:308 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T28A4 074:409 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T28A4 074:510 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T85A8 074:612 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2373ms total)
T85A8 074:612 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2374ms total)
T85A8 074:613 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2375ms total)
T85A8 074:614 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2375ms total)
T85A8 074:614 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2376ms total)
T85A8 074:615 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2377ms total)
T85A8 074:624 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2B  returns 0x01 (0000ms, 2377ms total)
T85A8 074:633 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2377ms total)
T85A8 074:633 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2378ms total)
T85A8 074:634 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2379ms total)
T85A8 074:635 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2379ms total)
T85A8 074:643 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0001ms, 2380ms total)
T85A8 074:644 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2380ms total)
T85A8 074:644 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2381ms total)
T85A8 074:645 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2382ms total)
T85A8 074:646 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2382ms total)
T85A8 074:646 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2383ms total)
T85A8 074:655 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2384ms total)
T85A8 074:656 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B6 50 00 00  returns 0x04 (0000ms, 2384ms total)
T85A8 074:656 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2385ms total)
T28A4 074:657 JLINK_IsHalted()  returns FALSE (0001ms, 2386ms total)
T28A4 074:758 JLINK_IsHalted()  returns FALSE (0000ms, 2385ms total)
T28A4 074:859 JLINK_IsHalted()  returns FALSE (0000ms, 2385ms total)
T28A4 074:961 JLINK_IsHalted()  returns FALSE (0000ms, 2385ms total)
T28A4 075:062 JLINK_IsHalted()  returns FALSE (0000ms, 2385ms total)
T85A8 075:163 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2385ms total)
T85A8 075:163 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2386ms total)
T85A8 075:164 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2387ms total)
T85A8 075:165 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2387ms total)
T85A8 075:165 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2388ms total)
T85A8 075:166 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2389ms total)
T85A8 075:175 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2B  returns 0x01 (0001ms, 2390ms total)
T85A8 075:184 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2391ms total)
T85A8 075:185 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2392ms total)
T85A8 075:186 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2392ms total)
T85A8 075:186 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2393ms total)
T85A8 075:195 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 01  returns 0x01 (0000ms, 2393ms total)
T85A8 075:195 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2394ms total)
T85A8 075:196 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2395ms total)
T85A8 075:197 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2395ms total)
T85A8 075:197 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2396ms total)
T85A8 075:198 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 27 51 00 00 8D FE 00 00 00 ...  returns 0x20 (0001ms, 2397ms total)
T85A8 075:206 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2398ms total)
T85A8 075:207 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: B6 50 00 00  returns 0x04 (0001ms, 2399ms total)
T85A8 075:208 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2399ms total)
T28A4 075:208 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T28A4 075:310 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T28A4 075:411 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T28A4 075:512 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T28A4 075:613 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T85A8 075:714 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2399ms total)
T85A8 075:714 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2400ms total)
T85A8 075:715 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2401ms total)
T85A8 075:716 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2401ms total)
T85A8 075:716 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2402ms total)
T85A8 075:725 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2403ms total)
T85A8 075:741 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2C  returns 0x01 (0000ms, 2403ms total)
T85A8 075:749 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2403ms total)
T85A8 075:749 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2404ms total)
T85A8 075:750 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2405ms total)
T85A8 075:758 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2406ms total)
T85A8 075:766 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2407ms total)
T85A8 075:775 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2407ms total)
T85A8 075:775 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2408ms total)
T85A8 075:776 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2409ms total)
T85A8 075:777 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2409ms total)
T85A8 075:777 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 F5 26 51 00 00 9B FD 00 00 00 ...  returns 0x20 (0001ms, 2410ms total)
T85A8 075:785 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2411ms total)
T85A8 075:786 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 89 50 00 00  returns 0x04 (0001ms, 2412ms total)
T85A8 075:795 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2413ms total)
T28A4 075:796 JLINK_IsHalted()  returns FALSE (0001ms, 2414ms total)
T28A4 075:898 JLINK_IsHalted()  returns FALSE (0000ms, 2413ms total)
T28A4 075:999 JLINK_IsHalted()  returns FALSE (0000ms, 2413ms total)
T28A4 076:100 JLINK_IsHalted()  returns FALSE (0000ms, 2413ms total)
T28A4 076:201 JLINK_IsHalted()  returns FALSE (0000ms, 2413ms total)
T85A8 076:302 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2413ms total)
T85A8 076:302 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2414ms total)
T85A8 076:303 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2415ms total)
T85A8 076:304 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2415ms total)
T85A8 076:304 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 40  returns 0x04 (0001ms, 2416ms total)
T85A8 076:313 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2417ms total)
T85A8 076:339 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2D  returns 0x01 (0001ms, 2418ms total)
T85A8 076:357 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2418ms total)
T85A8 076:358 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2418ms total)
T85A8 076:358 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2419ms total)
T85A8 076:374 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2420ms total)
T85A8 076:383 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0000ms, 2420ms total)
T85A8 076:391 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2420ms total)
T85A8 076:391 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2421ms total)
T85A8 076:392 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2422ms total)
T85A8 076:393 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2422ms total)
T85A8 076:393 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2423ms total)
T85A8 076:402 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2424ms total)
T85A8 076:403 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8B 50 00 00  returns 0x04 (0000ms, 2424ms total)
T85A8 076:418 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2425ms total)
T28A4 076:419 JLINK_IsHalted()  returns FALSE (0000ms, 2425ms total)
T28A4 076:520 JLINK_IsHalted()  returns FALSE (0000ms, 2425ms total)
T28A4 076:621 JLINK_IsHalted()  returns FALSE (0000ms, 2425ms total)
T28A4 076:722 JLINK_IsHalted()  returns FALSE (0000ms, 2425ms total)
T85A8 076:823 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2425ms total)
T85A8 076:823 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2426ms total)
T85A8 076:824 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2427ms total)
T85A8 076:825 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2427ms total)
T85A8 076:825 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2428ms total)
T85A8 076:834 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0001ms, 2429ms total)
T85A8 076:852 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2D  returns 0x01 (0001ms, 2430ms total)
T85A8 076:861 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2431ms total)
T85A8 076:862 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2432ms total)
T85A8 076:863 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 40  returns 0x04 (0000ms, 2432ms total)
T85A8 076:872 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2433ms total)
T85A8 076:881 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2434ms total)
T85A8 076:882 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2435ms total)
T85A8 076:883 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2435ms total)
T85A8 076:883 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2436ms total)
T85A8 076:884 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2436ms total)
T85A8 076:884 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2437ms total)
T85A8 076:893 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2438ms total)
T85A8 076:894 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 8B 50 00 00  returns 0x04 (0000ms, 2438ms total)
T85A8 076:903 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2439ms total)
T28A4 076:904 JLINK_IsHalted()  returns FALSE (0000ms, 2439ms total)
T28A4 077:005 JLINK_IsHalted()  returns FALSE (0000ms, 2439ms total)
T28A4 077:106 JLINK_IsHalted()  returns FALSE (0000ms, 2439ms total)
T28A4 077:208 JLINK_IsHalted()  returns FALSE (0000ms, 2439ms total)
T28A4 077:309 JLINK_IsHalted()  returns FALSE (0000ms, 2439ms total)
T85A8 077:410 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2439ms total)
T85A8 077:410 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2440ms total)
T85A8 077:411 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2441ms total)
T85A8 077:412 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2441ms total)
T85A8 077:412 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2442ms total)
T85A8 077:429 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 2442ms total)
T85A8 077:445 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2E  returns 0x01 (0001ms, 2443ms total)
T85A8 077:453 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2444ms total)
T85A8 077:454 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2444ms total)
T85A8 077:455 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 2445ms total)
T85A8 077:463 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2446ms total)
T85A8 077:472 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 2446ms total)
T85A8 077:481 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2446ms total)
T85A8 077:481 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2447ms total)
T85A8 077:482 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2448ms total)
T85A8 077:483 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2448ms total)
T85A8 077:483 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 F6 26 51 00 00 9A FD 00 00 00 ...  returns 0x20 (0001ms, 2449ms total)
T85A8 077:492 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2450ms total)
T85A8 077:493 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 61 50 00 00  returns 0x04 (0000ms, 2450ms total)
T85A8 077:502 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2450ms total)
T28A4 077:502 JLINK_IsHalted()  returns FALSE (0001ms, 2451ms total)
T28A4 077:604 JLINK_IsHalted()  returns FALSE (0000ms, 2450ms total)
T28A4 077:705 JLINK_IsHalted()  returns FALSE (0000ms, 2450ms total)
T28A4 077:806 JLINK_IsHalted()  returns FALSE (0000ms, 2450ms total)
T28A4 077:907 JLINK_IsHalted()  returns FALSE (0000ms, 2450ms total)
T85A8 078:008 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2450ms total)
T85A8 078:008 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2451ms total)
T85A8 078:009 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2452ms total)
T85A8 078:010 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2452ms total)
T85A8 078:010 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2453ms total)
T85A8 078:019 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0001ms, 2454ms total)
T85A8 078:034 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2E  returns 0x01 (0001ms, 2455ms total)
T85A8 078:043 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2455ms total)
T85A8 078:043 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2456ms total)
T85A8 078:044 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 40  returns 0x04 (0000ms, 2456ms total)
T85A8 078:052 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2457ms total)
T85A8 078:060 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2458ms total)
T85A8 078:069 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2458ms total)
T85A8 078:069 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2459ms total)
T85A8 078:070 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2460ms total)
T85A8 078:071 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2460ms total)
T85A8 078:071 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 F6 26 51 00 00 9A FD 00 00 00 ...  returns 0x20 (0001ms, 2461ms total)
T85A8 078:079 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2462ms total)
T85A8 078:080 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 61 50 00 00  returns 0x04 (0001ms, 2463ms total)
T85A8 078:089 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2464ms total)
T28A4 078:090 JLINK_IsHalted()  returns FALSE (0001ms, 2465ms total)
T28A4 078:192 JLINK_IsHalted()  returns FALSE (0000ms, 2464ms total)
T28A4 078:294 JLINK_IsHalted()  returns FALSE (0000ms, 2464ms total)
T28A4 078:395 JLINK_IsHalted()  returns FALSE (0000ms, 2464ms total)
T28A4 078:496 JLINK_IsHalted()  returns FALSE (0000ms, 2464ms total)
T85A8 078:597 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2464ms total)
T85A8 078:597 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2465ms total)
T85A8 078:598 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2466ms total)
T85A8 078:599 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2466ms total)
T85A8 078:599 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2467ms total)
T85A8 078:608 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2468ms total)
T85A8 078:624 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2F  returns 0x01 (0001ms, 2469ms total)
T85A8 078:632 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2470ms total)
T85A8 078:633 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2471ms total)
T85A8 078:634 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0000ms, 2471ms total)
T85A8 078:642 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2471ms total)
T85A8 078:650 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2472ms total)
T85A8 078:658 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2473ms total)
T85A8 078:659 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2473ms total)
T85A8 078:659 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2474ms total)
T85A8 078:660 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2475ms total)
T85A8 078:661 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 15 00 51 00 01 A0 FE 00 00 00 ...  returns 0x20 (0001ms, 2476ms total)
T85A8 078:669 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2477ms total)
T85A8 078:670 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 90 50 00 00  returns 0x04 (0001ms, 2478ms total)
T85A8 078:679 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2479ms total)
T28A4 078:680 JLINK_IsHalted()  returns FALSE (0001ms, 2480ms total)
T28A4 078:783 JLINK_IsHalted()  returns FALSE (0000ms, 2479ms total)
T28A4 078:884 JLINK_IsHalted()  returns FALSE (0000ms, 2479ms total)
T28A4 078:985 JLINK_IsHalted()  returns FALSE (0000ms, 2479ms total)
T28A4 079:086 JLINK_IsHalted()  returns FALSE (0000ms, 2479ms total)
T85A8 079:187 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2479ms total)
T85A8 079:187 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2480ms total)
T85A8 079:188 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2481ms total)
T85A8 079:189 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2481ms total)
T85A8 079:189 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2482ms total)
T85A8 079:198 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2483ms total)
T85A8 079:214 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2F  returns 0x01 (0001ms, 2484ms total)
T85A8 079:223 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2485ms total)
T85A8 079:224 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2485ms total)
T85A8 079:224 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 2486ms total)
T85A8 079:234 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2486ms total)
T85A8 079:242 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2487ms total)
T85A8 079:251 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2487ms total)
T85A8 079:251 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2488ms total)
T85A8 079:252 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2489ms total)
T85A8 079:253 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2489ms total)
T85A8 079:253 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 15 00 51 00 01 A0 FE 00 00 00 ...  returns 0x20 (0001ms, 2490ms total)
T85A8 079:262 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2491ms total)
T85A8 079:263 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 90 50 00 00  returns 0x04 (0000ms, 2491ms total)
T85A8 079:271 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2492ms total)
T28A4 079:272 JLINK_IsHalted()  returns FALSE (0001ms, 2493ms total)
T28A4 079:374 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T28A4 079:475 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T28A4 079:576 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T28A4 079:677 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T85A8 079:778 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2492ms total)
T85A8 079:778 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2493ms total)
T85A8 079:779 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2494ms total)
T85A8 079:780 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2494ms total)
T85A8 079:780 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2495ms total)
T85A8 079:790 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 2495ms total)
T85A8 079:805 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 2F  returns 0x01 (0000ms, 2495ms total)
T85A8 079:805 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2496ms total)
T85A8 079:806 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2496ms total)
T85A8 079:806 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 C0 40  returns 0x04 (0001ms, 2497ms total)
T85A8 079:815 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2497ms total)
T85A8 079:823 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 02  returns 0x01 (0001ms, 2498ms total)
T85A8 079:824 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2498ms total)
T85A8 079:824 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2499ms total)
T85A8 079:825 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2500ms total)
T85A8 079:826 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2500ms total)
T85A8 079:826 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 15 00 51 00 01 A0 FE 00 00 00 ...  returns 0x20 (0001ms, 2501ms total)
T85A8 079:827 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2502ms total)
T85A8 079:828 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 90 50 00 00  returns 0x04 (0000ms, 2502ms total)
T85A8 079:828 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2503ms total)
T28A4 079:829 JLINK_IsHalted()  returns FALSE (0001ms, 2504ms total)
T28A4 079:931 JLINK_IsHalted()  returns FALSE (0000ms, 2503ms total)
T28A4 080:032 JLINK_IsHalted()  returns FALSE (0000ms, 2503ms total)
T28A4 080:133 JLINK_IsHalted()  returns FALSE (0000ms, 2503ms total)
T28A4 080:234 JLINK_IsHalted()  returns FALSE (0000ms, 2503ms total)
T85A8 080:335 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 01 00 00 00  returns 0x04 (0000ms, 2503ms total)
T85A8 080:344 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2503ms total)
T85A8 080:344 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2504ms total)
T85A8 080:345 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0001ms, 2505ms total)
T85A8 080:353 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2506ms total)
T85A8 080:369 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0000ms, 2506ms total)
T85A8 080:392 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 30  returns 0x01 (0001ms, 2507ms total)
T85A8 080:401 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2507ms total)
T85A8 080:401 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2508ms total)
T85A8 080:402 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2509ms total)
T85A8 080:417 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2510ms total)
T85A8 080:425 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2511ms total)
T85A8 080:433 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2512ms total)
T85A8 080:434 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2513ms total)
T85A8 080:435 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2513ms total)
T85A8 080:435 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2514ms total)
T85A8 080:436 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 E8 26 51 00 00 A8 FD 00 00 00 ...  returns 0x20 (0001ms, 2515ms total)
T85A8 080:444 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2516ms total)
T85A8 080:445 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 36 50 00 00  returns 0x04 (0001ms, 2517ms total)
T85A8 080:453 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2518ms total)
T28A4 080:454 JLINK_IsHalted()  returns FALSE (0000ms, 2518ms total)
T28A4 080:555 JLINK_IsHalted()  returns FALSE (0000ms, 2518ms total)
T28A4 080:656 JLINK_IsHalted()  returns FALSE (0000ms, 2518ms total)
T28A4 080:757 JLINK_IsHalted()  returns FALSE (0000ms, 2518ms total)
T85A8 080:858 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2518ms total)
T85A8 080:875 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2519ms total)
T85A8 080:876 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2520ms total)
T85A8 080:877 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2520ms total)
T85A8 080:885 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2522ms total)
T85A8 080:894 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2523ms total)
T85A8 080:910 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 30  returns 0x01 (0001ms, 2524ms total)
T85A8 080:919 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2525ms total)
T85A8 080:920 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2525ms total)
T85A8 080:920 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 2526ms total)
T85A8 080:929 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2527ms total)
T85A8 080:939 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0001ms, 2528ms total)
T85A8 080:948 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2529ms total)
T85A8 080:949 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2530ms total)
T85A8 080:950 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2531ms total)
T85A8 080:951 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2531ms total)
T85A8 080:951 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 E8 26 51 00 00 A8 FD 00 00 00 ...  returns 0x20 (0001ms, 2532ms total)
T85A8 080:960 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2533ms total)
T85A8 080:961 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 36 50 00 00  returns 0x04 (0000ms, 2533ms total)
T85A8 080:969 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2534ms total)
T28A4 080:970 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T28A4 081:071 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T28A4 081:173 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T28A4 081:274 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T85A8 081:375 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2534ms total)
T85A8 081:384 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2534ms total)
T85A8 081:384 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2535ms total)
T85A8 081:385 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2536ms total)
T85A8 081:393 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 2537ms total)
T85A8 081:401 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 2538ms total)
T85A8 081:416 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 31  returns 0x01 (0001ms, 2539ms total)
T85A8 081:424 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2540ms total)
T85A8 081:425 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2541ms total)
T85A8 081:426 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 2541ms total)
T85A8 081:433 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2542ms total)
T85A8 081:442 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2542ms total)
T85A8 081:442 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2543ms total)
T85A8 081:443 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2544ms total)
T85A8 081:444 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2544ms total)
T85A8 081:444 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2545ms total)
T85A8 081:445 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2546ms total)
T85A8 081:453 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2547ms total)
T85A8 081:454 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 36 50 00 00  returns 0x04 (0001ms, 2548ms total)
T85A8 081:455 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2549ms total)
T28A4 081:456 JLINK_IsHalted()  returns FALSE (0000ms, 2549ms total)
T28A4 081:557 JLINK_IsHalted()  returns FALSE (0001ms, 2550ms total)
T28A4 081:659 JLINK_IsHalted()  returns FALSE (0000ms, 2549ms total)
T28A4 081:760 JLINK_IsHalted()  returns FALSE (0000ms, 2549ms total)
T28A4 081:861 JLINK_IsHalted()  returns FALSE (0000ms, 2549ms total)
T85A8 081:962 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2549ms total)
T85A8 081:962 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2550ms total)
T85A8 081:963 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2551ms total)
T85A8 081:964 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2551ms total)
T85A8 081:972 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0001ms, 2552ms total)
T85A8 081:980 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 2552ms total)
T85A8 081:995 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 31  returns 0x01 (0001ms, 2553ms total)
T85A8 082:003 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2554ms total)
T85A8 082:004 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2555ms total)
T85A8 082:005 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 41  returns 0x04 (0000ms, 2555ms total)
T85A8 082:013 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2555ms total)
T85A8 082:021 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 04  returns 0x01 (0000ms, 2555ms total)
T85A8 082:021 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2556ms total)
T85A8 082:022 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2556ms total)
T85A8 082:022 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2557ms total)
T85A8 082:023 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2558ms total)
T85A8 082:024 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 03 27 51 00 00 8C FE 00 00 00 ...  returns 0x20 (0001ms, 2559ms total)
T85A8 082:032 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2560ms total)
T85A8 082:033 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 36 50 00 00  returns 0x04 (0000ms, 2560ms total)
T85A8 082:033 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2561ms total)
T28A4 082:034 JLINK_IsHalted()  returns FALSE (0001ms, 2562ms total)
T28A4 082:135 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T28A4 082:237 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T28A4 082:338 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T28A4 082:440 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T85A8 082:541 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2561ms total)
T85A8 082:541 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2562ms total)
T85A8 082:542 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2563ms total)
T85A8 082:543 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2563ms total)
T85A8 082:543 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 2564ms total)
T85A8 082:553 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 2564ms total)
T85A8 082:568 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0000ms, 2564ms total)
T85A8 082:575 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2565ms total)
T85A8 082:576 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2566ms total)
T85A8 082:577 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 2566ms total)
T85A8 082:584 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2567ms total)
T85A8 082:593 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 2567ms total)
T85A8 082:600 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2568ms total)
T85A8 082:601 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2569ms total)
T85A8 082:602 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2569ms total)
T85A8 082:602 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2570ms total)
T85A8 082:603 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2571ms total)
T85A8 082:611 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2572ms total)
T85A8 082:612 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 67 50 00 00  returns 0x04 (0001ms, 2573ms total)
T85A8 082:620 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2574ms total)
T28A4 082:621 JLINK_IsHalted()  returns FALSE (0000ms, 2574ms total)
T28A4 082:722 JLINK_IsHalted()  returns FALSE (0000ms, 2574ms total)
T28A4 082:823 JLINK_IsHalted()  returns FALSE (0000ms, 2574ms total)
T28A4 082:925 JLINK_IsHalted()  returns FALSE (0000ms, 2574ms total)
T28A4 083:026 JLINK_IsHalted()  returns FALSE (0000ms, 2574ms total)
T85A8 083:127 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2574ms total)
T85A8 083:128 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0000ms, 2574ms total)
T85A8 083:128 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2575ms total)
T85A8 083:129 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2575ms total)
T85A8 083:129 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0001ms, 2576ms total)
T85A8 083:138 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 2576ms total)
T85A8 083:153 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0000ms, 2576ms total)
T85A8 083:161 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2577ms total)
T85A8 083:162 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2578ms total)
T85A8 083:163 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 10 41  returns 0x04 (0000ms, 2578ms total)
T85A8 083:171 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2578ms total)
T85A8 083:179 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 2578ms total)
T85A8 083:186 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2579ms total)
T85A8 083:187 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2580ms total)
T85A8 083:188 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2580ms total)
T85A8 083:188 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2581ms total)
T85A8 083:189 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2582ms total)
T85A8 083:198 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2583ms total)
T85A8 083:199 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 67 50 00 00  returns 0x04 (0000ms, 2583ms total)
T85A8 083:207 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2583ms total)
T28A4 083:207 JLINK_IsHalted()  returns FALSE (0001ms, 2584ms total)
T28A4 083:309 JLINK_IsHalted()  returns FALSE (0000ms, 2583ms total)
T28A4 083:411 JLINK_IsHalted()  returns FALSE (0000ms, 2583ms total)
T28A4 083:512 JLINK_IsHalted()  returns FALSE (0000ms, 2583ms total)
T28A4 083:614 JLINK_IsHalted()  returns FALSE (0000ms, 2583ms total)
T85A8 083:715 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2583ms total)
T85A8 083:715 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2584ms total)
T85A8 083:716 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2585ms total)
T85A8 083:717 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2585ms total)
T85A8 083:717 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 2586ms total)
T85A8 083:726 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0000ms, 2586ms total)
T85A8 083:741 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0000ms, 2586ms total)
T85A8 083:741 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2587ms total)
T85A8 083:742 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2588ms total)
T85A8 083:743 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0000ms, 2588ms total)
T85A8 083:751 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2588ms total)
T85A8 083:758 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2589ms total)
T85A8 083:759 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2590ms total)
T85A8 083:760 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2590ms total)
T85A8 083:760 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2591ms total)
T85A8 083:761 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2591ms total)
T85A8 083:762 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 23 85 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0000ms, 2591ms total)
T85A8 083:771 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2591ms total)
T85A8 083:771 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 67 50 00 00  returns 0x04 (0001ms, 2592ms total)
T85A8 083:772 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2593ms total)
T28A4 083:773 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T28A4 083:874 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T28A4 083:975 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T28A4 084:076 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T28A4 084:178 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T85A8 084:279 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2593ms total)
T85A8 084:279 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2594ms total)
T85A8 084:280 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2594ms total)
T85A8 084:281 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2594ms total)
T85A8 084:281 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 2595ms total)
T85A8 084:290 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 2596ms total)
T85A8 084:306 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 32  returns 0x01 (0001ms, 2597ms total)
T85A8 084:307 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2597ms total)
T85A8 084:307 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2598ms total)
T85A8 084:308 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 20 41  returns 0x04 (0001ms, 2599ms total)
T85A8 084:316 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2600ms total)
T85A8 084:324 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2601ms total)
T85A8 084:325 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2601ms total)
T85A8 084:325 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2602ms total)
T85A8 084:326 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2603ms total)
T85A8 084:327 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2603ms total)
T85A8 084:327 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 02 00 51 00 01 B3 FE 00 00 00 ...  returns 0x20 (0001ms, 2604ms total)
T85A8 084:336 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2604ms total)
T85A8 084:336 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 25 50 00 00  returns 0x04 (0001ms, 2605ms total)
T85A8 084:344 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2606ms total)
T28A4 084:345 JLINK_IsHalted()  returns FALSE (0000ms, 2606ms total)
T28A4 084:446 JLINK_IsHalted()  returns FALSE (0000ms, 2606ms total)
T28A4 084:547 JLINK_IsHalted()  returns FALSE (0000ms, 2606ms total)
T28A4 084:648 JLINK_IsHalted()  returns FALSE (0000ms, 2606ms total)
T28A4 084:749 JLINK_IsHalted()  returns FALSE (0000ms, 2606ms total)
T85A8 084:850 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2606ms total)
T85A8 084:850 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2607ms total)
T85A8 084:851 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2608ms total)
T85A8 084:852 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2608ms total)
T85A8 084:852 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 2609ms total)
T85A8 084:861 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 2610ms total)
T85A8 084:876 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 33  returns 0x01 (0001ms, 2611ms total)
T85A8 084:884 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2612ms total)
T85A8 084:885 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2612ms total)
T85A8 084:885 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 30 41  returns 0x04 (0001ms, 2613ms total)
T85A8 084:895 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2613ms total)
T85A8 084:903 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2614ms total)
T85A8 084:904 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2614ms total)
T85A8 084:904 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2615ms total)
T85A8 084:905 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2616ms total)
T85A8 084:906 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2617ms total)
T85A8 084:907 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 95 16 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0000ms, 2617ms total)
T85A8 084:915 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2617ms total)
T85A8 084:915 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6A 50 00 00  returns 0x04 (0001ms, 2618ms total)
T85A8 084:930 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2619ms total)
T28A4 084:931 JLINK_IsHalted()  returns FALSE (0001ms, 2620ms total)
T28A4 085:033 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T28A4 085:134 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T28A4 085:235 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T28A4 085:336 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T85A8 085:437 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2619ms total)
T85A8 085:437 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2620ms total)
T85A8 085:438 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2621ms total)
T85A8 085:439 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2621ms total)
T85A8 085:439 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 2622ms total)
T85A8 085:455 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 2623ms total)
T85A8 085:478 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 33  returns 0x01 (0001ms, 2624ms total)
T85A8 085:486 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2625ms total)
T85A8 085:487 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2625ms total)
T85A8 085:487 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 2626ms total)
T85A8 085:503 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2627ms total)
T85A8 085:512 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0001ms, 2628ms total)
T85A8 085:513 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2628ms total)
T85A8 085:513 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2629ms total)
T85A8 085:514 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2629ms total)
T85A8 085:514 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2630ms total)
T85A8 085:515 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 2631ms total)
T85A8 085:524 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2631ms total)
T85A8 085:524 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6A 50 00 00  returns 0x04 (0001ms, 2632ms total)
T85A8 085:532 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2633ms total)
T28A4 085:533 JLINK_IsHalted()  returns FALSE (0001ms, 2634ms total)
T28A4 085:635 JLINK_IsHalted()  returns FALSE (0000ms, 2633ms total)
T28A4 085:737 JLINK_IsHalted()  returns FALSE (0000ms, 2633ms total)
T28A4 085:838 JLINK_IsHalted()  returns FALSE (0000ms, 2633ms total)
T28A4 085:939 JLINK_IsHalted()  returns FALSE (0000ms, 2633ms total)
T85A8 086:040 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2633ms total)
T85A8 086:040 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2634ms total)
T85A8 086:041 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0000ms, 2634ms total)
T85A8 086:041 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0001ms, 2635ms total)
T85A8 086:042 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 2636ms total)
T85A8 086:050 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0001ms, 2637ms total)
T85A8 086:065 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 33  returns 0x01 (0001ms, 2638ms total)
T85A8 086:066 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2639ms total)
T85A8 086:067 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2640ms total)
T85A8 086:068 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 40 41  returns 0x04 (0000ms, 2640ms total)
T85A8 086:075 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2641ms total)
T85A8 086:083 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 03  returns 0x01 (0000ms, 2641ms total)
T85A8 086:084 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2641ms total)
T85A8 086:084 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2642ms total)
T85A8 086:085 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2642ms total)
T85A8 086:085 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2643ms total)
T85A8 086:086 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 2644ms total)
T85A8 086:087 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2644ms total)
T85A8 086:087 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 6A 50 00 00  returns 0x04 (0001ms, 2645ms total)
T85A8 086:088 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2646ms total)
T28A4 086:089 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T28A4 086:190 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T28A4 086:292 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T28A4 086:393 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T28A4 086:494 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T85A8 086:596 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2646ms total)
T85A8 086:596 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2647ms total)
T85A8 086:597 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2648ms total)
T85A8 086:598 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2648ms total)
T85A8 086:598 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 2649ms total)
T85A8 086:606 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 2650ms total)
T85A8 086:622 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 34  returns 0x01 (0001ms, 2651ms total)
T85A8 086:630 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2652ms total)
T85A8 086:631 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2653ms total)
T85A8 086:632 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0000ms, 2653ms total)
T85A8 086:640 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2653ms total)
T85A8 086:647 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2654ms total)
T85A8 086:655 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2655ms total)
T85A8 086:656 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2655ms total)
T85A8 086:656 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2656ms total)
T85A8 086:657 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2657ms total)
T85A8 086:658 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 E8 26 51 00 00 A8 FD 00 00 00 ...  returns 0x20 (0001ms, 2658ms total)
T85A8 086:666 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2659ms total)
T85A8 086:667 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 11 50 00 00  returns 0x04 (0001ms, 2660ms total)
T85A8 086:675 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2661ms total)
T28A4 086:676 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T28A4 086:777 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T28A4 086:878 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T28A4 086:979 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T28A4 087:080 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T85A8 087:181 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2661ms total)
T85A8 087:181 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2662ms total)
T85A8 087:182 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2663ms total)
T85A8 087:183 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2663ms total)
T85A8 087:183 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0001ms, 2664ms total)
T85A8 087:192 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0000ms, 2664ms total)
T85A8 087:207 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 34  returns 0x01 (0000ms, 2664ms total)
T85A8 087:214 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2665ms total)
T85A8 087:215 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2666ms total)
T85A8 087:216 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 50 41  returns 0x04 (0000ms, 2666ms total)
T85A8 087:224 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0000ms, 2666ms total)
T85A8 087:232 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2667ms total)
T85A8 087:241 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2667ms total)
T85A8 087:241 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2668ms total)
T85A8 087:242 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2668ms total)
T85A8 087:243 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2668ms total)
T85A8 087:243 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 E8 26 51 00 00 A8 FD 00 00 00 ...  returns 0x20 (0001ms, 2669ms total)
T85A8 087:251 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2670ms total)
T85A8 087:252 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: CF 4F 00 00  returns 0x04 (0001ms, 2671ms total)
T85A8 087:267 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2672ms total)
T28A4 087:268 JLINK_IsHalted()  returns FALSE (0001ms, 2673ms total)
T28A4 087:370 JLINK_IsHalted()  returns FALSE (0000ms, 2672ms total)
T28A4 087:471 JLINK_IsHalted()  returns FALSE (0000ms, 2672ms total)
T28A4 087:572 JLINK_IsHalted()  returns FALSE (0000ms, 2672ms total)
T28A4 087:673 JLINK_IsHalted()  returns FALSE (0000ms, 2672ms total)
T85A8 087:774 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2672ms total)
T85A8 087:774 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2673ms total)
T85A8 087:775 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2674ms total)
T85A8 087:776 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2674ms total)
T85A8 087:784 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2675ms total)
T85A8 087:793 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2675ms total)
T85A8 087:809 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 35  returns 0x01 (0000ms, 2675ms total)
T85A8 087:817 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2675ms total)
T85A8 087:817 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2676ms total)
T85A8 087:818 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2677ms total)
T85A8 087:825 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2678ms total)
T85A8 087:833 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2679ms total)
T85A8 087:834 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2680ms total)
T85A8 087:835 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2680ms total)
T85A8 087:835 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2681ms total)
T85A8 087:836 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2682ms total)
T85A8 087:837 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0000ms, 2682ms total)
T85A8 087:837 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2683ms total)
T85A8 087:838 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 50 00 00  returns 0x04 (0001ms, 2684ms total)
T85A8 087:854 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0000ms, 2684ms total)
T28A4 087:854 JLINK_IsHalted()  returns FALSE (0001ms, 2685ms total)
T28A4 087:956 JLINK_IsHalted()  returns FALSE (0000ms, 2684ms total)
T28A4 088:058 JLINK_IsHalted()  returns FALSE (0000ms, 2684ms total)
T28A4 088:159 JLINK_IsHalted()  returns FALSE (0000ms, 2684ms total)
T28A4 088:260 JLINK_IsHalted()  returns FALSE (0000ms, 2684ms total)
T85A8 088:361 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2684ms total)
T85A8 088:361 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2685ms total)
T85A8 088:362 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2686ms total)
T85A8 088:363 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2686ms total)
T85A8 088:371 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2686ms total)
T85A8 088:386 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 80 3F  returns 0x04 (0000ms, 2686ms total)
T85A8 088:408 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 35  returns 0x01 (0001ms, 2687ms total)
T85A8 088:416 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2688ms total)
T85A8 088:417 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2688ms total)
T85A8 088:417 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2689ms total)
T85A8 088:425 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2690ms total)
T85A8 088:433 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2691ms total)
T85A8 088:434 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2691ms total)
T85A8 088:434 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2692ms total)
T85A8 088:435 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2693ms total)
T85A8 088:436 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2693ms total)
T85A8 088:436 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 2694ms total)
T85A8 088:437 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2695ms total)
T85A8 088:438 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 50 00 00  returns 0x04 (0001ms, 2696ms total)
T85A8 088:447 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2697ms total)
T28A4 088:448 JLINK_IsHalted()  returns FALSE (0001ms, 2698ms total)
T28A4 088:550 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T28A4 088:651 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T28A4 088:752 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T28A4 088:853 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T85A8 088:954 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2697ms total)
T85A8 088:954 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2698ms total)
T85A8 088:955 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2699ms total)
T85A8 088:956 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 8D 77 56 40  returns 0x04 (0000ms, 2699ms total)
T85A8 088:956 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2700ms total)
T85A8 088:972 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2700ms total)
T85A8 088:994 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 35  returns 0x01 (0001ms, 2701ms total)
T85A8 088:995 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2702ms total)
T85A8 088:996 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2702ms total)
T85A8 088:996 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2703ms total)
T85A8 088:997 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2704ms total)
T85A8 089:005 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2705ms total)
T85A8 089:006 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2705ms total)
T85A8 089:006 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2706ms total)
T85A8 089:007 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0000ms, 2706ms total)
T85A8 089:007 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0001ms, 2707ms total)
T85A8 089:008 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 00 00 47 32 00 08 00 51 00 01 AD FE 00 00 00 ...  returns 0x20 (0001ms, 2708ms total)
T85A8 089:009 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2709ms total)
T85A8 089:010 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 13 50 00 00  returns 0x04 (0000ms, 2709ms total)
T85A8 089:010 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2710ms total)
T28A4 089:011 JLINK_IsHalted()  returns FALSE (0001ms, 2711ms total)
T28A4 089:113 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T28A4 089:214 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T28A4 089:315 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T28A4 089:416 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T85A8 089:518 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2710ms total)
T85A8 089:518 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2711ms total)
T85A8 089:519 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2712ms total)
T85A8 089:520 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2712ms total)
T85A8 089:528 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2713ms total)
T85A8 089:537 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2714ms total)
T85A8 089:552 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 36  returns 0x01 (0001ms, 2715ms total)
T85A8 089:560 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2716ms total)
T85A8 089:561 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0000ms, 2716ms total)
T85A8 089:561 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2717ms total)
T85A8 089:562 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2718ms total)
T85A8 089:570 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2719ms total)
T85A8 089:571 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0001ms, 2720ms total)
T85A8 089:572 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0000ms, 2720ms total)
T85A8 089:572 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2721ms total)
T85A8 089:573 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2721ms total)
T85A8 089:573 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 08 0E 18 98 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 2722ms total)
T85A8 089:582 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2723ms total)
T85A8 089:583 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 15 50 00 00  returns 0x04 (0000ms, 2723ms total)
T85A8 089:590 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2724ms total)
T28A4 089:591 JLINK_IsHalted()  returns FALSE (0001ms, 2725ms total)
T28A4 089:693 JLINK_IsHalted()  returns FALSE (0000ms, 2724ms total)
T28A4 089:794 JLINK_IsHalted()  returns FALSE (0000ms, 2724ms total)
T28A4 089:895 JLINK_IsHalted()  returns FALSE (0000ms, 2724ms total)
T28A4 089:996 JLINK_IsHalted()  returns FALSE (0000ms, 2724ms total)
T85A8 090:097 JLINK_ReadMemEx(0x200002A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2724ms total)
T85A8 090:097 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 88 15  returns 0x02 (0001ms, 2725ms total)
T85A8 090:098 JLINK_ReadMemEx(0x200000B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B0) - Data: 00  returns 0x01 (0001ms, 2726ms total)
T85A8 090:099 JLINK_ReadMemEx(0x20000038, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000038) - Data: 2A 5D 56 40  returns 0x04 (0000ms, 2726ms total)
T85A8 090:107 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2727ms total)
T85A8 090:108 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2727ms total)
T85A8 090:116 JLINK_ReadMemEx(0x2000007D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007D) - Data: 36  returns 0x01 (0001ms, 2728ms total)
T85A8 090:124 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0001ms, 2729ms total)
T85A8 090:125 JLINK_ReadMemEx(0x2000008E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008E) - Data: 18 98  returns 0x02 (0001ms, 2730ms total)
T85A8 090:126 JLINK_ReadMemEx(0x200001BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001BC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2730ms total)
T85A8 090:126 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: E1 01  returns 0x02 (0001ms, 2731ms total)
T85A8 090:134 JLINK_ReadMemEx(0x2000007C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000007C) - Data: 05  returns 0x01 (0001ms, 2732ms total)
T85A8 090:135 JLINK_ReadMemEx(0x20000283, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000283) - Data: 00  returns 0x01 (0000ms, 2732ms total)
T85A8 090:135 JLINK_ReadMemEx(0x20000282, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000282) - Data: 00  returns 0x01 (0001ms, 2733ms total)
T85A8 090:136 JLINK_ReadMemEx(0x2000027C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000027C) - Data: 00  returns 0x01 (0001ms, 2734ms total)
T85A8 090:137 JLINK_ReadMemEx(0x20000281, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000281) - Data: 00  returns 0x01 (0000ms, 2734ms total)
T85A8 090:137 JLINK_ReadMemEx(0x200018A8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200018A8) - Data: 04 26 11 47 32 00 04 27 51 00 00 8B FE 00 00 00 ...  returns 0x20 (0001ms, 2735ms total)
T85A8 090:146 JLINK_ReadMemEx(0x200000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000D8) - Data: 00 00  returns 0x02 (0000ms, 2735ms total)
T85A8 090:146 JLINK_ReadMemEx(0x200002A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002A8) - Data: 15 50 00 00  returns 0x04 (0001ms, 2736ms total)
T85A8 090:154 JLINK_ReadMemEx(0x200000BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000BA) - Data: 00  returns 0x01 (0001ms, 2737ms total)
T28A4 090:155 JLINK_IsHalted()  returns FALSE (0001ms, 2738ms total)
T28A4 090:256 JLINK_IsHalted()  returns FALSE (0000ms, 2737ms total)
T28A4 090:357 JLINK_IsHalted()  returns FALSE (0000ms, 2737ms total)
T28A4 090:458 JLINK_Halt()  returns 0x00 (0003ms, 2740ms total)
T28A4 090:461 JLINK_IsHalted()  returns TRUE (0000ms, 2740ms total)
T28A4 090:461 JLINK_IsHalted()  returns TRUE (0000ms, 2740ms total)
T28A4 090:461 JLINK_IsHalted()  returns TRUE (0000ms, 2740ms total)
T28A4 090:461 JLINK_ReadReg(R15 (PC))  returns 0x080051F0 (0000ms, 2740ms total)
T28A4 090:461 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 2740ms total)
T28A4 090:461 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 2741ms total)
T28A4 090:462 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 2742ms total)
T28A4 090:463 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 2742ms total)
T85A8 091:067 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0012ms, 2754ms total)
T85A8 091:067  (0012ms, 2754ms total)
T85A8 091:067 Closed (0012ms, 2754ms total)